Code

Avoid call of release stuff if dn is 'new'
[gosa.git] / plugins / admin / groups / class_groupApplication.inc
index 4727a3ea3d736320f2dd2625108c673f91e273c1..edb9cfae3061b113473562ff5d4c40473bd19aa8 100644 (file)
@@ -27,14 +27,44 @@ class appgroup extends plugin
   var $attributes               = array("gosaMemberApplication");
   var $objectclasses            = array("gosaApplicationGroup");
 
-  var $Release                  = "/";
+  var $FAIrelease               = "/";
+  var $InitialFAIrelease           = "/";
+  var $Releases                 = array();
   var $enableReleaseManagement  = false;
 
+  var $AllAppsForRelease        = array();
+  var $AllAppsForReleaseParameter = array();
+
+  var $CopyPasteVars            = array("Categories");
+
 
   function appgroup ($config, $dn= NULL)
   {
+   
+    /* 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);
 
+    /* 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])){
       $this->gosaMemberApplication = array();
@@ -56,10 +86,10 @@ class appgroup extends plugin
     }
 
     /* Parse MemberApplication*/
-    $tmp = array();
-    $tmp2 = array();
-    $prios = array();
-    $cats = array();
+    $tmp    = array();
+    $tmp2   = array();
+    $prios  = array();
+    $cats   = array();
 
     foreach($this->gosaMemberApplication as $memberApp){
       if(preg_match("/\|/i",$memberApp)){
@@ -113,12 +143,10 @@ 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();
+    /* Get required release informations */
+    if($this->enableReleaseManagement){
+      $this->InitialFAIrelease = $this->FAIrelease;
+      $this->Releases       = $this->getReleases();
     }
   }
 
@@ -154,6 +182,64 @@ class appgroup extends plugin
     return(-1);
   }
 
+  function diffAppsInReleases()
+  {
+    /* Only diff if it is required 
+     */
+    $ret =array();
+
+    /* 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 (old & new) have no 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;
+
+            /* Old release had no gosaApplicationParameter but new got some
+             */
+          }elseif((!isset($old['gosaApplicationParameter'])) && (isset($new['gosaApplicationParameter']))){
+            $ret[$entry['App']]  = true;
+          }
+        }
+      }
+    }
+    return($ret);
+  }
 
   /* TRansports the geiven Arraykey one position up*/
   function ArrayUp($atr,$attrs)
@@ -203,12 +289,12 @@ class appgroup extends plugin
     }
   }
 
