Code

Added cn to class vars, to be able to use it within post_create etc
[gosa.git] / plugins / admin / systems / class_goLogDBServer.inc
index 20785cd7c9f6ef4d176c0ad304e55bb0f1fe5d6a..254abe369660ae282d0d7b9475f1ee49f55dce00 100644 (file)
@@ -10,7 +10,7 @@ class goLogDBServer extends plugin{
   var $objectclasses    = array("goLogDBServer");
   var $attributes       = array("goLogDBServerStatus","goLogAdmin", "goLogPassword");
   var $StatusFlag       = "goLogDBServerStatus";
+
   /* This class can't be assigned twice so it conflicts with itsself */
   var $conflicts        = array("goLogDBServer");
 
@@ -21,8 +21,8 @@ class goLogDBServer extends plugin{
   var $goLogDBServerStatus  = "";
   var $goLogAdmin           = "";
   var $goLogPassword        = "";  
+
+
   function goLogDBServer($config,$dn)
   {
     plugin::plugin($config,$dn);
@@ -45,10 +45,10 @@ class goLogDBServer extends plugin{
   {
     $flag = $this->StatusFlag;
     $fields['Status']     = $this->$flag;
-    $fields['Message']    = _("Asterisk management");
+    $fields['Message']    = _("Logging database");
     $fields['AllowStart'] = true;
     $fields['AllowStop']  = true;
-    $fields['AllowReset'] = true;
+    $fields['AllowRestart'] = true;
     $fields['AllowRemove']= true;
     $fields['AllowEdit']  = true;
     return($fields);
@@ -69,6 +69,7 @@ class goLogDBServer extends plugin{
       $ldap->add($this->attrs);
     }
     show_ldap_error($ldap->get_error());
+    $this->handle_post_events("remove");
   }
 
 
@@ -86,6 +87,11 @@ class goLogDBServer extends plugin{
       $ldap->add($this->attrs);
     }
     show_ldap_error($ldap->get_error());
+    if($this->initially_was_account){
+      $this->handle_post_events("modify");
+    }else{
+      $this->handle_post_events("add");
+    }
   }
 
 
@@ -93,60 +99,77 @@ class goLogDBServer extends plugin{
   function setStatus($value)
   {
     if($value == "none") return;
+    if(!$this->initially_was_account) return;
     $ldap = $this->config->get_ldap_link();
     $ldap->cd($this->dn);
-    $ldap->cat($this->dn,array("objectClass","goLogAdmin","goLogPassword"));
-      
+    $ldap->cat($this->dn,array("objectClass"));
     if($ldap->count()){
-      $attrs =array();
-      foreach(array("goLogAdmin","goLogPassword") as $req) {
-        if(!isset($attrs[$req])){
-          if(empty($this->$req)){
-            print_red(sprintf(_("The required attribute '%s' is not set."),$req));
-          }else{
-            $attrs[$req] = $this->$req;
-          }
-        }else{
-          $attrs[$req] = $attrs[$req][0];
-        }
-      }
 
       $tmp = $ldap->fetch();
       for($i = 0; $i < $tmp['objectClass']['count']; $i ++){
         $attrs['objectClass'][] = $tmp['objectClass'][$i];
-      }    
-      if(!in_array("goLogDBServer",$attrs['objectClass'])){
-        $attrs['objectClass'][] = "goLogDBServer";
       }
-
       $flag = $this->StatusFlag;
       $attrs[$flag] = $value;
       $this->$flag = $value;
       $ldap->modify($attrs);
       show_ldap_error($ldap->get_error());
-    }    
+      $this->action_hook();
+    }
   }
 
-  
+
   function check()
   { 
     $message = plugin::check();
-    if ($this->goLogAdmin == "" || preg_match("/ /", $this->goLogAdmin)){
-      $message[]= sprintf(_("The attribute '%s' is empty or contains invalid characters."), "goLogAdmin");
+    if (empty($this->goLogAdmin)){
+      $message[]= sprintf_("The attribute user is empty or contains invalid characters.");
     }
-    if ($this->goLogPassword == "" || preg_match("/ /", $this->goLogPassword)){
-      $message[]= sprintf(_("The attribute '%s' is empty or contains invalid characters."), "goLogPassword");
+    if (empty($this->goLogPassword)){
+      $message[]= sprintf_("The attribute password is empty or contains invalid characters.");
     }
     return($message);
   }
-  
+
 
   function save_object()
   {
     if(isset($_POST['goLogDBServerPosted'])){
       plugin::save_object();
     }
-  }  
+  } 
+
+  function action_hook($add_attrs= array())
+  {
+    /* Find postcreate entries for this class */
+    $command= search_config($this->config->data['MENU'], get_class($this), "ACTION_HOOK");
+    if ($command == "" && isset($this->config->data['TABS'])){
+      $command= search_config($this->config->data['TABS'], get_class($this), "ACTION_HOOK");
+    }
+    if ($command != ""){
+      /* Walk through attribute list */
+      foreach ($this->attributes as $attr){
+        if (!is_array($this->$attr)){
+          $command= preg_replace("/%$attr/", $this->$attr, $command);
+        }
+      }
+      $command= preg_replace("/%dn/", $this->dn, $command);
+      /* Additional attributes */
+      foreach ($add_attrs as $name => $value){
+        $command= preg_replace("/%$name/", $value, $command);
+      }
+      if (check_command($command)){
+        @DEBUG (DEBUG_SHELL, __LINE__, __FUNCTION__, __FILE__,
+            $command, "Execute");
+
+        exec($command);
+      } else {
+        $message= sprintf(_("Command '%s', specified as ACTION_HOOK for plugin '%s' doesn't seem to exist."), $command, get_class($this));
+        print_red ($message);
+      }
+    }
+  }
+
 }
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>