Code

Fixed ogroup saving
[gosa.git] / plugins / admin / fai / class_faiSummaryTab.inc
index 12eaacdbaaf4ded28e2f1596ff967173afa08db9..eba31ee2a38c82469a6ac3a0957e0d6c111fff91 100644 (file)
@@ -29,10 +29,12 @@ class faiSummaryTab extends plugin{
   var $is_dialog      = false;
   var $InitCalled     = false;
   var $usedClasses    = array();
-  
-  function faiSummaryTab($config,$dn)
+  var $base           = ""; 
+  var $parent         = NULL; 
+
+  function faiSummaryTab($config,$dn,$parent)
   {
-    plugin::plugin($config,$dn);
+    plugin::plugin($config,$dn,$parent);
 
     /* Base object configuration */
     $this->objs = array(       
@@ -54,9 +56,7 @@ class faiSummaryTab extends plugin{
     $this->InitCalled = true;
     $this->Result = array();
     $_SESSION['faiSummaryTab']['UniqueID'] = 0; 
-    $tmp = $this->getBranches();
    
     /* Get classes & release name 
        There are 2 different tabs which use the summary tab
        faiProfile / Workstations */
@@ -66,31 +66,27 @@ class faiSummaryTab extends plugin{
       
       /* Get Classes and release */
       $this->Classes = $this->parent->by_object['faiProfile']->FAIclasses;
+      $this->base    = $this->parent->by_object['faiProfile']->base;
       $str = preg_replace("/^.*ou=profiles,/","",$this->dn);
-      if(isset($tmp[$str])){
-        $this->Release = $tmp[$str];
-      }
   
     /* Check if parent tab is work tab */
     }elseif(isset($this->parent->by_name['workstartup'])){
       $this->Classes = $this->parent->by_object['workstartup']->FAIclass;
       $this->Release = $this->parent->by_object['workstartup']->FAIrelease;
+      $this->base    = $this->parent->by_object['workgeneric']->base;
 
       /* Append workstation class && LAST */
       if(isset($this->parent->by_object['workgeneric']->cn)){
         $this->Classes[] = $this->parent->by_object['workgeneric']->cn;
       }
-      $tmp = array_flip($tmp);
-      if(!isset($tmp[$this->Release])) {
-        $this->Release = "";
-      }
     }
 
+    $tmp = array_flip($this->getBranches());
+
     $this->Classes[] = "LAST";
 
     /* Set all available releases */
-    $this->Releases = array_flip($this->getBranches());
+    $this->Releases = $tmp;
     $this->usedClasses = array();
 
     /* Check the configuration */
@@ -146,9 +142,9 @@ class faiSummaryTab extends plugin{
   function getBranches($base = false,$prefix = "")
   {
     if(!$base){
-      $base = $this->config->current['BASE'];
+      $base = $this->base;
     }
-    return(get_all_releases_from_base($base));
+    return(get_all_releases_from_base($base,true));
   }
 
 
@@ -177,6 +173,8 @@ class faiSummaryTab extends plugin{
 
     /* Get smarty class & assign created summary results */
     $smarty = get_smarty();
+    $smarty->assign("readable",$this->acl_is_readable("readable"));
+
     $this->ObjectList = $this->createSummary($this->Result);
     $smarty->assign("objectList",$this->ObjectList);
     return($smarty->fetch (get_template_path('faiSummary.tpl', TRUE, dirname(__FILE__))));
@@ -216,17 +214,19 @@ class faiSummaryTab extends plugin{
         if(in_array($key,array("FAItemplate","FAIhook","FAIscript"))){
 
           $nums = array();          
-
+          $tmp  = array();
           if($key == "FAIscript"){
-            foreach($entry['Entries'] as $scripts){
-              foreach($scripts as $script){
-                
-                if(!isset($nums[$script['cn'][0]])){
-                  $nums[$script['cn'][0]]= 0;
-                } 
-                $nums[$script['cn'][0]] ++;
-            
-                $tmp[$script['FAIpriority'][0].$script['cn'][0].$script['CLASS']] = $script;
+            if(is_array($entry['Entries'])){
+              foreach($entry['Entries'] as $scripts){
+                foreach($scripts as $script){
+
+                  if(!isset($nums[$script['cn'][0]])){
+                    $nums[$script['cn'][0]]= 0;
+                  } 
+                  $nums[$script['cn'][0]] ++;
+
+                  $tmp[$script['FAIpriority'][0].$script['cn'][0].$script['CLASS']] = $script;
+                }
               }
             }
             krsort($tmp);;
@@ -353,36 +353,45 @@ class faiSummaryTab extends plugin{
   /* resolve specified object to append it to our object tree */
   function resolveObject($class)
   {
-    $ldap      = $this->config->get_ldap_link();
-    $dn          = $this->Releases [$this->Release];
-    $res    = array();
+    $ldap                = $this->config->get_ldap_link();
+    $dn                    = $this->Releases [$this->Release];
+    $resolvedClasses  = get_all_objects_for_given_base($dn,"(&(objectClass=FAIclass)(cn=".$class."))");
+
+    /* Check acls -> are we allowed to view the sonfig summary ? */
+    if(!$this->acl_is_readable("readable")) {
+      return;
+    }
+
     /* Try to fetch all types of fai objects with the given cn  */
-    foreach($this->objs as $key =>  $obj){
-      
-      /* Check for objects with cn=$class 
-          and add them to our list */
-      $ldap->ls("(&(objectClass=".$key.")(cn=".$class."))",$obj['Tree'].$dn,array("*"));
+    foreach($resolvedClasses as $obj){
+
+      $dn = $obj['dn'];
+      $ldap->cat($dn);
+
       while($attrs = $ldap->fetch()){
 
-        if(!isset($this->usedClasses[$key][$class])){
-          $this->usedClasses[$key][$class] = true;
-          switch($key){
-            case "FAIprofile":                         $this->prepare_FAIprofile($attrs);break;
-            case "FAIscript":                  $this->prepare_FAIscript($attrs);break;
-            case "FAIhook":                      $this->prepare_FAIhook($attrs);break;
-            case "FAIvariable":                        $this->prepare_FAIvariable($attrs);break;
-            case "FAItemplate":                        $this->prepare_FAItemplate($attrs);break;
-            case "FAIpackageList":           $this->prepare_FAIpackageList($attrs);break;
-            case "FAIpartitionTable":      $this->prepare_FAIpartitionTable($attrs);break;
+        foreach($this-> objs as $key => $rest){
+          if(in_array($key,$attrs['objectClass'])){
+
+            if(!isset($this->usedClasses[$key][$class])){
+              $this->usedClasses[$key][$class] = true;
+              switch($key){
+                case "FAIprofile":                     $this->prepare_FAIprofile($attrs);break;
+                case "FAIscript":                      $this->prepare_FAIscript($attrs);break;
+                case "FAIhook":                          $this->prepare_FAIhook($attrs);break;
+                case "FAIvariable":                    $this->prepare_FAIvariable($attrs);break;
+                case "FAItemplate":                    $this->prepare_FAItemplate($attrs);break;
+                case "FAIpackageList":       $this->prepare_FAIpackageList($attrs);break;
+                case "FAIpartitionTable":          $this->prepare_FAIpartitionTable($attrs);break;
+              }
+            }
+
           }
         }
       }
     }
-    return($res);
   }
 
-
   /* Prepare fai script */
   function prepare_FAIscript($data)
   {
@@ -528,6 +537,23 @@ class faiSummaryTab extends plugin{
       $this->resolveObject($class);
     }
   }
+
+  /* Return plugin informations for acl handling */
+  function plInfo()
+  {
+    return (array(
+          "plShortName"   => _("Summary"),
+          "plDescription" => _("FAI summary"),
+          "plSelfModify"  => FALSE,
+          "plDepends"     => array(),
+          "plPriority"    => 15,
+          "plSection"     => array("administration"),
+          "plCategory"    => array("workstation","server","fai") ,
+          "plProvidedAcls"=> array(
+            "readable" => _("Viewable")),
+          ));
+  }
+
 }
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>