-  
+
   function catDown($id)
   {
-   /* Get all cats depinding on current dir */
+    /* Get all cats depinding on current dir */
     $cats = $this->GetSubdirs($this->curCatDir);
-     
+
     $newcats =$this->ArrayDown($id,$cats);
 
     foreach($newcats as $cat => $name){
@@ -229,7 +315,7 @@ class appgroup extends plugin
     foreach ($apps as $appkey => $name){
       $appsA[$name['App']] =$name['App'];
     }
+
     $result = $this->ArrayUp($appl,$appsA);
 
     $ret = array();
@@ -259,8 +345,8 @@ class appgroup extends plugin
     $this->gosaMemberApplication[$cat] = $ret;
   } 
 
-   
-  
+
+
   function AddSeperator($id)
   {
     $found  = false;
@@ -281,8 +367,9 @@ class appgroup extends plugin
 
   function execute()
   {
-         /* Call parent execute */
-       plugin::execute();
+    /* Call parent execute */
+    plugin::execute();
+
 
     if((isset($_GET['act']))&&($_GET['act']=="depopen")){
       $dep = base64_decode($_GET['depid']);  
@@ -322,8 +409,8 @@ class appgroup extends plugin
 
 
     /* Add Categorie */ 
-  
-    
+
+
     if((isset($_POST['AddCat']))&&(isset($_POST['CatName']))&&(!empty($_POST['CatName']))){
 
       if(preg_match("/[\\\\\/]/i",$_POST['CatName'])){
@@ -341,6 +428,8 @@ class appgroup extends plugin
 
 
     $this->reload();
+
+    $this->diffAppsInReleases();
     $only_once = false;
     foreach($_POST as $name => $value){
       
@@ -403,8 +492,8 @@ class appgroup extends plugin
 
         $tmp = search_config($this->config->data,"faiManagement","CLASS");
         if(!empty($tmp)){
-          $tmp  = array_flip($this->getReleases());
-          $base = $tmp[$this->Release];
+          $tmp = array_flip($this->Releases);
+          $base = $tmp[$this->FAIrelease];
 
           $ldap->cd($this->config->current['BASE']);
           $ldap->search("(&(objectClass=gosaApplication)(cn=$appname))",array("gosaApplicationParameter"));
@@ -464,7 +553,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'];
@@ -512,13 +603,14 @@ 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
      */
 
+    //FIXME: Why do we not use get_list here? It's the same code all over the time...
     $ldap = $this->config->get_ldap_link();
     $ldap->cd($this->curbase) ;
     $ldap->ls("(objectClass=gosaDepartment)"); 
@@ -529,10 +621,11 @@ class appgroup extends plugin
     }
     ksort($tmp);
     foreach($tmp 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);
       }
     }
 
@@ -587,7 +680,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'>";
@@ -629,14 +722,44 @@ class appgroup extends plugin
       "&nbsp;<input type='image' src='images/edittrash.png' title='"._("Delete entry")."' name='DelApp_%s' value='%s' alt='{t}delete{/t}' >";
     $edit=      "&nbsp;<input type='image' src='images/edit.png' title='"._("Edit entry")."' name='EdiApp_%s' value='%s' alt='{t}edit{/t}' >";
 
+    $Differences = $this->diffAppsInReleases();
+
     if(isset($this->gosaMemberApplication[$this->curCatDir])){
       foreach($this->gosaMemberApplication[$this->curCatDir] as $cat => $entry){
+
+        
         if(preg_match("/__SEPARATOR__/",$entry['App'])){
           $div2 ->AddEntry(array(array("string"=>$separator),
                 array("string"=>preg_replace("/\%s/",htmlentities($entry['App']),$upudown),"attach"=>"align='right' style='border-right:0px;'")));
         }else{
-          $div2 ->AddEntry(array(array("string"=>sprintf($app,$entry['App'])),
-                array("string"=>preg_replace("/\%s/",htmlentities($entry['App']),$sep.$edit.$upudown),"attach"=>"align='right' style='border-right:0px;'")));
+
+          $image = "";
+          /* Check if application was available within selected release
+           *  or application list if release management is not active
+           */
+          if(!in_array($entry['App'],$this->AllAppsForRelease)){
+
+            /*  release managent is active
+             */
+            if(!$this->enableReleaseManagement){
+              $image = "<img class='center' src='images/select_invalid_application.png' 
+                          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->FAIrelease)."'>&nbsp;";
+            }
+      
+          }elseif(isset($Differences[$entry['App']]) && ($Differences[$entry['App']] == true)) {
+            $entry['App'].=" <i>["._("Check parameter")."]</i>";
+              $image = "<img class='center' src='images/select_invalid_application.png' 
+                          title='"._("This application has changed parameters.")."'>&nbsp;";
+          }else{
+            $image = "<img class='center' src='images/select_application.png' alt=\"\">&nbsp;"; 
+          }
+          
+          $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;'")));
         }
       }
     }
@@ -648,11 +771,8 @@ class appgroup extends plugin
     $smarty->assign("enableReleaseManagement",$this->enableReleaseManagement);
  
     if($this->enableReleaseManagement){
-      $smarty->assign("Release", $this->Release);
-
-      $tmp = $this->getReleases();
-
-      $smarty->assign("Releases",   $tmp);
+      $smarty->assign("FAIrelease",  $this->FAIrelease);
+      $smarty->assign("Releases", $this->Releases);
 
       if(count($this->used_apps)){
         $smarty->assign("ReleaseSelectAble", false);
@@ -660,6 +780,7 @@ class appgroup extends plugin
         $smarty->assign("ReleaseSelectAble", true);
       }
     }
+        $smarty->assign("ReleaseSelectAble", true);
 
     /* Show main page */
     if ($this->dialog){
@@ -671,46 +792,39 @@ class appgroup extends plugin
     return ($display);
   }
 
+
   function getReleases()
   {
-  
-    if(isset($this->base)){
-      $base = $this->base;
-    }else{
-      $base = $this->parent->by_object['group']->base;
-    }
-
-    $dn   = "ou=apps,".$base;
-    $ret  = array();
-
-    $ret ["ou=apps,".$base] = "/";
-
+    $dn   = "ou=apps,".$this->config->current['BASE'];
     $ldap = $this->config->get_ldap_link();
     $ldap->cd($dn);
-
     $ldap->search("objectClass=organizationalUnit",array("ou"));
-
+    $ret =array();
     while($attrs = $ldap->fetch()){
-      $str = str_replace($dn,"",$attrs['dn']);
-      $tmp = array_reverse( split("ou=",$str));
-      $str = "";
-      foreach($tmp as $val){
-        $val = trim(preg_replace("/,/","",$val));
-        if(empty($val)) break;
-        $str .= "/".$val;
-      }
-      if(!empty($str)){
-        $ret[$attrs['dn']]= preg_replace("/^\//","",$str);
+      if(preg_match("/ou=apps,/",$attrs['dn'])){
+        $bb = preg_replace("/ou=apps,.*/","",$attrs['dn']);
+        $parts = array_reverse(split("ou=",$bb));
+
+        $str ="";
+        foreach($parts as $part){
+          if(empty($part)) {
+            continue;
+          }
+          $str .= str_replace(",","",$part)."/";
+        }    
+        $name = preg_replace("/\/$/","",$str);
+        if(empty($name)) {
+          $name ="/";
+        }
+        $ret[$attrs['dn']] = $name;
       }
     }
     return($ret);
   }
+
   function save_object()
   {
-    if(isset($_POST ['Release'])){
-      $this->Release = $_POST['Release'];
-    }
+    plugin::save_object();
   }
  
 
@@ -767,7 +881,7 @@ $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());
 
@@ -802,17 +916,16 @@ $ldap->modify ($this->attrs);
     if(!empty($tmp)){
       $this->enableReleaseManagement = true;
 
-      $tmp = array_flip($this->getReleases());
-      if(isset($tmp[$this->Release])){
-        $base =  $tmp[$this->Release];
+      $tmp = array_flip($this->Releases);
+      if(isset($tmp[$this->FAIrelease])){
+        $base =  $tmp[$this->FAIrelease];
       }else{
-
         $k = key($tmp);
         $r = $tmp[$k];
-    
-        print_red(sprintf(_("Can't resolve the release name '%s', setting release name to '%s'. "),$this->Release,$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->FAIrelease,$k));
       }
 
       $base = preg_replace("/ou=apps,.*$/","ou=apps,".$this->curbase,$base);
@@ -836,6 +949,32 @@ $ldap->modify ($this->attrs);
           $attrs["cn"][0];
       }
     }
+
+    $ldap->cd($this->config->current['BASE']);
+    $ldap->search("objectClass=gosaApplication",array("gosaApplicationParameter","cn"));
+    $tmp = search_config($this->config->data,"faiManagement","CLASS");
+    $this->AllAppsForRelease = array();
+    if(!empty($tmp)){
+
+      $tmp = array_flip($this->Releases);
+
+      while($attrs = $ldap->fetch()){
+        
+        $testdn = preg_replace("/ou=apps,.*$/","ou=apps",$attrs['dn']);
+        $testdn = preg_replace("/^[^,]+/","",$testdn);
+        $testdn = preg_replace("/^,/","",$testdn);
+
+        if($testdn == preg_replace("/ou=apps,.*$/","ou=apps",$tmp[$this->FAIrelease])){
+          $this->AllAppsForRelease[$attrs['dn']] = $attrs['cn'][0];
+          $this->AllAppsForReleaseParameter[$this->FAIrelease][$attrs['cn'][0]] = $attrs;
+        }
+      }
+    }else{
+      while($attrs = $ldap->fetch()){
+        $this->AllAppsForRelease[$attrs['dn']] = $attrs['cn'][0];
+      }
+    }
+
     natcasesort ($this->apps);
     reset ($this->apps);
 
@@ -900,34 +1039,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: