Code

More speed optimizations
[gosa.git] / plugins / admin / groups / class_groupApplication.inc
index ebcaf46f89d37e862753e8434a95db0aaefae04a..4a4fde162c069a21fe595b08f4b95b940961ac92 100644 (file)
@@ -24,20 +24,47 @@ class appgroup extends plugin
   var $curCatDepth              =0;         //
 
   /* attribute list for save action */
-  var $attributes               = array("gosaMemberApplication");
+  var $attributes               = array("gosaMemberApplication","gosaApplicationParameter");
   var $objectclasses            = array("gosaApplicationGroup");
 
-  var $Release                  = "/";
-  var $InitialRelease           = "/";
+  var $FAIrelease               = "/";
+  var $InitialFAIrelease           = "/";
   var $Releases                 = array();
   var $enableReleaseManagement  = false;
 
   var $AllAppsForRelease        = array();
   var $AllAppsForReleaseParameter = array();
 
-  function appgroup ($config, $dn= NULL)
+  var $CopyPasteVars            = array("Categories");
+  var $gosaApplicationParameter ;
+
+
+  function appgroup ($config, $dn= NULL, $parent= NULL)
   {
-    plugin::plugin ($config, $dn);
+   
+    /* prepare group app for release management */ 
+    $tmp = search_config($config->data,"faiManagement","CLASS");
+    if(!empty($tmp)){
+      $this->enableReleaseManagement = true;
+      $this->objectclasses [] = "FAIreleaseTag";
+      $this->attributes[] =  "FAIrelease";
+    }
+
+    plugin::plugin ($config, $dn, $parent);
+
+    /* In some case of old applikations with old release tag saving, we 
+        must reassign is_account state.
+       (Or if release management wasn't activated before creating this app) */
+    if($this->enableReleaseManagement){
+  
+      /* Release management is activated && this is a valid group app account,
+          but no release class was found, so activate is_account flag  */
+      if($dn != "new" && ( in_array("gosaApplicationGroup",$this->attrs['objectClass'])) && 
+         (!in_array("FAIreleaseTag",$this->attrs['objectClass']))){
+        $this->is_account =true;
+      }
+    }
+    
 
     /* Load member applications */
     if (isset ($this->attrs["gosaMemberApplication"][0])){
@@ -117,13 +144,9 @@ class appgroup extends plugin
     $this->gosaMemberApplication = $tmp;
     $this->curbase = $this->config->current['BASE'];
     
-    /* Check if we should enable the release selection 
-     */
-    $tmp = search_config($config->data,"faiManagement","CLASS");
-    if(!empty($tmp)){
-      $this->enableReleaseManagement = true;
-      $this->Release        = $this->getReleaseName();
-      $this->InitialRelease = $this->Release;
+    /* Get required release informations */
+    if($this->enableReleaseManagement){
+      $this->InitialFAIrelease = $this->FAIrelease;
       $this->Releases       = $this->getReleases();
     }
   }
@@ -165,35 +188,54 @@ class appgroup extends plugin
     /* Only diff if it is required 
      */
     $ret =array();
-    if($this->Release != $this->InitialRelease){
-      foreach($this->gosaMemberApplication[$this->curCatDir] as $entry){
-        if(in_array($entry['App'],$this->AllAppsForRelease)){ 
-          $old = $this->AllAppsForReleaseParameter[$this->InitialRelease][$entry['App']];
-          $new = $this->AllAppsForReleaseParameter[$this->Release][$entry['App']];
 
-          /*  Both (old & new) have no gosaApplicationParameter
-           */
-          if((!isset($old['gosaApplicationParameter'])) && (!isset($new['gosaApplicationParameter']))){
-            $ret[$entry['App']] = false; 
+    /* If current release has changed */
+    if($this->FAIrelease != $this->InitialFAIrelease){
+
+      /* Walk through all apps which are currently displayed */
+      if(isset($this->gosaMemberApplication[$this->curCatDir])){
+
+        foreach($this->gosaMemberApplication[$this->curCatDir] as $entry){
+
+          /* If application is also available in new release, check if parameter differs */
+          if(in_array($entry['App'],$this->AllAppsForRelease)){ 
+
+            $old = array();   // Old application parameter
+            $new = array();   // New parameters 
+
+            /* There are possibly no parameters specified */
+            if(isset($this->AllAppsForReleaseParameter[$this->InitialFAIrelease][$entry['App']])){
+              $old = $this->AllAppsForReleaseParameter[$this->InitialFAIrelease][$entry['App']];
+            }
+
+            if(isset($this->AllAppsForReleaseParameter[$this->FAIrelease][$entry['App']])){
+              $new = $this->AllAppsForReleaseParameter[$this->FAIrelease][$entry['App']];
+            }
 
-            /* Both got gosaApplicationParameter
+            /*  Both (old & new) have no gosaApplicationParameter
              */
-          }elseif((isset($old['gosaApplicationParameter'])) && (isset($new['gosaApplicationParameter'])))
-          if(array_differs($old['gosaApplicationParameter'],$new['gosaApplicationParameter'])){
+            if((!isset($old['gosaApplicationParameter'])) && (!isset($new['gosaApplicationParameter']))){
+              $ret[$entry['App']] = false; 
+
+              /* Both got gosaApplicationParameter
+               */
+            }elseif((isset($old['gosaApplicationParameter'])) && (isset($new['gosaApplicationParameter']))){
+              if(array_differs($old['gosaApplicationParameter'],$new['gosaApplicationParameter'])){
+                $ret[$entry['App']]  = true;
+              }else{
+                $ret[$entry['App']]  = false;
+              }
+            }
+            /* Initialy had gosaApplicationParameter bot in new release not 
+             */
+          }elseif((isset($old['gosaApplicationParameter'])) && (!isset($new['gosaApplicationParameter']))){
             $ret[$entry['App']]  = true;
-          }else{
-            $ret[$entry['App']]  = false;
-          }
 
-          /* Initialy had gosaApplicationParameter bot in new release not 
-           */
-        }elseif((isset($old['gosaApplicationParameter'])) && (!isset($new['gosaApplicationParameter']))){
-          $ret[$entry['App']]  = true;
-
-          /* Old release had no gosaApplicationParameter but new got some
-           */
-        }elseif((!isset($old['gosaApplicationParameter'])) && (isset($new['gosaApplicationParameter']))){
-          $ret[$entry['App']]  = true;
+            /* Old release had no gosaApplicationParameter but new got some
+             */
+          }elseif((!isset($old['gosaApplicationParameter'])) && (isset($new['gosaApplicationParameter']))){
+            $ret[$entry['App']]  = true;
+          }
         }
       }
     }
@@ -329,7 +371,6 @@ class appgroup extends plugin
     /* Call parent execute */
     plugin::execute();
 
-
     if((isset($_GET['act']))&&($_GET['act']=="depopen")){
       $dep = base64_decode($_GET['depid']);  
       if(isset($this->config->idepartments[$dep])){
@@ -413,9 +454,15 @@ class appgroup extends plugin
 
         foreach($this->gosaMemberApplication as $key =>  $cat){
           foreach($cat as $key2 => $app){
+            
             if($app['App'] == $val){
               unset($this->gosaMemberApplication[$key][$key2]);
               if(isset($this->used_apps[$val])){
+                foreach($this->getParameters($val) as $para){
+                  if(isset($this->appoption[$para])){
+                    unset($this->appoption[$para]);
+                  }
+                }
                 unset($this->used_apps[$val]);
               }
             }
@@ -452,7 +499,7 @@ class appgroup extends plugin
         $tmp = search_config($this->config->data,"faiManagement","CLASS");
         if(!empty($tmp)){
           $tmp = array_flip($this->Releases);
-          $base = $tmp[$this->Release];
+          $base = $tmp[$this->FAIrelease];
 
           $ldap->cd($this->config->current['BASE']);
           $ldap->search("(&(objectClass=gosaApplication)(cn=$appname))",array("gosaApplicationParameter"));
@@ -462,11 +509,10 @@ class appgroup extends plugin
               $found = $attrs['dn'];
             }
           }
-          $ldap->cat($found);
+          $ldap->cat($found, array("gosaApplicationParameter"));
         }else{
           $ldap->cd($this->config->current['BASE']);
           $ldap->search("(&(objectClass=gosaApplication)(cn=$appname))",array("gosaApplicationParameter"));
-
         }
 
 
@@ -512,7 +558,9 @@ class appgroup extends plugin
         }
       }
     }
+
     $this->reload();
+
     /* Add group with post */
     if((isset($_GET['act']))&&($_GET['act']=="add")){
       $this->used_apps[$_GET['id']]= $_GET['id'];
@@ -560,33 +608,21 @@ class appgroup extends plugin
 
     $div = new DivSelectBox("appgroup");    
 
-    $div->SetHeight(400);
+    $div->SetHeight(300);
 
-    /* NEW LIST MANAGMENT
-     * We also need to search for the departments
-     * So we are able to navigate like in konquerer
-     */
-
-    $ldap = $this->config->get_ldap_link();
-    $ldap->cd($this->curbase) ;
-    $ldap->ls("(objectClass=gosaDepartment)"); 
-    $departments= array();
-    $tmp = array();
-    while ($value = $ldap->fetch()){
-      $tmp[strtolower($value['dn']).$value['dn']]=$value;
-    }
-    ksort($tmp);
-    foreach($tmp as $value){
+    /* get departments */  
+    $ui = get_userinfo();
+    $departments = array();
+    $res = get_list("(objectClass=gosaDepartment)",$ui->subtreeACL,$this->curbase,array("description","cn","ou"),GL_SIZELIMIT);
+    foreach($res as $value){
+      $fdn= @LDAP::fix($value['dn']);
       if($value["description"][0]!=".."){
-        $departments[$value['dn']]=convert_department_dn($value['dn'])." - [".$value["description"][0]."]";
+        $departments[$value['dn']]= convert_department_dn($fdn)." - [".$value["description"][0]."]";
       }else{
-        $departments[$value['dn']]=convert_department_dn($value['dn']);
+        $departments[$value['dn']]=convert_department_dn($fdn);
       }
     }
 
-    /* END NEW LIST MANAGMENT
-     */
-
     $linkopen = "<a href='?plug=".$_GET['plug']."&amp;act=depopen&amp;depid=%s'>%s</a>";
     $linkadd  = "<a href='?plug=".$_GET['plug']."&amp;act=add&amp;id=%s'>%s</a>";
 
@@ -635,7 +671,7 @@ class appgroup extends plugin
     }
 
     $div2 = new DivSelectBox("appgroup");
-    $div2->SetHeight(400);
+    $div2->SetHeight(300);
 
     $linkopen       = "<img class='center' src='images/folder.png' alt=\"\">&nbsp;<a href='?plug=".$_GET['plug']."&amp;act=open&amp;id=%s'>%s</a>";
     $catremove      = "&nbsp;<input type='image' src='images/edittrash.png' title='"._("Delete entry")."' name='DelCat_%s' value='%s'>";
@@ -701,7 +737,7 @@ class appgroup extends plugin
                           title='"._("This application is no longer available.")."'>&nbsp;";
             }else{
               $image = "<img class='center' src='images/select_invalid_application.png' 
-                          title='".sprintf(_("This application is not available in any release named %s."),$this->Release)."'>&nbsp;";
+                          title='".sprintf(_("This application is not available in any release named %s."),$this->FAIrelease)."'>&nbsp;";
             }
       
           }elseif(isset($Differences[$entry['App']]) && ($Differences[$entry['App']] == true)) {
@@ -712,7 +748,7 @@ class appgroup extends plugin
             $image = "<img class='center' src='images/select_application.png' alt=\"\">&nbsp;"; 
           }
           
-          $div2 ->AddEntry(array(array("string"=>sprintf($image."%s",$entry['App'])),
+          $div2->AddEntry(array(array("string"=>sprintf($image."%s",$entry['App'])),
                 array("string"=>preg_replace("/\%s/",htmlentities($entry['App']),$sep.$edit.$upudown),
                       "attach"=>"align='right' style='width:100px;border-right:0px;'")));
         }
@@ -726,7 +762,7 @@ class appgroup extends plugin
     $smarty->assign("enableReleaseManagement",$this->enableReleaseManagement);
  
     if($this->enableReleaseManagement){
-      $smarty->assign("Release",  $this->Release);
+      $smarty->assign("FAIrelease",  $this->FAIrelease);
       $smarty->assign("Releases", $this->Releases);
 
       if(count($this->used_apps)){
@@ -750,10 +786,10 @@ class appgroup extends plugin
 
   function getReleases()
   {
-    $dn   = "ou=apps,".$this->config->current['BASE'];
+    $dn   = $this->config->current['BASE'];
     $ldap = $this->config->get_ldap_link();
     $ldap->cd($dn);
-    $ldap->search("objectClass=organizationalUnit",array("ou"));
+    $ldap->search("(&(objectClass=organizationalUnit)(objectClass=FAIbranch))",array("ou"));
     $ret =array();
     while($attrs = $ldap->fetch()){
       if(preg_match("/ou=apps,/",$attrs['dn'])){
@@ -779,9 +815,7 @@ class appgroup extends plugin
 
   function save_object()
   {
-    if(isset($_POST ['Release'])){
-      $this->Release = $_POST['Release'];
-    }
+    plugin::save_object();
   }
  
 
@@ -789,14 +823,13 @@ class appgroup extends plugin
   {
     plugin::remove_from_parent();
 
-    $this->attrs["gosaMemberApplication"]= array();
-
     $ldap= $this->config->get_ldap_link();
     $ldap->cd($this->dn);
     $this->cleanup();
-$ldap->modify ($this->attrs); 
+    
+    $ldap->modify ($this->attrs); 
 
-    show_ldap_error($ldap->get_error());
+    show_ldap_error($ldap->get_error(), _("Removing application information failed"));
 
     /* Optionally execute a command after we're done */
     $this->handle_post_events("remove");
@@ -811,6 +844,7 @@ $ldap->modify ($this->attrs);
     /* Copy members */
     $this->Categories[""]=""; 
     $this->attrs["gosaMemberApplication"]= array();
+    $this->attrs["gosaApplicationParameter"]= array();
     foreach($this->Categories as $name => $cats){
       $i =0;
       if(isset($this->gosaMemberApplication[$name])){
@@ -838,9 +872,9 @@ $ldap->modify ($this->attrs);
     $ldap= $this->config->get_ldap_link();
     $ldap->cd($this->dn);
     $this->cleanup();
-$ldap->modify ($this->attrs); 
+    $ldap->modify ($this->attrs); 
 
-    show_ldap_error($ldap->get_error());
+    show_ldap_error($ldap->get_error(), _("Saving application information failed"));
 
     /* Optionally execute a command after we're done */
     if ($this->initially_was_account == $this->is_account){
@@ -874,15 +908,15 @@ $ldap->modify ($this->attrs);
       $this->enableReleaseManagement = true;
 
       $tmp = array_flip($this->Releases);
-      if(isset($tmp[$this->Release])){
-        $base =  $tmp[$this->Release];
+      if(isset($tmp[$this->FAIrelease])){
+        $base =  $tmp[$this->FAIrelease];
       }else{
         $k = key($tmp);
         $r = $tmp[$k];
-        $this->Release = $k;
+        $this->FAIrelease = $k;
         $base = $r; 
     
-        print_red(sprintf(_("Can't resolve the release name '%s', setting release name to '%s'. Possibly the objects base has changed."),$this->Release,$k));
+        print_red(sprintf(_("Can't resolve the release name '%s', setting release name to '%s'. Possibly the objects base has changed."),$this->FAIrelease,$k));
       }
 
       $base = preg_replace("/ou=apps,.*$/","ou=apps,".$this->curbase,$base);
@@ -921,9 +955,9 @@ $ldap->modify ($this->attrs);
         $testdn = preg_replace("/^[^,]+/","",$testdn);
         $testdn = preg_replace("/^,/","",$testdn);
 
-        if($testdn == preg_replace("/ou=apps,.*$/","ou=apps",$tmp[$this->Release])){
+        if($testdn == preg_replace("/ou=apps,.*$/","ou=apps",$tmp[$this->FAIrelease])){
           $this->AllAppsForRelease[$attrs['dn']] = $attrs['cn'][0];
-          $this->AllAppsForReleaseParameter[$this->Release][$attrs['cn'][0]] = $attrs;
+          $this->AllAppsForReleaseParameter[$this->FAIrelease][$attrs['cn'][0]] = $attrs;
         }
       }
     }else{
@@ -970,6 +1004,27 @@ $ldap->modify ($this->attrs);
     $this->is_modified= TRUE;
   }
 
+  function getParameters($app)
+  {
+    $tmp = $this->getReleases();
+    $ret = array();
+    if(in_array($this->FAIrelease,$tmp)){
+      $tmp2 = array_flip($tmp);
+      $base = $tmp2[$this->FAIrelease];
+      $ldap = $this->config->get_ldap_link();
+      $ldap->cd($this->config->current['BASE']);
+      $ldap->search("(&(objectClass=gosaApplication)(cn=".$app.")(gosaApplicationParameter=*))",array("gosaApplicationParameter"));
+      if($ldap->count()){
+        $attrs = $ldap->fetch();
+        for($i = 0 ; $i < $attrs['gosaApplicationParameter']['count'] ; $i ++ ){
+          $name = preg_replace("/:.*$/","",$attrs['gosaApplicationParameter'][$i]);
+          $ret[$name] = $name;
+        } 
+      }
+    }
+    return($ret);
+  }
+
   function GetSubdirs($dir)
   {
     $ret = array();
@@ -996,34 +1051,6 @@ $ldap->modify ($this->attrs);
     }
   return($ret);
   }
-
-
-  /* Get selected release name.
-   *  it is written in the description tag 
-   *  within ... (.*)$
-   */
-  function getReleaseName()
-  {
-  
-    if(isset($this->parent)){
-      $base = $this->parent->by_object['group'];
-    }else{
-      $base = $this;
-    }
-
-    if(isset($base->attrs['description'][0])){
-      $desc = $base->attrs['description'][0];
-    }else{
-      $desc = "";
-    }
-    if(preg_match("/\(.*\)$/",$desc)){
-      $str = preg_replace("/^.*\((.*)\)$/","\\1",$desc);
-    }else{
-      $str = "/";
-    }
-    return($str);  
-  }
 }
 
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: