Code

Updated copy & paste acls, centralized checks
[gosa.git] / gosa-core / plugins / admin / ogroups / tabs_ogroups.inc
index 6d3c018af5701249122f96eaa6bbeb1385339804..47af9e79ae6ac30f61ecf813c05d62316ca23f65 100644 (file)
@@ -1,4 +1,24 @@
 <?php
+/*
+ * This code is part of GOsa (http://www.gosa-project.org)
+ * Copyright (C) 2003-2008 GONICUS GmbH
+ *
+ * ID: $$Id$$
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
 
 class ogrouptabs extends tabs
 {
@@ -23,55 +43,77 @@ class ogrouptabs extends tabs
         }
       }
     }
-    if(((!$usePhoneTab)&&(isset($this->by_object['phonequeue'])))||((!preg_match("/U/",$objects))&&(isset($this->by_object['phonequeue'])))){
-      $this->by_object['phonequeue']->remove_from_parent();
-      unset($this->by_object['phonequeue']);
-      unset($this->by_name['phonequeue']);
+
+    if(class_available("phonequeue")){
+      if(((!$usePhoneTab)&&(isset($this->by_object['phonequeue'])))||((!preg_match("/U/",$objects))&&(isset($this->by_object['phonequeue'])))){
+        $this->by_object['phonequeue']->remove_from_parent();
+        unset($this->by_object['phonequeue']);
+        unset($this->by_name['phonequeue']);
+      }
     }
     /* Remove mail group if there is no user anymore */
-    if((!preg_match("/U/",$objects))&&(isset($this->by_object['mailogroup']))){
-      $this->by_object['mailogroup']->remove_from_parent();
-      unset($this->by_object['mailogroup']);
-      unset($this->by_name['mailogroup']);
+    if(class_available("mailogroup")){
+      if((!preg_match("/U/",$objects))&&(isset($this->by_object['mailogroup']))){
+        $this->by_object['mailogroup']->remove_from_parent();
+        unset($this->by_object['mailogroup']);
+        unset($this->by_name['mailogroup']);
+      }
     }
-    
+
     /* Remove terminal group, if theres no terminal left in the object list */
-    if(((!preg_match("/T/",$objects)) && (!preg_match("/W/",$objects)))&&(isset($this->by_object['termgroup']))){
-      $this->by_object['termgroup']->remove_from_parent();
-      unset($this->by_object['termgroup']);
-      unset($this->by_name['termgroup']);
+    if(class_available("termgroup")){
+      if(((!preg_match("/T/",$objects)) && (!preg_match("/W/",$objects)))&&(isset($this->by_object['termgroup']))){
+        $this->by_object['termgroup']->remove_from_parent();
+        unset($this->by_object['termgroup']);
+        unset($this->by_name['termgroup']);
+      }
     }
-    
+    if(class_available("termservice")){
+      if(!preg_match("/T/",$objects) &&(isset($this->by_object['termservice']))){
+        $this->by_object['termservice']->remove_from_parent();
+        unset($this->by_object['termservice']);
+        unset($this->by_name['termservice']);
+      }
+    }
+
     /* Remove ws tabs, if theres no ws left in the object list */
-    if((!preg_match("/W/",$objects))&&(isset($this->by_object['workservice']))){
-      $this->by_object['workservice']->remove_from_parent();
-      unset($this->by_object['workservice']);
-      unset($this->by_name['workservice']);
+    if(class_available("workservice")){
+      if((!preg_match("/W/",$objects))&&(isset($this->by_object['workservice']))){
+        $this->by_object['workservice']->remove_from_parent();
+        unset($this->by_object['workservice']);
+        unset($this->by_name['workservice']);
+      }
     }
-    if((!preg_match("/S/",$objects) && !preg_match("/W/",$objects))&&(isset($this->by_object['workstartup']))){
-      $this->by_object['workstartup']->remove_from_parent();
-      unset($this->by_object['workstartup']);
-      unset($this->by_name['workstartup']);
-      $this->by_object['faiSummary']->remove_from_parent();
-      unset($this->by_object['faiSummary']);
-      unset($this->by_name['faiSummary']);
+    if(class_available("workstartup")){
+      if((!preg_match("/S/",$objects) && !preg_match("/W/",$objects))&&(isset($this->by_object['workstartup']))){
+        $this->by_object['workstartup']->remove_from_parent();
+        unset($this->by_object['workstartup']);
+        unset($this->by_name['workstartup']);
+       if (isset($this->by_object['faiSummary'])){
+               $this->by_object['faiSummary']->remove_from_parent();
+               unset($this->by_object['faiSummary']);
+               unset($this->by_name['faiSummary']);
+       }
+      }
     }
   
     /* Create goPhoneAccount if theres an user with goPhoneAccount
      * but only if there is currently no queue enabled.
      */
-    if(!isset($this->by_object['phonequeue'])){
-      foreach($this->by_object['ogroup']->memberList as $dn => $val){
+    if(class_available("phonequeue")){
+      if(!isset($this->by_object['phonequeue'])){
+        foreach($this->by_object['ogroup']->memberList as $dn => $val){
 
-        if(isset($this->by_object['ogroup']->objcache[$dn])){
-          $obj = $this->by_object['ogroup']->objcache[$dn];
+          if(isset($this->by_object['ogroup']->objcache[$dn])){
+            $obj = $this->by_object['ogroup']->objcache[$dn];
 
-          if(isset($obj['objectClass'])){
-            if(in_array("goFonAccount",$obj['objectClass'])){
-              $this->by_name['phonequeue']= _("Phone queue");
-              $this->by_object['phonequeue']= new phonequeue($this->config, $this->dn);
-              $this->by_object['phonequeue']->parent= &$this;
-              break;
+            if(isset($obj['objectClass'])){
+              if(in_array("goFonAccount",$obj['objectClass'])){
+                $this->by_name['phonequeue']= _("Phone queue");
+                $this->by_object['phonequeue']= new phonequeue($this->config, $this->dn);
+                $this->by_object['phonequeue']->parent= &$this;
+                break;
+              }
             }
           }
         }
@@ -79,91 +121,124 @@ class ogrouptabs extends tabs
     }
 
     /* Add mail group tab , if there is curerntly no mail tab defined */ 
-    if((preg_match("/U/",$objects))&&(!isset($this->by_object['mailogroup']))){
-      if(isset($this->config->current['MAILMETHOD'])){
-        if (preg_match('/kolab/i', $this->config->current['MAILMETHOD'])){
-          $this->by_name['mailogroup']= _("Mail");
-          $this->by_object['mailogroup']= new mailogroup($this->config, $this->dn);
-          $this->by_object['mailogroup']->parent= &$this;
+    if(class_available("mailogroup")){
+      if((preg_match("/U/",$objects))&&(!isset($this->by_object['mailogroup']))){
+        if(isset($this->config->current['MAILMETHOD'])){
+          if (preg_match('/kolab/i', $this->config->current['MAILMETHOD'])){
+            $this->by_name['mailogroup']= _("Mail");
+            $this->by_object['mailogroup']= new mailogroup($this->config, $this->dn);
+            $this->by_object['mailogroup']->parent= &$this;
+          }
         }
       }
     }
 
     /* Add Terminal tab */
-    if(((preg_match("/T/",$objects)) || (preg_match("/W/",$objects)))&&(!isset($this->by_object['termgroup']))){
-      if(!isset($this->by_object['termgroup'])){
-        $this->by_name['termgroup']= _("System");
-        $this->by_object['termgroup']= new termgroup($this->config, $this->dn);
-        $this->by_object['termgroup']->inheritTimeServer = false;
-        $this->by_object['termgroup']->parent= &$this;
+    if(class_available("termgroup")){
+      if(((preg_match("/T/",$objects)) || (preg_match("/W/",$objects)))&&(!isset($this->by_object['termgroup']))){
+        if(!isset($this->by_object['termgroup'])){
+          $this->by_name['termgroup']= _("Systems");
+          $this->by_object['termgroup']= new termgroup($this->config, $this->dn);
+          $this->by_object['termgroup']->inheritTimeServer = false;
+          $this->by_object['termgroup']->parent= &$this;
+        }
       }
     }
-    
+    if(class_available("termservice")){
+      if(preg_match("/T/",$objects) &&(!isset($this->by_object['termservice']))){
+        if(!isset($this->by_object['termservice'])){
+          $this->by_name['termservice']= _("Devices");
+          $this->by_object['termservice']= new termservice($this->config, $this->dn,$this->by_object['ogroup']);
+        }
+      }
+    }
+
     /* Add Workstation tabs */
-    if((preg_match("/W/",$objects))&&(!isset($this->by_object['workservice']))){
+    if(class_available("workstartup")){
+      if((preg_match("/S/",$objects) || preg_match("/W/",$objects))&&(!isset($this->by_object['workstartup']))){
+        $this->by_name['workstartup']= _("Startup");
+        $this->by_object['workstartup']= new workstartup($this->config, $this->dn);
+        $this->by_object['workstartup']->parent= &$this;
+        $this->by_object['workstartup']->acl = "#all#";
+      }
+    }
+    if(class_available("workservice")){
+      if((preg_match("/W/",$objects))&&(!isset($this->by_object['workservice']))){
         $this->by_name['workservice']= _("Devices");
         $this->by_object['workservice']= new workservice($this->config, $this->dn);
         $this->by_object['workservice']->inheritTimeServer = false;
         $this->by_object['workservice']->parent= &$this;
         $this->by_object['workservice']->acl = "#all#";
+      }
     }
-    if((preg_match("/S/",$objects) || preg_match("/W/",$objects))&&(!isset($this->by_object['workstartup']))){
-        $this->by_name['workstartup']= _("Startup");
-        $this->by_object['workstartup']= new workstartup($this->config, $this->dn);
-        $this->by_object['workstartup']->parent= &$this;
-        $this->by_object['workstartup']->acl = "#all#";
-        $this->by_name['faiSummary']= _("Summary");
+    if(class_available("faiSummary")){
+      if((preg_match("/S/",$objects) || preg_match("/W/",$objects))&&(!isset($this->by_object['faiSummary']))){
+        $this->by_name['faiSummary']= _("FAI summary");
         $this->by_object['faiSummary']= new faiSummaryTab($this->config, $this->dn);
         $this->by_object['faiSummary']->parent= &$this;
+      }
     }
 
-    /* Add application tab if user or group is member in this object group*/
-    if((preg_match("/G/",$objects) || preg_match("/U/",$objects)) && !isset($this->by_name['appgroup'])){
-      $this->by_name['appgroup']= _("Application");
-      $this->by_object['appgroup']= new appgroup($this->config, $this->dn);
-      $this->by_object['appgroup']->acl = "#all#";
-      $this->by_object['appgroup']->parent= &$this;
+    /* Add environment tab if user or group is member in this object group*/
+    if(class_available("environment")){
+      if((preg_match("/G/",$objects) || preg_match("/U/",$objects)) && !isset($this->by_name['environment'])){
+        $this->by_name['environment']= _("Environment");
+        $this->by_object['environment']= new environment($this->config, $this->dn);
+        $this->by_object['environment']->acl = "#all#";
+        $this->by_object['environment']->parent= &$this;
+      }
     }
 
-    /* Remove application tab if not required any longer */
-    if(!preg_match("/G/",$objects) && !preg_match("/U/",$objects) && isset($this->by_name['appgroup'])){
-      $this->by_object['appgroup']->remove_from_parent();
-      unset($this->by_name['appgroup']);
-      unset($this->by_object['appgroup']);
+    /* Remove environment tab if not required any longer */
+    if(class_available("environment")){
+      if(!preg_match("/G/",$objects) && !preg_match("/U/",$objects) && isset($this->by_name['environment'])){
+        $this->by_object['environment']->remove_from_parent();
+        unset($this->by_name['environment']);
+        unset($this->by_object['environment']);
+      }
     }
 
-    /* Add environment tab if user or group is member in this object group*/
-    if((preg_match("/G/",$objects) || preg_match("/U/",$objects)) && !isset($this->by_name['environment'])){
-      $this->by_name['environment']= _("Environment");
-      $this->by_object['environment']= new environment($this->config, $this->dn);
-      $this->by_object['environment']->acl = "#all#";
-      $this->by_object['environment']->parent= &$this;
+    /* Add application tab if user or group is member in this object group*/
+    if(class_available("appgroup")){
+      if((preg_match("/G/",$objects) || preg_match("/U/",$objects)) && !isset($this->by_name['appgroup'])){
+        $this->by_name['appgroup']= _("Applications");
+        $this->by_object['appgroup']= new appgroup($this->config, $this->dn);
+        $this->by_object['appgroup']->acl = "#all#";
+        $this->by_object['appgroup']->parent= &$this;
+      }
     }
 
-    /* Remove environment tab if not required any longer */
-    if(!preg_match("/G/",$objects) && !preg_match("/U/",$objects) && isset($this->by_name['environment'])){
-      $this->by_object['environment']->remove_from_parent();
-      unset($this->by_name['environment']);
-      unset($this->by_object['environment']);
+    /* Remove application tab if not required any longer */
+    if(class_available("appgroup")){
+      if(!preg_match("/G/",$objects) && !preg_match("/U/",$objects) && isset($this->by_name['appgroup'])){
+        $this->by_object['appgroup']->remove_from_parent();
+        unset($this->by_name['appgroup']);
+        unset($this->by_object['appgroup']);
+      }
     }
+
     /* Move reference tab to second position from right */
-    if(isset($this->by_name['acl'])){
-      $tmp = $this->by_name['acl'];
-      unset($this->by_name['acl']);
-      $this->by_name['acl'] = $tmp;
-    }
-  
-    /* Move reference tab to last position*/
-    if(isset($this->by_name['reference'])){
-      $tmp = $this->by_name['reference'];
-      unset($this->by_name['reference']);
-      $this->by_name['reference'] = $tmp;
-    }
+    if(class_available("acl")){
+      if(isset($this->by_name['acl'])){
+        $tmp = $this->by_name['acl'];
+        unset($this->by_name['acl']);
+        $this->by_name['acl'] = $tmp;
+      }
 
-    /* Reset acls */
-    $this->set_acl_base($this->base);
-    foreach($this->by_object as $name => $obj){
-      $this->by_object[$name]->set_acl_category($this->acl_category);
+      /* Move reference tab to last position*/
+      if(class_available("reference")){
+        if(isset($this->by_name['reference'])){
+          $tmp = $this->by_name['reference'];
+          unset($this->by_name['reference']);
+          $this->by_name['reference'] = $tmp;
+        }
+      }
+
+      /* Reset acls */
+      $this->set_acl_base($this->base);
+      foreach($this->by_object as $name => $obj){
+        $this->by_object[$name]->set_acl_category($this->acl_category);
+      }
     }
   }
 
@@ -190,39 +265,50 @@ class ogrouptabs extends tabs
       switch ($objects[$n]){
         case "T":
           /* Add a terminal tab */
-          $this->by_name['termgroup']= _("Terminals");
-          $this->by_object['termgroup']= new termgroup($this->config, $this->dn);
-          $this->by_object['termgroup']->parent= &$this;
+          if(class_available("termgroup")){
+            $this->by_name['termgroup']= _("Terminals");
+            $this->by_object['termgroup']= new termgroup($this->config, $this->dn);
+            $this->by_object['termgroup']->parent= &$this;
+          }
 
+          if(class_available("termservice")){
+            $this->by_name['termservice']= _("Devices");
+            $this->by_object['termservice']= new termservice($this->config, $this->dn,$this->by_object['ogroup']);
+          }
           break;
 
           case "U":
             /* Append a PhoneQueue, if objectClass = goFonAccount */
             $use = false;
-          foreach($this->by_object['ogroup']->memberList as $dn => $val){
 
-            $obj = $this->by_object['ogroup']->objcache[$dn];
-            
-            if(isset($obj['objectClass'])){
-              if(in_array("goFonAccount",$obj['objectClass'])){
-                $use = true; 
+          /* We found goFonAccount in users objectClasses*/
+          if(class_available("phonequeue")){
+            foreach($this->by_object['ogroup']->memberList as $dn => $val){
+
+              $obj = $this->by_object['ogroup']->objcache[$dn];
+
+              if(isset($obj['objectClass'])){
+                if(in_array("goFonAccount",$obj['objectClass'])){
+                  $use = true; 
+                }
               }
             }
-          }
 
-          /* We found goFonAccount in users objectClasses*/
-          if($use){
-            $this->by_name['phonequeue']= _("Phone queue");
-            $this->by_object['phonequeue']= new phonequeue($this->config, $this->dn);
-            $this->by_object['phonequeue']->parent= &$this;
+            if($use){
+              $this->by_name['phonequeue']= _("Phone queue");
+              $this->by_object['phonequeue']= new phonequeue($this->config, $this->dn);
+              $this->by_object['phonequeue']->parent= &$this;
+            } 
           } 
  
           /* Add a user tab used for mail distribution lists */
-          if(isset($this->config->current['MAILMETHOD'])){
-            if (preg_match('/kolab/i', $this->config->current['MAILMETHOD'])){
-              $this->by_name['mailogroup']= _("Mail");
-              $this->by_object['mailogroup']= new mailogroup($this->config, $this->dn);
-              $this->by_object['mailogroup']->parent= &$this;
+          if(class_available("mailogroup")){
+            if(isset($this->config->current['MAILMETHOD'])){
+              if (preg_match('/kolab/i', $this->config->current['MAILMETHOD'])){
+                $this->by_name['mailogroup']= _("Mail");
+                $this->by_object['mailogroup']= new mailogroup($this->config, $this->dn);
+                $this->by_object['mailogroup']->parent= &$this;
+              }
             }
           }
 
@@ -292,10 +378,6 @@ class ogrouptabs extends tabs
     }
 
     tabs::save();
-
-    /* Fix tagging if needed */
-               $baseobject->dn= $new_dn;
-    $baseobject->handle_object_tagging();
   }
 
   function getCopyDialog()