X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fadmin%2Fsystems%2Fclass_termDNS.inc;h=ad36377c53174a60260005accfbde831652cb380;hb=e1bf22f058266d04da312a6a12cc26fcda9bd930;hp=44917cf9889f57a0b78311fda187cc9c2b6bdd79;hpb=8553d189f962e7f4dd771fed17ec1dc13defb2de;p=gosa.git diff --git a/plugins/admin/systems/class_termDNS.inc b/plugins/admin/systems/class_termDNS.inc index 44917cf98..ad36377c5 100644 --- a/plugins/admin/systems/class_termDNS.inc +++ b/plugins/admin/systems/class_termDNS.inc @@ -3,116 +3,115 @@ class termDNS extends plugin { /* CLI vars */ - var $cli_summary= "Manage server basic objects"; - var $cli_description= "Some longer text\nfor help"; - var $cli_parameters= array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser"); + var $cli_summary = "Manage server basic objects"; + var $cli_description = "Some longer text\nfor help"; + var $cli_parameters = array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser"); /* attribute list for save action */ - var $ignore_account= TRUE; - var $DNSattributes = array("dNSClass","zoneName","dNSTTL"); - var $attributes= array("ipHostNumber","macAddress"); - var $objectclasses= array("whatever"); + var $ignore_account = true; + var $autonet = false; + + /* Basic informations + */ + var $attributes = array("ipHostNumber","macAddress"); + var $objectclasses = array("whatever"); + + var $ipHostNumber = ""; // IP address + var $macAddress = ""; // Mac address + var $cn = ""; // CN of currently edited device + var $OrigCn = ""; // Initial cn + var $IPisMust = false; + var $MACisMust = false; + + /* DNS attributes + */ + var $DNSattributes = array("dNSClass","zoneName","dNSTTL"); + var $DNS_is_Account = false; + var $initially_was_account = false; + var $dnsEntry = array(); + var $DNSenabled = false; + + /* Terminal dns + */ + function termDNS ($config, $dn,$objectClasses,$IPisMust = false) + { + /* We need to know which objectClasses are used, to store the ip/mac + * Because of different type of devices + */ + $this->objectclasses = $objectClasses; + $this->IPisMust = $IPisMust; - var $ipHostNumber =""; // IP address - var $macAddress =""; // Mac address - var $cn =""; // CN of currently edited device + plugin::plugin ($config, $dn); - var $Zones = array(); // All Available Zones like array("3.2.1.in-addr.arpa"=>"MyServer.de") - var $RecordTypes= array(); // Possible record types - - var $dNSClass = "IN"; // dNSClass name - var $zoneName = ""; // Used ZoneName - var $dNSTTL = 7200; // TTL settings for the created entries + if(isset($this->attrs['cn'][0])){ + $this->OrigCn = $this->attrs['cn'][0]; + $this->cn = $this->attrs['cn'][0]; + } - /* Used records */ - var $types = array(); - var $DNSinitially_was_account = false; + /* Do we have autonet support? */ + if (isset($this->config->data['MAIN']['AUTO_NETWORK_HOOK'])){ + $this->autonet= true; + } - function termDNS ($config, $dn,$objectClasses) - { - /* We need to know which objectClasses are used, to store the ip/mac*/ - $this->objectclasses= $objectClasses; - plugin::plugin ($config, $dn); + /* Hide all dns specific code, if dns is not available + */ + $DNSenabled = false; + foreach($this->config->data['TABS']['SERVERSERVICE'] as $tab){ + if(preg_match("/^servdns$/",$tab['CLASS'])){ + $this->DNSenabled = true; + } + } + if(!$this->DNSenabled){ + $this->DNS_is_account = false; + return; + } - /* All types with required attrs */ - $this->RecordTypes['aRecord'] = "aRecord"; // ok - $this->RecordTypes['mDRecord'] = "mDRecord"; // ok - $this->RecordTypes['mXRecord'] = "mXRecord"; // ok - $this->RecordTypes['nSRecord'] = "nSRecord"; // ok - $this->RecordTypes['pTRRecord'] = "relativeDomainName";// ok - $this->RecordTypes['hInfoRecord'] = "hInfoRecord"; // ok - $this->RecordTypes['mInfoRecord'] = "mInfoRecord"; // ok - $this->RecordTypes['cNAMERecord'] = "relativeDomainName";// ok - $this->RecordTypes['tXTRecord'] = "tXTRecord"; // ok - $this->RecordTypes['aFSDBRecord'] = "aFSDBRecord"; // ok - $this->RecordTypes['SigRecord'] = "SigRecord"; // ok - $this->RecordTypes['KeyRecord'] = "KeyRecord"; // ok - $this->RecordTypes['aAAARecord'] = "aAAARecord"; // ok - $this->RecordTypes['LocRecord'] = "LocRecord"; // ok - $this->RecordTypes['nXTRecord'] = "nXTRecord"; // ok - $this->RecordTypes['sRVRecord'] = "sRVRecord"; // ok - $this->RecordTypes['nAPTRRecord'] = "nAPTRRecord"; // ok - $this->RecordTypes['kXRecord'] = "kXRecord"; // ok - $this->RecordTypes['certRecord'] = "certRecord"; // ok - $this->RecordTypes['a6Record'] = "a6Record"; // ok - $this->RecordTypes['dSRecord'] = "dSRecord"; // ok - $this->RecordTypes['sSHFPRecord'] = "sSHFPRecord"; // ok - $this->RecordTypes['rRSIGRecord'] = "rRSIGRecord"; // ok - $this->RecordTypes['nSECRecord'] = "nSECRecord"; // ok - - /* Get all available zones */ - $this->cn = $this->attrs['cn'][0]; - $this->Zones = $this->get_Zones(); - $types = array(); - - /* Get all records */ - $ldap = $this->config->get_ldap_link(); - $ldap->cd($this->dn); - $ldap->search("(&(objectClass=dNSZone)(zoneName=*)(!(relativeDomainName=@)))",array("*")); + if($this->DNSenabled){ - while($attrs = $ldap->fetch()){ - /* If relative domainname == cn - * Try to read dnsclass / TTl / zone + /* Get Zones */ - if($attrs['relativeDomainName'][0] == $this->cn){ - /* Get class */ - if(isset($attrs['dNSClass'][0])){ - $this->dNSClass = $attrs['dNSClass'][0]; - } - /* Get Zone*/ - if(isset($attrs['zoneName'][0])){ - $this->zoneName = $attrs['zoneName'][0]; - } - /* Get ttl */ - if(isset($attrs['dNSTTL'][0])){ - $this->dNSTTL = $attrs['dNSTTL'][0]; + $this->Zones = getAvailableZones($config); + + /* 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]); } } - /* Create list with all used records */ - foreach($this->RecordTypes as $name => $value){ - - /* If there is a record attribute */ - if(isset($attrs[$name])){ - - /* get all entries */ - for($i = 0 ; $i < $attrs[$value]['count']; $i ++){ - $types[] =array("type"=>$name,"inittype"=>$name,"value"=>$attrs[$value][$i],"status"=>"edited","dn"=>$attrs['dn']); - } - } + /* 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; } + } + + /* Store initally account settings + */ + $this->initially_was_account = $this->DNS_is_account; + } - /* If there is at least one entry in this -> types, we have DNS enabled */ - $this->types = $types; - if(count($this->types) == 0){ - $this->DNS_is_account = false; - }else{ - $this->DNS_is_account = true; + + function getVarsForSaving($attrs) + { + foreach($this->attributes as $attr){ + if(!empty($this->$attr)){ + $attrs[$attr] = $this->$attr; + } } - - /* Store initally account settings */ - $this->DNSinitially_was_account = $this->DNS_is_account; + return($attrs); } function execute() @@ -121,9 +120,56 @@ class termDNS extends plugin $smarty= get_smarty(); $display= ""; - /* Add new empty array with status new, to our record list */ + $smarty->assign("staticAddress", ""); + $smarty->assign("autonet", ""); + + /* Check for autonet button */ + if ($this->autonet && isset($_POST['autonet'])){ + $cmd= $this->config->data['MAIN']['AUTO_NETWORK_HOOK']; + if(!empty($cmd) && $this->cn != ""){ + $res = shell_exec($cmd." ".$this->cn); + if(!$res){ + print_red(sprintf(_("Can't execute specified AUTO_NETWORK_HOOK '%s'. Please check your gosa.conf."),$cmd)); + } else { + $res= split(';', trim($res)); + if (isset($res[0]) && $res[0] != ""){ + $this->ipHostNumber= $res[0]; + } + if (isset($res[1]) && $res[1] != ""){ + $this->macAddress= $res[1]; + } + } + } + } + + /* There is no dns available + */ + if($this->DNSenabled == false){ + + /* Is IP address must ? */ + $smarty->assign("DNS_is_account",false); + $smarty->assign("IPisMust",(($this->IPisMust)||($this->DNS_is_account))); + + /* Assign smarty all non DNs attributes */ + foreach($this->attributes as $attr){ + $smarty->assign($attr,$this->$attr); + } + $smarty->assign("staticAddress","*"); + + if ($this->autonet){ + $smarty->assign("autonet", "true"); + } else { + $smarty->assign("autonet", ""); + } + $display.= $smarty->fetch(get_template_path('network.tpl', TRUE)); + return($display); + }else{ + $smarty->assign("DNS_is_account",true); + } + + /* Add new empty array to our record list */ if(isset($_POST['AddNewRecord'])){ - $this->types[] =array("type"=>"aRecord","value"=>"","status"=>"new"); + $this->dnsEntry['RECORDS'][] =array("type"=>"aRecord","value"=>""); } /* Handle all posts */ @@ -141,12 +187,8 @@ class termDNS extends plugin $id = preg_replace("/_.*$/","",$id); /* Delete this record, mark edited entries to be able to delete them */ - if(isset($this->types[$id])){ - if($this->types[$id]['status'] == "edited"){ - $this->types[$id]['status'] = "deleted"; - }else{ - unset($this->types[$id]); - } + if(isset($this->dnsEntry['RECORDS'][$id])){ + unset($this->dnsEntry['RECORDS'][$id]); } } } @@ -158,25 +200,39 @@ class termDNS extends plugin /* Assign smarty all DNS attributes */ foreach($this->DNSattributes as $attr){ - $smarty->assign($attr,$this->$attr); + $smarty->assign($attr,$this->dnsEntry[$attr]); } /* Assign all needed vars */ $smarty->assign("DNSAccount",$this->DNS_is_account); $smarty->assign("Zones",$this->Zones); $smarty->assign("ZoneKeys",($this->Zones)); - $changeStateForRecords =""; - $smarty->assign("records",$this->generateRecordsList(&$changeStateForRecords)); + $smarty->assign("IPisMust",(($this->IPisMust)||($this->DNS_is_account))); + + $tmp = $this->generateRecordsList(); + + $changeStateForRecords = $tmp['changeStateForRecords']; + + $smarty->assign("records",$tmp['str']); $smarty->assign("changeStateForRecords",$changeStateForRecords); - $smarty->assign("dNSClasses",array("IN"=>"IN")); $smarty->assign("staticAddress","*"); + $display.= $smarty->fetch(get_template_path('network.tpl', TRUE)); return($display); } function remove_from_parent() { - /* This cannot be removed... */ + /* + $ldap = $this->config->get_ldap_link(); + $ldap->cd($this->orig_dn); + $ldap->search("(&(objectClass=dNSZone)(zoneName=*)(!(relativeDomainName=@)))",array("relativeDomainName","zoneName")); + while($attr = $ldap->fetch()){ + $ldap->cd($attr['dn']); + $ldap->rmDir($attr['dn']); + show_ldap_error($ldap->get_error(), sprintf(_("Removing of terminal/dns acoount with dn '%s' failed."),$this->dn)); + } + */ } /* Save data to object */ @@ -193,25 +249,26 @@ class termDNS extends plugin } /* Get dns attributes */ - if(isset($_POST['network_tpl_posted'])){ + if(($this->DNSenabled) && (isset($_POST['network_tpl_posted']))){ /* Check for posted record changes */ - foreach($this->types as $key => $value){ - - /* Check if type has changed */ - if(isset($_POST['RecordTypeSelectedFor_'.$key])){ - $this->types[$key]['type'] = $_POST['RecordTypeSelectedFor_'.$key]; - } - /* Check if value has changed */ - if(isset($_POST['RecordValue_'.$key])){ - $this->types[$key]['value'] = $_POST['RecordValue_'.$key]; + if(is_array($this->dnsEntry['RECORDS'])){ + foreach($this->dnsEntry['RECORDS'] as $key => $value){ + + /* Check if type has changed */ + if(isset($_POST['RecordTypeSelectedFor_'.$key])){ + $this->dnsEntry['RECORDS'][$key]['type'] = $_POST['RecordTypeSelectedFor_'.$key]; + } + /* Check if value has changed */ + if(isset($_POST['RecordValue_'.$key])){ + $this->dnsEntry['RECORDS'][$key]['value'] = $_POST['RecordValue_'.$key]; + } } } - /* Get all basic DNS attributes (TTL, Clas ..)*/ foreach($this->DNSattributes as $attr){ if(isset($_POST[$attr])){ - $this->$attr = $_POST[$attr]; + $this->dnsEntry[$attr] = $_POST[$attr]; } } @@ -228,7 +285,87 @@ class termDNS extends plugin /* Check supplied data */ function check() { - $message= array(); + /* Call common method to give check the hook */ + $message= plugin::check(); + + /* Check if ip must be given + */ + if(($this->IPisMust)||($this->DNS_is_account)){ + + /* Check if ip is empty + */ + if ($this->ipHostNumber == "" && chkacl ($this->acl, "ipHostNumber") == ""){ + $message[]= _("The required field 'IP-address' is not set."); + } + + /* check if given ip is valid ipi + */ + $num="(\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])"; + if (!preg_match("/^$num\\.$num\\.$num\\.$num$/", $this->ipHostNumber)){ + $message[]= _("Wrong IP format in field IP-address."); + } + } + + /* Check if mac is empty + */ + if ($this->macAddress == "" && chkacl ($this->acl, "macAddress") == ""){ + $message[]= _("The required field 'MAC-address' is not set."); + } + + /* Check if given mac is valid mac + */ + $tr = count(split(":",$this->macAddress)); + if($tr!=6){ + $message[]=(_("The given macaddress is invalid. There must be 6 2byte segments seperated by ':'.")); + } + + /* only perfrom this checks if this is a valid DNS account */ + if($this->DNS_is_account){ + + $checkArray = array(); + $onlyOnce = array(); + + $onlyOnce['cNAMERecord'] = 0; + + /* Walk through all entries and detect duplicates or mismatches + */ + foreach($this->dnsEntry['RECORDS'] as $name => $values){ + + /* Count record values, to detect duplicate entries for a specific record + */ + if(!isset($checkArray[$values['type']][$values['value']])){ + $checkArray[$values['type']][$values['value']] = 0; + }else{ + $message[] = sprintf(_("Found duplicate value for record type '%s'."),$values['type']); + } + + /* Check if given entries in $onlyOnce are used more than once + */ + if(isset($onlyOnce[$values['type']])){ + $onlyOnce[$values['type']] ++; + if($onlyOnce[$values['type']] > 1){ + $message[] = sprintf(_("Found more than one entry for the uniqe record type '%s'."),$values['type']); + } + } + + /* Skip txt record ... + */ + if($values['type'] == "tXTRecord") continue; + + /* Check if there is an aRecord defined which uses the same IP as used in IPhostAddress + */ + if(($values['type'] == "aRecord")&&($values['value'] == $this->ipHostNumber)){ + $message[]=sprintf(_("The device IP '%s' is added as 'A Record', this will be done automatically, please remove the record."), + $this->ipHostNumber); + } + + /* only lower-case is allowed in record entries ... + */ + if($values['value'] != strtolower($values['value'])){ + $message[] = sprintf(_("Only lowercase is allowed, please check your '%ss'."),$values['type']); + } + } + } return ($message); } @@ -250,7 +387,8 @@ class termDNS extends plugin /* Write back to ldap */ $ldap->cd($this->dn); - $ldap->modify($this->attrs); + $this->cleanup(); + $ldap->modify ($this->attrs); /****************/ /* DNS HANDLING */ @@ -259,67 +397,72 @@ class termDNS extends plugin /* If isn't DNS account but initially was DNS account remove all DNS entries */ - if(!$this->DNS_is_account){ - if($this->DNSinitially_was_account){ - $tmp = array(); - foreach($this->types as $type){ - $dn = $type['dn']; - if(!isset($tmp[$dn])) { - $ldap->cd($dn); - $ldap->rmDir($dn); - } - $tmp[$dn]=$dn; - } - } + if(!$this->DNSenabled){ + return; }else{ - - /* DNS is enabled, check what we have to do */ - $delete = array(); - - /* Generate a list of new ldap entries, - & $delete contains all dns which should be deleted + + /* Add ipHostNumber to aRecords */ - $entries = $this->generate_LDAP_entries(&$delete); + $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->initially_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); + } + + /* move follwoing entries + */ + foreach($tmp['move'] as $src => $dst){ + $this->recursive_move($src,$dst); + } /* Delete dns */ - foreach($delete as $dn => $del){ + foreach($tmp['del'] as $dn => $del){ $ldap->cd($dn); - $ldap->rmDir($dn); + $ldap->rmdir_recursive($dn); } - /* Add || Update new DNS entries */ - foreach($entries as $dn => $attrs){ + /* Add || Update new DNS entries + */ + foreach($tmp['add'] as $dn => $attrs){ $ldap->cd($dn); - $ldap->cat($dn); - + $ldap->cat($dn, array('dn')); if(count($ldap->fetch())){ $ldap->cd($dn); - $ldap->modify($attrs); + $ldap->modify ($attrs); }else{ $ldap->cd($dn); $ldap->add($attrs); } } + + /* Display errors + */ + if($ldap->get_error() != "Success"){ + show_ldap_error($ldap->get_error(), sprintf(_("Saving of terminal/dns account with dn '%s' failed."),$this->dn)); + } } - if($ldap->get_error() != "Success"){ - show_ldap_error($ldap->get_error()); - } - } - - function generateRecordsList($changeStateForRecords) + /* Create html table with all used record types + */ + function generateRecordsList() { $changeStateForRecords = ""; if(!$this->DNS_is_account) { - $str = ""; + $str = ""; return $str; } - $str = ""; - foreach($this->types as $key => $entry){ - if($entry['status'] == "deleted") continue; + $str = "
"; + foreach($this->dnsEntry['RECORDS'] as $key => $entry){ $changeStateForRecords.= "changeState('RecordTypeSelectedFor_".$key."');\n"; $changeStateForRecords.= "changeState('RecordValue_".$key."');\n"; @@ -333,14 +476,18 @@ class termDNS extends plugin } $str.= " ". - " ". " ". "
". + " ". " ". "
"; - return($str); + $ret = array("str" => $str, "changeStateForRecords" => $changeStateForRecords); + return($ret); } + + /* Create a html select box which allows us to select different types of records + */ function generateRecordListBox($selected,$name) { $str = ""; return($str); } - - function get_Zones() - { - $ret = array(); - $ldap = $this->config->get_ldap_link(); - $ldap-> cd ($this->config->current['BASE']); - $ldap->search("(&(objectClass=dNSZone)(sOARecord=*))",array("*")); - - while($at = $ldap->fetch()){ - if(preg_match("/\.in\-addr\.arpa/",$at['zoneName'][0])){ - $ret[$at['relativeDomainName'][0]]['addr']= $at['zoneName'][0]; - }else{ - $ret[$at['relativeDomainName'][0]]['name']= $at['zoneName'][0]; - } - } - - $tmp =array(); - foreach($ret as $name => $entry){ - if((isset($entry['addr']))&&(isset($entry['name']))){ - $tmp[$entry['addr']]=$entry['name']; - } - } - $ret = $tmp; - return($ret); - } - - function generate_LDAP_entries($delete) - { - - $entries = array(); - - $delete = array(); - - /* Generate Main Entry */ - $dn = "relativeDomainName=".$this->cn.",".$this->dn; - $entries[$dn]['dNSClass'] = $this->dNSClass; - $entries[$dn]['zoneName'] = $this->zoneName; - $entries[$dn]['dNSTTL'] = $this->dNSTTL; - $entries[$dn]['relativeDomainName'] = $this->cn; - - /* Generate cNAMERecord */ - $aRecords = array(); - foreach($this->types as $type){ - if($type['type'] == "cNAMERecord"){ - - $Cdn = "relativeDomainName=".$type['value'].",".$this->dn; - if($type['status']=="deleted"){ - $delete [$type['dn']] = $Cdn; - }else{ - $entries[$Cdn] = $entries[$dn]; - $entries[$Cdn]['relativeDomainName'] = $type['value']; - $entries[$Cdn]['cNAMERecord'] = $this->cn.".".$this->zoneName; - } - } - } - - /* Generate tXTRecord */ - $aRecords = array(); - foreach($this->types as $type){ - if(($type['type'] == "tXTRecord")&&($type['status']!="deleted")){ - $entries[$dn]['tXTRecord'][] = $type['value']; - } - } - - /* Generate mDRecord */ - $aRecords = array(); - foreach($this->types as $type){ - if(($type['type'] == "mDRecord")&&($type['status']!="deleted")){ - $entries[$dn]['mDRecord'][] = $type['value']; - } - } - - /* Generate mXRecord */ - $aRecords = array(); - foreach($this->types as $type){ - if(($type['type'] == "mXRecord")&&($type['status']!="deleted")){ - $entries[$dn]['mXRecord'][] = $type['value']; - } - } - - /* Generate hInfoRecord */ - $aRecords = array(); - foreach($this->types as $type){ - if(($type['type'] == "hInfoRecord")&&($type['status']!="deleted")){ - $entries[$dn]['hInfoRecord'][] = $type['value']; - } - } - - /* Generate mInfoRecord */ - $aRecords = array(); - foreach($this->types as $type){ - if(($type['type'] == "mInfoRecord")&&($type['status']!="deleted")){ - $entries[$dn]['mInfoRecord'][] = $type['value']; - } - } - - /* Generate aFSDBRecord */ - $aRecords = array(); - foreach($this->types as $type){ - if(($type['type'] == "aFSDBRecord")&&($type['status']!="deleted")){ - $entries[$dn]['aFSDBRecord'][] = $type['value']; - } - } - - /* Generate some attrs */ - $arr = array("SigRecord","KeyRecord","aAAARecord","nSRecord", - "LocRecord","nXTRecord","sRVRecord","nAPTRRecord","kXRecord","certRecord","a6Record","dSRecord","sSHFPRecord","rRSIGRecord","nSECRecord"); - $aRecords = array(); - foreach($arr as $ar){ - foreach($this->types as $type){ - if(($type['type'] == $ar)&&($type['status']!="deleted")){ - $entries[$dn][$ar][] = $type['value']; - } - } - } - - - /* Generate A Records (IP Address relation) */ - $aRecords = array(); - foreach($this->types as $type){ - if(($type['type'] == "aRecord")&&($type['status']!="deleted")){ - $aRecords[] = $type['value']; - } - } - if(count($aRecords)){ - $dn = "relativeDomainName=".$this->cn.",".$this->dn; - foreach($aRecords as $rec){ - $entries[$dn]['aRecord'][] = $rec; - } - } - - /* Generate pTRRecord Records */ - foreach($this->types as $type){ - if($type['type'] == "pTRRecord"){ - $PTRdn= "relativeDomainName=".$type['value'].",".$this->dn; - if($type['status']=="deleted"){ - $delete [$type['dn']] = $PTRdn; - }else{ - $zones = array_flip($this->Zones); - $zone = $zones[$this->zoneName]; - $entries[$PTRdn]['relativeDomainName'] = $type['value']; - $entries[$PTRdn]['pTRRecord'] = $this->cn.".".$this->zoneName; - $entries[$PTRdn]['zoneName'] = $zone; - } - } - } - - foreach($entries as $key => $entry ){ - $entries[$key]['objectClass']=array("top","dNSZone"); - $entries[$key] = array_reverse($entries[$key]); - } - - foreach($this->types as $type){ - if(isset($type['inittype'])){ - if(!isset($entries[$dn][$type['inittype']])){ - $entries[$dn][$type['inittype']] = array(); - } - } - } - - return($entries); - } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: