mirror of
https://github.com/loewexy/pdnsmanager.git
synced 2025-01-16 03:02:22 +01:00
Change updateRecord behavior
Make updateRecord check if any parameters of the record changed if none changed nothing is pushed to the database and serial is not increased This was implemented in order to avoid unecessary changes in serial and zone transfers
This commit is contained in:
parent
28abbfa356
commit
ba3750a43c
1 changed files with 13 additions and 12 deletions
|
@ -310,19 +310,20 @@ class Records
|
|||
$content = $content === null ? $record['content'] : $content;
|
||||
$priority = $priority === null ? intval($record['prio']) : $priority;
|
||||
$ttl = $ttl === null ? intval($record['ttl']) : $ttl;
|
||||
if ($record['name'] != $name || $record['type'] != $type || $record['content'] != $content || intval($record['prio']) != $priority || intval($record['ttl']) != $ttl) {
|
||||
$query = $this->db->prepare('UPDATE records SET name=:name,type=:type,content=:content,prio=:priority,ttl=:ttl WHERE id=:recordId');
|
||||
$query->bindValue('recordId', $recordId);
|
||||
$query->bindValue(':name', $name);
|
||||
$query->bindValue(':type', $type);
|
||||
$query->bindValue(':content', $content);
|
||||
$query->bindValue(':priority', $priority);
|
||||
$query->bindValue(':ttl', $ttl);
|
||||
$query->execute();
|
||||
|
||||
$query = $this->db->prepare('UPDATE records SET name=:name,type=:type,content=:content,prio=:priority,ttl=:ttl WHERE id=:recordId');
|
||||
$query->bindValue('recordId', $recordId);
|
||||
$query->bindValue(':name', $name);
|
||||
$query->bindValue(':type', $type);
|
||||
$query->bindValue(':content', $content);
|
||||
$query->bindValue(':priority', $priority);
|
||||
$query->bindValue(':ttl', $ttl);
|
||||
$query->execute();
|
||||
$soa = new \Operations\Soa($this->c);
|
||||
$soa->updateSerial($domainId);
|
||||
|
||||
$soa = new \Operations\Soa($this->c);
|
||||
$soa->updateSerial($domainId);
|
||||
|
||||
$this->db->commit();
|
||||
$this->db->commit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue