Code

removed debug output
[gosa.git] / plugins / admin / systems / class_goTerminalServer.inc
index 7fe9709686e4c6f673a45babf7d07cc500f821af..501546fc618a48de2847dae2a21d8314fb0efe23 100644 (file)
@@ -8,7 +8,7 @@ class goTerminalServer extends plugin{
 
   /* This plugin only writes its objectClass */
   var $objectclasses    = array("goTerminalServer");
-  var $attributes       = array("goTerminalServerStatus","goXdmcpIsEnabled", "goFontPath");
+  var $attributes       = array("goXdmcpIsEnabled", "goFontPath");
   var $StatusFlag       = "goTerminalServerStatus";
  
   /* This class can't be assigned twice so it conflicts with itsself */
@@ -17,12 +17,12 @@ class goTerminalServer extends plugin{
   var $DisplayName      = "";
   var $dn               = NULL;
   var $acl;
-
+  var $cn                      = "";
   var $goTerminalServerStatus  = "";
   var $goXdmcpIsEnabled        = false;  
   var $goFontPath              = "";
+
+
   function goTerminalServer($config,$dn)
   {
     plugin::plugin($config,$dn);
@@ -69,6 +69,7 @@ class goTerminalServer extends plugin{
       $ldap->add($this->attrs);
     }
     show_ldap_error($ldap->get_error());
+    $this->handle_post_events("remove");
   }
 
 
@@ -79,7 +80,7 @@ class goTerminalServer extends plugin{
     if(!$this->goXdmcpIsEnabled){
       $this->attrs['goXdmcpIsEnabled'] = "0";
     }
-  
+
     /* Check if this is a new entry ... add/modify */
     $ldap = $this->config->get_ldap_link();
     $ldap->cat($this->dn,array("objectClass"));
@@ -91,6 +92,11 @@ class goTerminalServer 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");
+    }
   }
 
 
@@ -113,6 +119,7 @@ class goTerminalServer extends plugin{
       $this->$flag = $value;
       $ldap->modify($attrs);
       show_ldap_error($ldap->get_error());
+      $this->action_hook();
     }
   }
 
@@ -126,7 +133,7 @@ class goTerminalServer extends plugin{
 
     return($message);
   }
-  
+
 
   function save_object()
   {
@@ -138,7 +145,49 @@ class goTerminalServer extends plugin{
         $this->goXdmcpIsEnabled = false;
       }
     }
-  }  
+  } 
+
+  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 there are still some %.. in our command, try to fill these with some other class vars */
+      if(preg_match("/%/",$command)){
+        $attrs = get_object_vars($this);
+        foreach($attrs as $name => $value){
+          if(!is_string($value)) continue;
+          $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:
 ?>