summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1aaf87e)
raw | patch | inline | side by side (parent: 1aaf87e)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 6 Apr 2006 04:20:49 +0000 (04:20 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 6 Apr 2006 04:20:49 +0000 (04:20 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2999 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/systems/class_termDNS.inc | patch | blob | history |
index b6b6b352f0126103dc1c2a9da990e306b2b802c3..913684baddab5a06bdec8bbff84899c8b04dc2d5 100644 (file)
return;
}
- /* Get Zones
- */
- $this->Zones = getAvailableZones($config);
+ if($this->DNSenabled){
- /* Get Entry
- */
- $this->dnsEntry = getDNSHostEntries($config,$this->OrigCn);
+ /* Get Zones
+ */
+ $this->Zones = getAvailableZones($config);
- /* Remove A record which equals $this->ipHostNumber
- */
- foreach($this->dnsEntry['RECORDS'] as $key => $rec){
- if(($rec['type'] == "aRecord") && ($rec['value'] == $this->ipHostNumber)){
- unset($this->dnsEntry['RECORDS'][$key]);
+ /* Get Entry
+ */
+ $this->dnsEntry = getDNSHostEntries($config,$this->OrigCn);
+
+ /* Remove A record which equals $this->ipHostNumber
+ */
+ foreach($this->dnsEntry['RECORDS'] as $key => $rec){
+ if(($rec['type'] == "aRecord") && ($rec['value'] == $this->ipHostNumber)){
+ unset($this->dnsEntry['RECORDS'][$key]);
+ }
}
- }
- /* Get Record types
- */
- $this->RecordTypes = getDnsRecordTypes();
+ /* Get Record types
+ */
+ $this->RecordTypes = getDnsRecordTypes();
- /* If there is at least one entry in this -> types, we have DNS enabled
- */
- if($this->dnsEntry['exists']){
- $this->DNS_is_account = true;
- }else{
- $this->DNS_is_account = false;
+ /* If there is at least one entry in this -> types, we have DNS enabled
+ */
+ if($this->dnsEntry['exists']){
+ $this->DNS_is_account = true;
+ }else{
+ $this->DNS_is_account = false;
+ }
+
}
-
+
/* Store initally account settings
*/
$this->DNSinitially_was_account = $this->DNS_is_account;
}
/* Get dns attributes */
- if(isset($_POST['network_tpl_posted'])){
+ if(($this->DNSenabled) && (isset($_POST['network_tpl_posted']))){
/* Check for posted record changes */
if(is_array($this->dnsEntry['RECORDS'])){
/* If isn't DNS account but initially was DNS account
remove all DNS entries
*/
-
- /* Add ipHostNumber to aRecords
- */
- $this->dnsEntry['RECORDS'][] = array("type"=>"aRecord","value"=>$this->ipHostNumber);
-
- /* Create diff and follow instructions
- * If Account was disabled, remove account by setting exists to false
- */
- if((!$this->DNS_is_account)&&($this->DNSinitially_was_account)){
- $this->dnsEntry['exists'] = false;
- $tmp = getDNSHostEntriesDiff($this->config,$this->OrigCn,$this->dnsEntry,$this->cn);
+ if(!$this->DNSenabled){
+ return;
}else{
- $this->dnsEntry['exists'] = $this->DNS_is_account;
- $tmp = getDNSHostEntriesDiff($this->config,$this->OrigCn,$this->dnsEntry,$this->cn);
- }
- /* move follwoing entries
- */
- foreach($tmp['move'] as $src => $dst){
- $this->recursive_move($src,$dst);
- }
+ /* Add ipHostNumber to aRecords
+ */
+ $this->dnsEntry['RECORDS'][] = array("type"=>"aRecord","value"=>$this->ipHostNumber);
- /* Delete dns */
- foreach($tmp['del'] as $dn => $del){
- $ldap->cd($dn);
- $ldap->rmdir_recursive($dn);
- }
+ /* Create diff and follow instructions
+ * If Account was disabled, remove account by setting exists to false
+ */
+ if((!$this->DNS_is_account)&&($this->DNSinitially_was_account)){
+ $this->dnsEntry['exists'] = false;
+ $tmp = getDNSHostEntriesDiff($this->config,$this->OrigCn,$this->dnsEntry,$this->cn);
+ }else{
+ $this->dnsEntry['exists'] = $this->DNS_is_account;
+ $tmp = getDNSHostEntriesDiff($this->config,$this->OrigCn,$this->dnsEntry,$this->cn);
+ }
- /* Add || Update new DNS entries
- */
- foreach($tmp['add'] as $dn => $attrs){
- $ldap->cd($dn);
- $ldap->cat($dn);
- if(count($ldap->fetch())){
+ /* move follwoing entries
+ */
+ foreach($tmp['move'] as $src => $dst){
+ $this->recursive_move($src,$dst);
+ }
+
+ /* Delete dns */
+ foreach($tmp['del'] as $dn => $del){
$ldap->cd($dn);
- $ldap->modify ($attrs);
- }else{
+ $ldap->rmdir_recursive($dn);
+ }
+
+ /* Add || Update new DNS entries
+ */
+ foreach($tmp['add'] as $dn => $attrs){
$ldap->cd($dn);
- $ldap->add($attrs);
+ $ldap->cat($dn);
+ if(count($ldap->fetch())){
+ $ldap->cd($dn);
+ $ldap->modify ($attrs);
+ }else{
+ $ldap->cd($dn);
+ $ldap->add($attrs);
+ }
+ }
+
+ /* Display errors
+ */
+ if($ldap->get_error() != "Success"){
+ show_ldap_error("Record:".$ldap->get_error());
}
- }
-
- /* Display errors
- */
- if($ldap->get_error() != "Success"){
- show_ldap_error("Record:".$ldap->get_error());
}
}