"Eins ist toll", "zwei" => "Zwei ist noch besser"); /* attribute list for save action */ var $attributes = array("goFonDeliveryMode", "goFonForwarding", "goFonFormat", "goFonHardware", "goFonPIN", "telephoneNumber", "goFonMacro","macro"); var $objectclasses= array("goFonAccount"); function phoneAccount ($config, $dn= NULL) { plugin::plugin ($config, $dn); /* Set phone hardware */ if (!isset($this->attrs['goFonHardware'])){ $this->goFonHardware= "automatic"; } /* Preset voice format */ if (!isset($this->attrs['goFonFormat'])){ $this->goFonFormat= "wav"; } /* Assemble phone numbers */ if (isset($this->attrs['telephoneNumber'])){ for ($i= 0; $i<$this->attrs['telephoneNumber']['count']; $i++){ $number= $this->attrs['telephoneNumber'][$i]; $this->phoneNumbers[$number]= $number; } } /* Assemble forwarders */ if (isset($this->attrs['goFonForwarding'])){ for ($i= 0; $i<$this->attrs['goFonForwarding']['count']; $i++){ list($num, $v1, $v2) =split(';', $this->attrs['goFonForwarding'][$i]); $this->forwarders[$num]= "$v1;$v2"; } } else { $this->forwarders= array(""); } /* Set up has_mailAccount */ if (isset($this->attrs['objectClass'])){ if (in_array("gosaMailAccount", $this->attrs['objectClass'])){ $this->has_mailAccount= TRUE; } } /* Load hardware list */ $ldap= $this->config->get_ldap_link(); $ldap->cd($this->config->current['BASE']); $ldap->search("(objectClass=goFonHardware)", array('cn', 'description')); while ($attrs= $ldap->fetch()){ $cn= $attrs['cn'][0]; if (isset($attrs['description'])){ $description= " - ".$attrs['description'][0]; } else { $description= ""; } $this->hardware_list[$cn]= "$cn$description"; } /* Prepare templating */ $smarty= get_smarty(); /* Perform search, to get Macro Parameters,Name,Dn,Displayname etc*/ $ldap->search("(objectClass=goFonMacro)", array("*")); /* Add none for no macro*/ $this->macros['none']=_("no macro"); $this->macro ="none"; /* Fetch all Macros*/ while ($attrs= $ldap->fetch()){ /* Only visisble */ if((isset($attrs['goFonMacroVisible'][0]))&&($attrs['goFonMacroVisible'][0] ==1)){ /* unset Count, we don't need that here */ unset($attrs['displayName']['count']); /* fill Selectfield variable with Macros */ if(isset($attrs['displayName'][0])){ $this->macros[$attrs['dn']] = $attrs['displayName'][0]." (".$attrs['cn'][0].")"; }else{ $this->macros[$attrs['dn']] = _("undefined"); } /* Parse macro data, unset count for parameterarrays */ unset($attrs['goFonMacroParameter']['count']); /* Go through available parameters and parse all attributes, like parametername, type, default ...*/ if((isset($attrs['goFonMacroParameter']))&&(is_array($attrs['goFonMacroParameter']))){ foreach($attrs['goFonMacroParameter'] as $pkey=>$pval){ /* Split Data in readable values, by delimiter ! */ $data = split("!",$attrs['goFonMacroParameter'][$pkey]); /* Set all attrs */ $id = $data[0]; $this->macroarray[$attrs['dn']][$id]['var'] ="var".$id; $string= $data[3]; // $string = preg_replace("/%uid/",$this->attrs['uid'][0],$data[3]); // $string = preg_replace("/%telephoneNumber/",$this->attrs['telephoneNumber'][0],$string); // $string = preg_replace("/%cn/",$this->attrs['cn'][0],$string); $this->macroarray[$attrs['dn']][$id]['choosen']= $string; $this->macroarray[$attrs['dn']][$id]['id'] = $id; $this->macroarray[$attrs['dn']][$id]['name'] =$data[1]; $this->macroarray[$attrs['dn']][$id]['type'] =$data[2]; $this->macroarray[$attrs['dn']][$id]['default']=$data[3]; if($data[2] == "bool"){ $this->macroarray[$attrs['dn']][$id]['choosen']=$data[3]; } }//foreach }//is_array }//visible = 1 }//while /* Go through already saved values, for a parameter */ $tmp = split("!",$this->goFonMacro); /* it is possible that nothing has been saved yet */ if(is_array($tmp)){ /* First value is the macroname */ $this->macro = $tmp[0]; /* Macroname saved, delete that index */ unset($tmp[0]); /* Check if makro has been removed */ if(!isset($this->macroarray[$this->macro])){ $this->macrostillavailable = false; }else{ $this->macrostillavailable = true; } /* for each parametervalues ( parameterID#value like 25#twentyfive) */ foreach($tmp as $var){ /* Split this, so we have $varar[0] = parameterID $varar[1] = SelectedValue */ $varar = split("#",$var); /* Only insert if the parameter still exists */ if(isset($this->macroarray[$this->macro][$varar[0]])){ /* Assign value */ $this->macroarray[$this->macro][$varar[0]]['choosen']=$varar[1]; } } } /* Eventually colorize phones */ $ldap->cd($this->config->current['BASE']); foreach ($this->hardware_list as $cn => $desc){ $ldap->search("(goFonHardware=$cn)", array('cn')); if ($ldap->count() > 0){ $ldap->fetch(); if ($ldap->getDN() != $this->dn){ $this->used_hardware[$cn]= $ldap->getDN(); } } } $this->hardware_list["automatic"]= _("automatic"); ksort($this->hardware_list); $this->a_old_telenums = $this->phoneNumbers; } // Generate MySQL Syntax function generate_mysql_entension_entries($save = false){ // Get Configuration for Mysql database Server $a_SETUP = $_SESSION['config']->data['SERVERS']['FON']; $s_parameter =""; // Connect to DB server $r_con = @mysql_connect($a_SETUP['SERVER'],$a_SETUP['LOGIN'],$a_SETUP['PASSWORD']); // Check if we are connected correctly if(!$r_con){ $this->generate_error = sprintf(_("The MySQL Server '%s' isn't reachable as user '%s', check GOsa log for mysql error."), $a_SETUP['SERVER'],$a_SETUP['LOGIN']); gosa_log(mysql_error()); return false; } // Select database for Extensions $db = @mysql_select_db($a_SETUP['DB'],$r_con); // Test if we have the database selected correctly if(!$db){ $this->generate_error = sprintf(_("Can't select database %s on %s."),$a_SETUP['DB'],$a_SETUP['SERVER']); gosa_log(mysql_error()); return false; } // Get phonehardware to setup sip entry $ldap= $this->config->get_ldap_link(); $res = $ldap->search("(&(objectClass=goFonHardware)(cn=".$this->goFonHardware."))", array('*')); $attrs = $ldap->fetch(); // Attribute GoFonDefaultIP set ? if(((isset($attrs['goFonDefaultIP'][0]))&&($attrs['goFonDefaultIP'][0] != "dynamic"))){ $ip = $attrs['goFonDefaultIP'][0]; $host = $ip; }else{ $ip = NULL; $host = "dynamic"; } // Attribute GoFonQualify set ? if(!isset($attrs['goFonQualify'])){ $qualify = NULL; }else{ $qualify = $attrs['goFonQualify'][0]; } // Attribute GoFonPIN set ? if(!isset($this->goFonPIN)){ $pin = NULL; }else{ $pin = $this->goFonPIN; } // Attribute GoFonType set ? if(!isset($attrs['goFonType'])){ $type = NULL; }else{ $type = $attrs['goFonType'][0]; } // generate SIP entry $sip_data_array['id'] = ""; $sip_data_array['name'] = $this->uid; $sip_data_array['accountcode'] = NULL; $sip_data_array['amaflags'] = NULL; $sip_data_array['callgroup'] = NULL; $sip_data_array['callerid'] = ""; $sip_data_array['canreinvite'] = "yes"; // Must be default and the name of an entry that already exists $sip_data_array['context'] = "default"; $sip_data_array['defaultip'] = NULL; if(isset($attrs['goFonDmtfMode'][0])){ $sip_data_array['dtmfmode'] = $attrs['goFonDmtfMode'][0]; }else{ $sip_data_array['dtmfmode'] ="rfc2833"; } $sip_data_array['fromuser'] = NULL; $sip_data_array['fromdomain'] = NULL; $sip_data_array['host'] = $host; $sip_data_array['insecure'] = NULL; $sip_data_array['language'] = NULL; $sip_data_array['mailbox'] = "asterisk"; $sip_data_array['md5secret'] = NULL; $sip_data_array['nat'] = "no"; $sip_data_array['permit'] = NULL; $sip_data_array['deny'] = NULL; $sip_data_array['mask'] = NULL; $sip_data_array['pickupgroup'] = NULL; $sip_data_array['port'] = NULL; $sip_data_array['qualify'] = $qualify; $sip_data_array['restrictcid'] = "n"; $sip_data_array['rtptimeout'] = NULL; $sip_data_array['rtpholdtimeout']=NULL; $sip_data_array['secret'] = $pin; $sip_data_array['type'] = $type ; $sip_data_array['username'] = $this->uid; $sip_data_array['disallow'] = NULL; $sip_data_array['allow'] = NULL; $sip_data_array['musiconhold'] = NULL; $sip_data_array['regseconds'] = NULL; $sip_data_array['ipaddr'] = $ip; $sip_data_array['regexten'] = NULL; $sip_data_array['cancallforward']=NULL; // Get selected Macro Parameter and create parameter entry if(isset($this->macroarray[$this->macro])){ foreach($this->macroarray[$this->macro] as $key => $val ){ $s_parameter .= $val['choosen']."|"; } $s_parameter = preg_replace("/\|$/","",$s_parameter); } // $SQL contains all queries $SQL = array(); $SQL[] = "DELETE FROM ".$a_SETUP['EXT_TABLE']." WHERE exten='".$this->uid."';\n"; $SQL[] = "DELETE FROM ".$a_SETUP['SIP_TABLE']." WHERE name='".$this->uid."';\n"; // Create new SIP entry ... $sip_entry = $sip_data_array; reset($this->phoneNumbers); $key = key($this->phoneNumbers); $sip_entry['callerid'] =$this->phoneNumbers[$key]; $sip_entry['mailbox'] =$this->phoneNumbers[$key]; if($this->is_number_used()){ $this->generate_error = $this->is_number_used(); return false; } if($save == true){ if(isset($this->parent->by_object['mailAccount']->mail)){ $mail = $this->parent->by_object['mailAccount']->mail; }else{ $mail = ""; } $SQL[]= "DELETE FROM ".$a_SETUP['VOICE_TABLE']." WHERE customer_id='".$this->phoneNumbers[$key]."';"; $SQL[]= "INSERT INTO ".$a_SETUP['VOICE_TABLE']." (`customer_id`,`context`,`mailbox`,`password`,`fullname`,`email`,`pager`) VALUES ('".$this->phoneNumbers[$key]."','default','".$this->phoneNumbers[$key]."','".$this->goFonPIN."','".$this->sn."','".$mail."','');"; // Generate Strings with keys and values $values = ""; $keys = ""; foreach($sip_entry as $key=>$val){ if($val == NULL) continue; $values.="'".$val."',"; $keys .="`".$key."`,"; } // Remove last , $values = preg_replace("/,$/","",$values); $keys = preg_replace("/,$/","",$keys); // Append SIP Entry $SQL[] ="INSERT INTO ".$a_SETUP['SIP_TABLE']." (".$keys.") VALUES (".$values.");"; // Delete old entries foreach($this->a_old_telenums as $s_telenums){ $SQL[] = "DELETE FROM ".$a_SETUP['EXT_TABLE']." WHERE exten='".$s_telenums."';\n"; } $i_is_accounted=false; // Entension entries Hint / Dial / Goto foreach($this->phoneNumbers as $s_telenums){ // Entry to call by name $s_entry_name['context'] = 'GOsa'; $s_entry_name['exten'] = $this->uid; $s_entry_name['priority'] = 1; $s_entry_name['app'] = 'Goto'; $s_entry_name['appdata'] = $s_telenums."|1"; // hint $s_entry_hint['context'] = 'GOsa'; $s_entry_hint['exten'] = $s_telenums; $s_entry_hint['app'] = 'hint'; $s_entry_hint['appdata'] = 'SIP/'.$this->uid; // If no macro is selected use Dial if($this->macro!="none"){ $macroname = preg_replace("/,.*$/","",$this->macro); $macroname = preg_replace("/^.*=/","",$macroname); $s_app = "Macro";$macroname; $s_par = $macroname."|".$s_parameter; }else{ $s_app = "Dial"; $s_par = 'SIP/'.$this->uid; } // Entry to call by number $s_entry_phone['context'] = 'GOsa'; $s_entry_phone['exten'] = $s_telenums; $s_entry_phone['priority'] = 1; $s_entry_phone['app'] = $s_app; $s_entry_phone['appdata'] = $s_par; // append name entry only once if(!$i_is_accounted){ $i_is_accounted = true; $entries[]=array("hint"=>$s_entry_hint,"phone"=>$s_entry_phone,"name"=>$s_entry_name); }else{ $entries[]=array("hint"=>$s_entry_hint,"phone"=>$s_entry_phone); } } // Append all these Entries foreach($entries as $num => $val){ foreach($val as $entr){ $SQL_syn = "INSERT INTO ".$a_SETUP['EXT_TABLE']." ("; foreach($entr as $key2 => $val2){ $SQL_syn.= "`".$key2."`,"; } $SQL_syn = preg_replace("/,$/","",$SQL_syn); $SQL_syn .= ") VALUES ("; foreach($entr as $key2 => $val2){ $SQL_syn .= "'".$val2."',"; } $SQL_syn = preg_replace("/,$/","",$SQL_syn); $SQL_syn .=");\n"; $SQL[] =$SQL_syn; $SQL_syn =""; } } // Perform queries ... foreach($SQL as $query){ if(!mysql_query($query,$r_con)){ print_red(_("Error while performing query ".mysql_error())); return false; } } } return true; } function execute() { /* force postmodify event, to restart phones */ $this->parent->by_object['user']->is_modified=TRUE; $this->is_modified=TRUE; /* Do we need to flip is_account state? */ if (isset($_POST['modify_state'])){ $this->is_account= !$this->is_account; } /* Select no macro if, state is empty, this is the case, if the selected macro is no longer available */ if(empty($this->macro)){ $this->macro ="none"; } /* tell user that the pluging selected is no longer available*/ if((!$this->macrostillavailable)&&($this->macro!="none")){ print_red(_("The macro you selected in the past, is no longer available for you, please choose another one.")); } /* Prepare templating */ $smarty= get_smarty(); /* Assing macroselectbox values */ $smarty->assign("macros",$this->macros); $smarty->assign("macro", $this->macro); /* Create parameter table, skip if no parameters given */ if(!isset($this->macroarray[$this->macro])){ $macrotab=""; }else{ $macrotab =""; /* for every single parameter-> display textfile,combo, or true false switch*/ foreach($this->macroarray[$this->macro] as $paras){ /* get al vars */ $var = $paras['var']; $name = $paras['name']; $default = $paras['default']; $type = $paras['type']; $choosen = $paras['choosen'] ; $str = $default; /* in case of a combo box display a combobox with selected attr */ $macrotab.= ""; switch ($type){ case "combo": $str= ""; $macrotab.= ""; } $macrotab.="
$name$str"; break; case "bool": if(!$choosen){ $str="\nacl, "goFonMacro")." >"; }else{ $str="\nacl, "goFonMacro").">"; } $macrotab.= "$str $name"; break; case "string": $choosen = preg_replace("/%uid/",$this->attrs['uid'][0],$choosen); foreach($this->phoneNumbers as $phone){ $tmp_phone[] = $phone; } $choosen = preg_replace("/%telephoneNumber/",$tmp_phone[0],$choosen); $choosen = preg_replace("/%cn/",$this->attrs['cn'][0],$choosen); $str="acl, "goFonMacro").">"; $macrotab.= "$name$str"; break; } $macrotab.= "
"; }//is_array() /* Give smarty the table */ $smarty->assign("macrotab",$macrotab); /* Do we represent a valid account? */ if (!$this->is_account && $this->parent == NULL){ $display= "\"\" ". _("This account has no phone extensions.").""; $display.= back_to_main(); return($display); } $display= ""; /* Show tab dialog headers */ if ($this->parent != NULL){ if ($this->is_account){ $display= $this->show_header(_("Remove phone account"), _("This account has phone features enabled. You can disable them by clicking below.")); } else { $display= $this->show_header(_("Create phone account"), _("This account has phone features disabled. You can enable them by clicking below.")); return ($display); } } /* Add phone number */ if (isset($_POST["add_phonenumber"]) && $_POST['phonenumber']){ if (is_phone_nr($_POST['phonenumber'])){ $number= $_POST["phonenumber"]; $this->phoneNumbers[$number]= $number; $this->is_modified= TRUE; } else { print_red(_("Please enter a valid phone number!")); } } /* Remove phone number */ if (isset($_POST["delete_phonenumber"]) && isset($_POST["phonenumber_list"])){ foreach ($_POST['phonenumber_list'] as $number){ unset($this->phoneNumbers[$number]); $this->is_modified= TRUE; } } /* Check for forwarding action */ foreach ($this->forwarders as $nr => $fw){ /* Buttons pressed? */ if (isset($_POST["add_fw$nr"])){ $this->forwarders= $this->insert_after("", $nr, $this->forwarders); } if (isset($_POST["remove_fw$nr"])){ unset($this->forwarders[$nr]); } } /* Transfer ACL's */ foreach($this->attributes as $val){ $smarty->assign($val."ACL", chkacl($this->acl, "$val")); $smarty->assign($val,$this->$val); } /* Fill arrays */ $smarty->assign ("goFonHardware", $this->goFonHardware); if (!count($this->phoneNumbers)){ $smarty->assign ("phoneNumbers", array("")); } else { $smarty->assign ("phoneNumbers", $this->phoneNumbers); } $hl= "\n"; $smarty->assign ("hardware_list", $hl); /* Generate forwarder view */ $forwarder_list=""; $acl= chkacl($this->acl, "goFonForwaring"); foreach ($this->forwarders as $nr => $fw){ if ($fw == ""){ $number= ""; $timeout= ""; } else { list($number, $timeout)= split(";", $fw); } $forwarder_list.= ""; $forwarder_list.= ""; $forwarder_list.= ""; $forwarder_list.= ""; $forwarder_list.= ""; $forwarder_list.= ""; if (count($this->forwarders) > 1){ $forwarder_list.= ""; } $forwarder_list.= ""; } $smarty->assign("forwarder_list", $forwarder_list); /* Show main page */ $display.= $smarty->fetch(get_template_path('generic.tpl', TRUE, dirname(__FILE__))); return($display); } function save_object() { if (isset($_POST["phoneTab"])){ plugin::save_object(); /* Save checkbox */ if (isset($_POST['fon_to_mail'])){ $tmp= "[M]"; } else { $tmp= "[]"; } if (chkacl ($this->acl, "goFonDeliveryMode") == ""){ if ($this->goFonDeliveryMode != $tmp){ $this->is_modified= TRUE; } $this->goFonDeliveryMode= $tmp; } /* Save forwarding numbers and timeouts */ if (chkacl ($this->acl, "goFonForwarder") == ""){ foreach ($this->forwarders as $nr => $fw){ $tmp= $_POST["fwn$nr"].";".$_POST["fwt$nr"]; if ($this->forwarders[$nr] != $tmp){ $this->is_modified= TRUE; } $this->forwarders[$nr]= $tmp; } } /* Every macro in the select box are available */ if((isset($_POST['macro']))){ $this->macrostillavailable=true; } /* get all Postvars */ if(isset($this->macroarray[$this->macro])){ foreach($this->macroarray[$this->macro] as $key => $paras){ if(isset($_POST[$paras['var']])){ $this->macroarray[$this->macro][$key]['choosen'] = $_POST[$paras['var']]; } /* Checkboxes are special, they are not Posted if they are not selected, so the won't be changed with the above code We need this code below to read and save checkboxes correct */ if(isset($_POST['post_success'])){ if($this->macroarray[$this->macro][$key]['type']=="bool"){ if(isset($_POST[$this->macroarray[$this->macro][$key]['var']])) { $this->macroarray[$this->macro][$key]['choosen']=$_POST[$paras['var']]; }else{ $this->macroarray[$this->macro][$key]['choosen']=false; } } } } } } } function check() { /* Reset message array */ $message= array(); if(!$this->generate_mysql_entension_entries()){ $message[] = $this->generate_error; } /* We need at least one phone number */ if (count($this->phoneNumbers) == 0){ $message[]= sprintf(_("You need to specify at least one phone number!")); } if(($this->goFonPIN)==""){ $message[]= sprintf(_("You need to specify a Phone PIN.")); }else{ if(strcmp ((int)($this->goFonPIN),($this->goFonPIN))){ $message[] = sprintf(_("The given PIN is not valid, only numbers are allowed for this type.")); }elseif(strlen($this->goFonPIN) < 4){ $message[] = sprintf(_("The given PIN is too short")); } } /* Check timestamps and phonenumbers */ foreach ($this->forwarders as $fw){ /* Skip empty values */ if ($fw == ";"){ continue; } /* Check */ list($number, $timeout)= split(";", $fw); if (!is_phone_nr($number)){ $message[]= sprintf(_("The number '%s' is no valid phone number!"), $number); } if (!is_id($timeout)){ $message[]= sprintf(_("The timeout '%s' contains invalid characters!"), $timeout); } } /* check for ! in any parameter setting*/ if(isset($this->macroarray[$this->macro])){ foreach($this->macroarray[$this->macro] as $val){ if((strstr($val['choosen'],"!"))||(strstr($val['choosen'],"#"))){ $message[] = sprintf(_("The parameter %s contains invalid char. '!,#' is used as delimiter"),$val['name']); } } } return ($message); } function save() { plugin::save(); /* Save arrays */ $this->attrs['telephoneNumber']= array(); foreach ($this->phoneNumbers as $number){ $this->attrs['telephoneNumber'][]= $number; } $this->attrs['goFonForwarding']= array(); foreach ($this->forwarders as $index => $number){ $this->attrs['goFonForwarding'][]= "$index;$number"; } /* Save settings, or remove goFonMacro attribute*/ if($this->macro!="none"){ $this->attrs['goFonMacro']=$this->macro; if(isset($this->macroarray[$this->macro])){ foreach($this->macroarray[$this->macro] as $paras) { $this->attrs['goFonMacro'].="!".$paras['id']."#".$paras['choosen']; } } }else{ $this->attrs['goFonMacro']=array(); } unset($this->attrs['macro']) ; $this->generate_mysql_entension_entries(true); if($this->attrs['goFonMacro']==""){ $this->attrs['goFonMacro']=array(); } /* Write back to ldap */ $ldap= $this->config->get_ldap_link(); $ldap->cd($this->dn); $ldap->modify($this->attrs); show_ldap_error($ldap->get_error()); /* Optionally execute a command after we're done */ if ($this->initially_was_account == $this->is_account){ if ($this->is_modified){ $this->handle_post_events("modify"); } } else { $this->handle_post_events("add"); } } function insert_after($entry, $nr, $list) { /* Is the entry free? No? Make it free... */ if (isset($list[$nr])) { $dest= array(); $newidx= 0; foreach ($list as $idx => $contents){ $dest[$newidx++]= $contents; if ($idx == $nr){ $dest[$newidx++]= $entry; } } } else { $dest= $list; $dest[$nr]= $entry; } return ($dest); } function adapt_from_template($dn) { plugin::adapt_from_template($dn); /* Assemble phone numbers */ if (isset($this->attrs['telephoneNumber'])){ for ($i= 0; $i<$this->attrs['telephoneNumber']['count']; $i++){ $number= $this->attrs['telephoneNumber'][$i]; $this->phoneNumbers[$number]= $number; } } /* Assemble forwarders */ if (isset($this->attrs['goFonForwarding'])){ for ($i= 0; $i<$this->attrs['goFonForwarding']['count']; $i++){ list($num, $v1, $v2) =split(';', $this->attrs['goFonForwarding'][$i]); $this->forwarders[$num]= "$v1;$v2"; } } else { $this->forwarders= array(""); } } function remove_from_parent() { // Get Configuration for Mysql database Server $a_SETUP = $_SESSION['config']->data['SERVERS']['FON']; $s_parameter =""; // Connect to DB server $r_con = @mysql_connect($a_SETUP['SERVER'],$a_SETUP['LOGIN'],$a_SETUP['PASSWORD']); // Check if we are connected correctly if(!$r_con){ $this->generate_error = sprintf(_("The MySQL Server '%s' isn't reachable as user '%s', check GOsa log for mysql error."), $a_SETUP['SERVER'],$a_SETUP['LOGIN']); gosa_log(mysql_error()); return false; } // Select database for Extensions $db = @mysql_select_db($a_SETUP['DB'],$r_con); // Test if we have the database selected correctly if(!$db){ $this->generate_error = sprintf(_("Can't select database %s on %s."),$a_SETUP['DB'],$a_SETUP['SERVER']); gosa_log(mysql_error()); return false; } $SQL=""; $first_num = false; // Delete old entries foreach($this->a_old_telenums as $s_telenums){ if(!$first_num){ $first_num = $s_telenums; } $SQL[] = "DELETE FROM ".$a_SETUP['EXT_TABLE']." WHERE exten='".$s_telenums."';\n"; } $SQL[] = "DELETE FROM ".$a_SETUP['VOICE_TABLE']." WHERE customer_id='".$first_num."';"; $SQL[] = "DELETE FROM ".$a_SETUP['EXT_TABLE']." WHERE exten='".$this->uid."';\n"; $SQL[] = "DELETE FROM ".$a_SETUP['SIP_TABLE']." WHERE name='".$this->uid."';\n"; foreach($SQL as $query){ if(!mysql_query($query,$r_con)){ print_red(_("Stop".mysql_error())); return false; } } /* unset macro attr, it will cause an error */ $tmp = array_flip($this->attributes); unset($tmp['macro']); $this->attributes=array_flip($tmp); /* Cancel if there's nothing to do here */ if (!$this->initially_was_account){ return; } plugin::remove_from_parent(); /* Just keep one phone number */ if (count($this->telephoneNumber) && $this->telephoneNumber != ""){ $this->attrs['telephoneNumber']= $this->telephoneNumber[0]; } else { $this->attrs['telephoneNumber']= array(); } $ldap= $this->config->get_ldap_link(); $ldap->cd($this->config->current['BASE']); $ldap->search("(objectClass=goFonQueue)", array("member")); while($attr = $ldap->fetch()){ if(in_array($this->dn,$attr['member'])){ $new =new ogrouptabs($this->config, $this->config->data['TABS']['OGROUPTABS'],$attr['dn']); unset($new->by_object['ogroup']->memberList[$this->dn]); unset($new->by_object['ogroup']->member[$this->dn]); $new->save(); print_red(sprintf(_("Removed user '%s' from phone queue '%s'."),$this->uid,$new->by_object['ogroup']->attrs['cn'])); } } $ldap->cd($this->dn); $ldap->modify($this->attrs); show_ldap_error($ldap->get_error()); /* Optionally execute a command after we're done */ $this->handle_post_events('remove'); } /* This function checks if the given phonenumbers are available or already in use*/ function is_number_used() { $ldap= $this->config->get_ldap_link(); $ldap->cd($this->config->current['BASE']); $ldap->search("(|(objectClass=goFonAccount)(objectClass=goFonQueue))", array("telephoneNumber","cn","uid")); while($attrs = $ldap->fetch()) { unset($attrs['telephoneNumber']['count']); foreach($attrs['telephoneNumber'] as $tele){ if(!isset($attrs['cn'][0])) $attrs['cn'][0]=$attrs['dn']; if(!isset($attrs['uid'][0])) $attrs['uid'][0]=$attrs['dn']; $numbers[$tele]=$attrs; } } foreach($this->phoneNumbers as $num){ if(!isset($this->cn)) $this->cn = ""; if((isset($numbers[$num]))&&(($numbers[$num]['uid'][0]!=$this->uid))){ if(isset($numbers[$num]['uid'][0])){ return sprintf(_("The specified telephonenumber '%s' is already assigned to '%s'."),$num,$numbers[$num]['uid'][0]); }else{ return sprintf(_("The specified telephonenumber '%s' is already assigned to '%s'."),$num,$numbers[$num]['cn'][0]); } } } } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>