Code

Packagelist sorted
[gosa.git] / plugins / admin / fai / class_faiHook.inc
index a6a5d7050e7a7bf34f97cc5b6bd515982009d2da..ca376017c2e0d9a4f9c408ec048c36c8a40a4d88 100644 (file)
@@ -25,7 +25,7 @@ class faiHook extends plugin
 
   /* Attributes to initialise for each subObject */
   var $subAttributes    = array("cn","description","FAItask","FAIscript"); 
-  var $sub64coded       = array("FAItask","FAIscript");
+  var $sub64coded       = array();
 
   /* Specific attributes */
   var $cn               = "";       // The class name for this object
@@ -72,7 +72,9 @@ class faiHook extends plugin
         foreach($this->subAttributes as $attrs){
           $this->SubObjects[$object['cn'][0]][$attrs]=addslashes($this->SubObjects[$object['cn'][0]][$attrs]);
         }
+        $this->SubObjects[$object['cn'][0]]['FAIscript']   = addslashes($this->readBinary("FAIscript",$object['dn']));
       }
+      ksort($this->SubObjects);
     }
   }
 
@@ -88,9 +90,11 @@ class faiHook extends plugin
       $this->is_dialog=true;
     }
 
+    $_SESSION['objectinfo']= $this->dn;
     /* Edit selected Sub Object */
     if((isset($_POST['EditSubObject']))&&(isset($_POST['SubObject']))){
       $this->dialog= new $this->subClassName($this->config,$this->dn,$this->SubObjects[$_POST['SubObject']]);
+      $_SESSION['objectinfo'] = $this->SubObjects[$_POST['SubObject']]['dn'];
       $this->is_dialog=true;
     }
     
@@ -138,6 +142,7 @@ class faiHook extends plugin
         $this->is_dialog=false;
         unset($this->dialog);
         $this->dialog=NULL;
+        ksort($this->SubObjects);
       }
     }
 
@@ -205,10 +210,12 @@ class faiHook extends plugin
    */
   function save_object()
   {
-    plugin::save_object();
-    foreach($this->attributes as $attrs){
-      if(isset($_POST[$attrs])){
-        $this->$attrs = $_POST[$attrs];
+    if(isset($_POST['FAIhook_posted'])){
+      plugin::save_object();
+      foreach($this->attributes as $attrs){
+        if(isset($_POST[$attrs])){
+          $this->$attrs = $_POST[$attrs];
+        }
       }
     }
   }
@@ -310,6 +317,38 @@ class faiHook extends plugin
       show_ldap_error($ldap->get_error()); 
     }
   }
+  
+  function readBinary($attr,$dn){
+    $Data  ="";
+    $ds= ldap_connect($this->config->current['SERVER']);
+    ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
+    if (function_exists("ldap_set_rebind_proc") && isset($this->config->current['RECURSIVE']) && $this->config->current['RECURSIVE'] == "true") {
+      ldap_set_option($this->cid, LDAP_OPT_REFERRALS, 1);
+      ldap_set_rebind_proc($ds, array(&$this, "rebind"));
+    }
+
+    if(isset($this->config->current['TLS']) &&  $this->config->current['TLS'] == "true"){
+      ldap_start_tls($ds);
+    }
+
+    $r  = ldap_bind($ds);
+    $sr = @ldap_read($ds, $dn, $attr."=*", array($attr));
+
+    if ($sr) {
+      $ei=ldap_first_entry($ds, $sr);
+      if ($ei) {
+        if ($info = ldap_get_values_len($ds, $ei, $attr)){
+          $Data= $info[0];
+        }
+      }
+    }
+
+    /* close conncetion */
+    ldap_unbind($ds);
+    return($Data);
+  }
+
+
 }
 
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: