Code

Exlude dhcp entries from existence check in check()
[gosa.git] / plugins / admin / systems / class_phoneGeneric.inc
index f35a0ca0336e6de465be9bfd4564b1377171ae9f..fc2ce9d6095333faa52b59a352e0bd8556558ace 100644 (file)
@@ -32,9 +32,10 @@ class phoneGeneric extends plugin
   var $goFonMSN         = "";
   var $selected_categorie    = 0;
   var $netConfigDNS;
+  var $view_logged      = FALSE;
 
   /* attribute list for save action */
-  var $attributes= array("cn", "description", 
+  var $attributes= array("cn", "description",
                           "goFonType","goFonDmtfMode","goFonHost","goFonDefaultIP",
                           "goFonQualify","goFonAuth","goFonSecret","goFonInkeys","goFonOutkey",
                           "goFonTrunk","goFonAccountCode","goFonMSN","selected_categorie","goFonPermit","goFonDeny" 
@@ -94,10 +95,28 @@ class phoneGeneric extends plugin
     $this->orig_dn= $this->dn;
   }
 
+  function set_acl_base($base)
+  {
+    plugin::set_acl_base($base);
+    $this->netConfigDNS->set_acl_base($base);
+  }
+
+  function set_acl_category($cat)
+  {
+    plugin::set_acl_category($cat);
+    $this->netConfigDNS->set_acl_category($cat);
+  }
+
+
   function execute()
   {
-       /* Call parent execute */
-       plugin::execute();
+    /* Call parent execute */
+    plugin::execute();
+
+    if($this->is_account && !$this->view_logged){
+      $this->view_logged = TRUE;
+      new log("view","phone/".get_class($this),$this->dn);
+    }
 
     /* Do we represent a valid phone? */
     if (!$this->is_account && $this->parent == NULL){
@@ -111,7 +130,7 @@ class phoneGeneric extends plugin
     foreach($_POST as $name => $value){
       if(preg_match("/^chooseBase/",$name) && $once){
         $once = false;
-        $this->dialog = new baseSelectDialog($this->config,$this);
+        $this->dialog = new baseSelectDialog($this->config,$this,$this->get_allowed_bases());
         $this->dialog->setCurrentBase($this->base);
       }
     }
@@ -124,7 +143,13 @@ class phoneGeneric extends plugin
       if($this->dialog->isClosed()){
         $this->dialog = false;
       }elseif($this->dialog->isSelected()){
-        $this->base = $this->dialog->isSelected();
+        
+        /* A new base was selected, check if it is a valid one */
+        $tmp = $this->get_allowed_bases();
+        if(isset($tmp[$this->dialog->isSelected()])){
+          $this->base = $this->dialog->isSelected();
+        }
+
         $this->dialog= false;
       }else{
         return($this->dialog->execute());
@@ -132,7 +157,7 @@ class phoneGeneric extends plugin
     }
 
     /* handle Permit Add*/
-    if(isset($_POST['goFonPermitAdd'])){
+    if(isset($_POST['goFonPermitAdd']) && $this->acl_is_writeable("goFonPermit")){
       if(isset($_POST['goFonPermitNew'])){
         if(is_string($this->goFonPermit)){
           $this->goFonPermit=array();
@@ -145,7 +170,7 @@ class phoneGeneric extends plugin
     }
       
     /* handle Deny Add*/
-    if(isset($_POST['goFonDenyAdd'])){
+    if(isset($_POST['goFonDenyAdd']) && $this->acl_is_writeable("goFonDeny")){
       if(isset($_POST['goFonDenyNew'])){
         if(is_string($this->goFonDeny)){
           $this->goFonDeny=array();
@@ -158,7 +183,7 @@ class phoneGeneric extends plugin
     }
 
     /* Handle Permit Deletion*/
-    if(isset($_POST['goFonPermitDel'])){
+    if(isset($_POST['goFonPermitDel']) && $this->acl_is_writeable("goFonPermit")){
       if(isset($_POST['goFonPermitS'])){
         if(is_string($this->goFonPermit)){
           $this->goFonPermit=array();
@@ -175,7 +200,7 @@ class phoneGeneric extends plugin
 
 
     /* Handle Permit Deletion*/
-    if(isset($_POST['goFonDenyDel'])){
+    if(isset($_POST['goFonDenyDel']) && $this->acl_is_writeable("goFonDeny")){
       if(isset($_POST['goFonDenyS'])){
         if(is_string($this->goFonDeny)){
           $this->goFonDeny=array();
@@ -193,12 +218,6 @@ class phoneGeneric extends plugin
     /* Fill templating stuff */
     $smarty= get_smarty();
 
-     /* Assign base ACL */
-    $baseACL = $this->getacl("base");
-    if(!$this->acl_is_moveable()) {
-      $baseACL = preg_replace("/w/","",$baseACL);
-    }
-    $smarty->assign("baseACL",          $baseACL);
     $smarty->assign("bases", $this->get_allowed_bases());
 
     $tmp = $this->plInfo();
@@ -229,10 +248,7 @@ class phoneGeneric extends plugin
     $smarty->assign("selected_categorie",$this->selected_categorie);
 
     /* Assign attributes */
-    
-
     $smarty->assign("base_select", $this->base);
-   
     $smarty->assign("goFonDefaultIPs",array("dynamic"=>_("dynamic"),"network"=>_("Networksettings")));
  
     /* Show main page */
@@ -243,28 +259,33 @@ class phoneGeneric extends plugin
 
   function remove_from_parent()
   {
-    $ldap= $this->config->get_ldap_link();
-    $ldap->cd($this->config->current['BASE']);
+    if($this->acl_is_removeable()){
+      $ldap= $this->config->get_ldap_link();
+      $ldap->cd($this->config->current['BASE']);
 
-    $ldap->search ("(&(objectClass=goFonAccount)(goFonHardware=".$this->cn."))", array("uid","cn"));
-    while ($attr =  $ldap->fetch()){
-      print_red(sprintf(_("Can't delete because there are user which are depending on this phone. One of them is user '%s'."),
-        ($attr['uid'][0]." - ".$attr['cn'][0])));
-      return;
-    }
+      $ldap->search ("(&(objectClass=goFonAccount)(goFonHardware=".$this->cn."))", array("uid","cn"));
+      while ($attr =  $ldap->fetch()){
+        print_red(sprintf(_("Can't delete because there are user which are depending on this phone. One of them is user '%s'."),
+              ($attr['uid'][0]." - ".$attr['cn'][0])));
+        return;
+      }
 
-    $this->netConfigDNS->remove_from_parent();
-    $ldap->rmdir($this->dn);
-    show_ldap_error($ldap->get_error(), sprintf(_("Removing of system phone/generic with dn '%s' failed."),$this->dn));
-    $this->handle_post_events("remove");
-
-    /* Delete references to object groups */
-    $ldap->cd ($this->config->current['BASE']);
-    $ldap->search ("(&(objectClass=gosaGroupOfNames)(member=".$this->dn."))", array("cn"));
-    while ($ldap->fetch()){
-      $og= new ogroup($this->config, $ldap->getDN());
-      unset($og->member[$this->dn]);
-      $og->save ();
+      $this->netConfigDNS->remove_from_parent();
+      $ldap->rmdir($this->dn);
+  
+      new log("remove","phone/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
+
+      show_ldap_error($ldap->get_error(), sprintf(_("Removing of system phone/generic with dn '%s' failed."),$this->dn));
+      $this->handle_post_events("remove",array("macAddress" => $this->netConfigDNS->macAddress,"ipHostNumber" => $this->netConfigDNS->ipHostNumber));
+
+      /* Delete references to object groups */
+      $ldap->cd ($this->config->current['BASE']);
+      $ldap->search ("(&(objectClass=gosaGroupOfNames)(member=".$this->dn."))", array("cn"));
+      while ($ldap->fetch()){
+        $og= new ogroup($this->config, $ldap->getDN());
+        unset($og->member[$this->dn]);
+        $og->save ();
+      }
     }
   }
 
@@ -272,11 +293,21 @@ class phoneGeneric extends plugin
   /* Save data to object */
   function save_object()
   {
+    /* Create a base backup and reset the
+       base directly after calling plugin::save_object();
+       Base will be set seperatly a few lines below */
+    $base_tmp = $this->base;
     plugin::save_object();
+    $this->base = $base_tmp;
+
     $this->netConfigDNS->save_object();
-    /* Save base, since this is no LDAP attribute */
-    if (isset($_POST['base']) && $this->acl_is_moveable()){
-      $this->base= $_POST['base'];
+
+    /* Set new base if allowed */
+    $tmp = $this->get_allowed_bases();
+    if(isset($_POST['base'])){
+      if(isset($tmp[$_POST['base']])){
+        $this->base= $_POST['base'];
+      }
     }
   }
 
@@ -306,17 +337,17 @@ class phoneGeneric extends plugin
       $message[]= _("The 'Phone name' '0' is reserved and cannot be used.");
     }
 
-    $ui= get_userinfo();
-    if ($this->dn == "new" && $this->acl_is_createable()){
-      $message[]= _("You have no permissions to create a phone on this 'Base'.");
-    }
-
     if ($this->orig_dn != $this->dn){
       $ldap= $this->config->get_ldap_link();
       $ldap->cd ($this->base);
       $ldap->search ("(cn=".$this->cn.")", array("cn"));
       if ($ldap->count() != 0){
         while ($attrs= $ldap->fetch()){
+
+          if(preg_match("/cn=dhcp,/",$attrs['dn'])){
+            continue;
+          }
+  
           if ($attrs['dn'] != $this->orig_dn){
             $message[]= sprintf (_("There is already an entry '%s' in the base choosen by you"), $this->cn);
             break;
@@ -336,7 +367,7 @@ class phoneGeneric extends plugin
    
    
     /* only to define which attrs to save*/ 
-    $mode = $this->attrs['selected_categorie'];
+    $mode = $this->selected_categorie;
 
     /* Remove all unwanted attrs */
     foreach($this->attributes as $att){
@@ -375,7 +406,8 @@ class phoneGeneric extends plugin
       $ldap->create_missing_trees(preg_replace('/^[^,]+,/', '', $this->dn));
       $ldap->cd($this->dn);
       $ldap->add($this->attrs);
-      $this->handle_post_events("add");
+      new log("create","phone/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
+      $this->handle_post_events("add",array("macAddress" => $this->netConfigDNS->macAddress,"ipHostNumber" => $this->netConfigDNS->ipHostNumber));
     } else {
       if ($this->orig_dn != $this->dn){
         $this->move($this->orig_dn, $this->dn);
@@ -384,6 +416,7 @@ class phoneGeneric extends plugin
       $ldap->cd($this->dn);
       $this->cleanup();
       $ldap->modify ($this->attrs); 
+      new log("modify","phone/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
 
       // $user_phone_reload   
       $ldap->cd ($this->config->current['BASE']); 
@@ -394,14 +427,49 @@ class phoneGeneric extends plugin
         $usertab->save();
         unset($usertab);
       }
-      $this->handle_post_events("modify");
+      $this->handle_post_events("modify",array("macAddress" => $this->netConfigDNS->macAddress,"ipHostNumber" => $this->netConfigDNS->ipHostNumber));
     }
     $this->netConfigDNS->cn = $this->cn;    
     $this->netConfigDNS->save($this->dn);
     show_ldap_error($ldap->get_error(), sprintf(_("Saving of system phone/generic with dn '%s' failed."),$this->dn));
+  }
+
+
+  /* Display generic part for server copy & paste */
+  function getCopyDialog()
+  {
+    $vars = array("cn");
+    $smarty = get_smarty();
+    $smarty->assign("cn" ,$this->cn);
+    $smarty->assign("object","phone");
+    $str = $smarty->fetch(get_template_path("paste_generic.tpl",TRUE));
+    $ret = array();
+    $ret['string'] = $str;
+    $ret['status'] = "";
+    return($ret);
+  }
+
+
+  function saveCopyDialog()
+  {
+    if(isset($_POST['cn'])){
+      $this->cn = $_POST['cn'];
+    }
+  }
+
+
+  function PrepareForCopyPaste($source)
+  {
+    plugin::PrepareForCopyPaste($source);
+    if(isset($source['macAddress'][0])){
+      $this->netConfigDNS->macAddress = $source['macAddress'][0];
+    }
+    if(isset($source['ipHostNumber'][0])){
+      $this->netConfigDNS->ipHostNumber = $source['ipHostNumber'][0];
+    }
 
-    /* Optionally execute a command after we're done */
-    $this->postcreate();
+    $source_o = new phonegeneric($this->config, $source['dn']);
+    $this->selected_categorie = $source_o->selected_categorie;
   }
 
 
@@ -420,6 +488,7 @@ class phoneGeneric extends plugin
                                                     "objectClass"  => "goFonHardware")),
           "plProvidedAcls"=> array(
             "cn"                  => _("Name"),
+            "base"                => _("Base"),
             "description"         => _("Description"),
             "goFonType"           => _("SIP Mode"),
             "goFonDmtfMode"       => _("SIP DTMF mode"),