Code

Added option to divlist.
[gosa.git] / plugins / admin / systems / class_servRepository.inc
index 965746d21dc78b1fdab6a85dd7cd26640a7eb60e..c46d64d28498c89c42c65b81d4176965cbf8c06e 100644 (file)
@@ -2,11 +2,6 @@
 
 class servrepository extends plugin
 {
-  /* CLI vars */
-  var $cli_summary          = "Manage server basic objects";
-  var $cli_description      = "Some longer text\nfor help";
-  var $cli_parameters       = array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
-
   /* attribute list for save action */
   //  var $ignore_account         = TRUE;
   var $attributes             = array("FAIrepository");
@@ -20,12 +15,26 @@ class servrepository extends plugin
 
   /* Repositories */
   var $repositories           = array();
-  var $FAIrepository           = array();
+  var $FAIrepository          = array();
+
+  var $fai_activated          = FALSE;
 
-  function servrepository ($config, $dn= NULL)
+  function servrepository ($config, $dn= NULL, $parent= NULL)
   {
-    plugin::plugin ($config, $dn);
+    plugin::plugin ($config, $dn, $parent);
+
+    /* Skip this if fai is deactivated */
+    $tmp = search_config($this->config->data,"faiManagement","CLASS");
+    if(!empty($tmp)){
+      $this->fai_activated = TRUE;    
+    }else{
+      return;
+    }
 
+    $ui = get_userinfo();
+    $tmp= get_permissions ($this->dn, $ui->subtreeACL);
+    $this->acl= get_module_permission($tmp, "servrepository", $this->dn);
+    
     $this->repositories = array();
     if(isset($this->attrs['FAIrepository'])){
       for($i = 0; $i < $this->attrs['FAIrepository']['count']; $i++){
@@ -73,10 +82,21 @@ class servrepository extends plugin
     /* Call parent execute */
     plugin::execute();
 
+    if(!$this->fai_activated){
+      $str = "<h2>"._("You can't use this plugin until FAI is activated.")."</h2>";
+      return $str;
+    }
+
     /* Fill templating stuff */
     $smarty= get_smarty();
     $display= "";
 
+    $ui = get_userinfo();
+    $tmp= get_permissions ($this->dn, $ui->subtreeACL);
+    $this->acl= get_module_permission($tmp, "servrepository", $this->dn);
+    $allow_edit = !preg_match("/disabled/i",chkacl($this->acl,"FAIclass"));
+    
+
     /* Smarty vars*/
     $smarty->assign("infoimage",    get_template_path('images/info.png'));
     $smarty->assign("search_image", get_template_path('images/search.png'));
@@ -89,7 +109,15 @@ class servrepository extends plugin
 
     /* Do we need to flip is_account state? */
     if (isset($_POST['modify_state'])){
-      $this->is_account= !$this->is_account;
+
+      /* Only change account state if allowed */
+      if($this->is_account && $this->acl == "#all#"){
+        $this->is_account= !$this->is_account;
+        $this->is_modified = true;
+      }elseif(!$this->is_account && chkacl($this->acl,"create") == ""){
+        $this->is_account= !$this->is_account;
+        $this->is_modified = true;
+      }
     }
 
     /* Show tab dialog headers */
@@ -101,45 +129,110 @@ class servrepository extends plugin
           _("This server has FAI repository features disabled. You can enable them by clicking below."));
       return ($display);
     }
+
     /*
-      ADD / EDIT Repository
-      Dialog Handling
-    */
-    
+       ADD / EDIT Repository
+       Dialog Handling
+     */
+
     $once = false;
-    foreach($_POST as $name => $value){
-      if((preg_match("/^delete_/",$name))&&(!$once)){
-        if(isset($this->repositories[$value])){
+    if(isset($_POST['servRepository'])){
+      foreach($_POST as $name => $value){
+
+        if(preg_match("/AddRepository/",$name) && !$once && $allow_edit){
           $once = true;
-          unset($this->repositories[$value]);
+          $this->dialog = new servRepositorySetup($this->config,$this->dn);
+          $this->dialog->acl = $this->acl;
         }
-      }
 
-      if((preg_match("/^edit_/",$name))&&(!$once)){
-        if(isset($this->repositories[$value])){
+        if((preg_match("/^delete_/",$name))&&(!$once) && $allow_edit){
           $once = true;
-          $obj = $this->repositories[$value];
-      
-          /* to be able to detect if this was renamed */
-          $obj['initialy_was'] = $obj['Release'];
-          $this->dialog = new servRepositorySetup($this->config,$this->dn,$obj);
-          $this->dialog->acl = $this->acl;
+          $value = preg_replace("/delete_/","",$name);
+          $value = base64_decode(preg_replace("/_.*$/","",$value));
+
+          $url = $this->repositories[$value]['Url'];
+          $release = $this->repositories[$value]['Release'];
+
+          $ldap = $this->config->get_ldap_link();
+          $ldap->cd ($this->config->current['BASE']);
+
+          $ldap->search("(&(objectClass=gotoWorkstation)(objectClass=FAIobject)(FAIdebianMirror=".$url."))",array("cn","FAIclass"));
+
+          $found = false;
+          $found_in = " ";
+          while($attrs = $ldap->fetch()){
+            foreach($attrs['FAIclass'] as $class){
+              if(preg_match("/".str_replace("/","\/",$release)."$/i",$class)){
+                $found = true;  
+                $found_in .= $attrs['cn'][0]." ";
+              }
+            }
+          }
+
+          if($found){
+            print_red(sprintf(_("You can't delete this release, it is still used by these workstations [%s]. Please solve this dependencies first, to keep data base consistency."),$found_in));
+          }else{
+            if(isset($this->repositories[$value])){
+              unset($this->repositories[$value]);
+            }
+          }
+        }
+
+        if((preg_match("/^edit_/",$name))&&(!$once) && $allow_edit){
+          $value = preg_replace("/edit_/","",$name);
+          $value = base64_decode(preg_replace("/_.$/","",$value));
+
+          if(isset($this->repositories[$value])){
+
+            $ldap = $this->config->get_ldap_link();
+            $ldap->cd ($this->config->current['BASE']);
+
+            $url = $this->repositories[$value]['Url'];
+            $release = $this->repositories[$value]['Release'];
+
+            $ldap->search("(&(objectClass=gotoWorkstation)(objectClass=FAIobject)(FAIdebianMirror=".$url."))",array("cn","FAIclass"));
+
+            $found = false;
+            $found_in = " ";
+            while($attrs = $ldap->fetch()){
+              foreach($attrs['FAIclass'] as $class){
+                if(preg_match("/".str_replace("/","\/",$release)."$/i",$class)){
+                  $found = true;
+                  $found_in .= $attrs['cn'][0]." ";
+                }
+              }
+            }
+
+            if($found){
+              print_red(sprintf(_("Be careful editing this release, it is still used by these workstations [%s]."),$found_in));
+            } 
+
+            if(isset($this->repositories[$value])){
+              $once = true;
+              $obj = $this->repositories[$value];
+
+              /* to be able to detect if this was renamed */
+              $obj['initialy_was'] = $obj['Release'];
+              $this->dialog = new servRepositorySetup($this->config,$this->dn,$obj);
+              $this->dialog->acl = $this->acl;
+            }
+          }
         }
       }
     }
-
-    if((isset($_GET['act']))&&($_GET['act']=="open")&&(isset($_GET['id']))){
-      $obj = $this->repositories[$_GET['id']];
+    if((isset($_GET['act']))&&($_GET['act']=="open")&&(isset($_GET['id'])) && $allow_edit){
+      $obj = $this->repositories[base64_decode($_GET['id'])];
       $obj['initialy_was'] = $obj['Release'];
       $this->dialog = new servRepositorySetup($this->config,$this->dn,$obj);
       $this->dialog->acl = $this->acl;
     }
+
+    /*
     if(isset($_POST['AddRepository'])){
       $this->dialog = new servRepositorySetup($this->config,$this->dn);
       $this->dialog->acl = $this->acl;
     }
+    */
 
     if(isset($_POST['repository_setup_save'])){
       $this->dialog->save_object();
@@ -153,9 +246,15 @@ class servrepository extends plugin
         }
       }else{
         $obj = $this->dialog->save();
+        if($this->dialog->is_new_name()){
+          $oldname = $this->dialog->initialy_was;
+          $this->repositories[$obj['Release']]=$obj;        
+          unset($this->repositories[$oldname]);
+        }else{ 
+          $this->repositories[$obj['Release']]=$obj;        
+        }
         $this->dialog = NULL;
         $this->is_dialog= false;
-        $this->repositories[$obj['Release']]=$obj;        
       }
     }
 
@@ -175,38 +274,48 @@ class servrepository extends plugin
     */
 
     $divlist = new divList("repositories");
-    $divlist->SetEntriesPerPage(12);
+    $divlist->SetEntriesPerPage(0);
     $divlist->setHeight(400);
+    $divlist->SetPluginMode();
 
     $divlist->setHeader(array(array("string"=>_("Release"),"attach"=>"style='width:80px;'"),
                               array("string"=>_("Sections")),
-                              array("string"=>_("Options"),"attach"=>"style='border-right:0px;width:69px;'")
+                              array("string"=>_("Options"),"attach"=>"style='border-right:0px;width:55px;'")
                        )     );
 
-    $link   = "<a href='?plug=".$_GET['plug']."&act=open&id=%s'>%s</a>";
+    $link   = "<a href='?plug=".$_GET['plug']."&amp;act=open&amp;id=%s'>%s</a>";
     $edit   = "<input type='image' value='%s' name='edit_%s'   src='images/edit.png'>&nbsp;";
     $delete = "<input type='image' value='%s' name='delete_%s' src='images/edittrash.png'>";
   
     foreach($this->repositories as $name => $reps){
 
       $str = " ";
-
       if(preg_match("/".str_replace("*",".*",$this->regex)."/",$reps['Release'])){
-    
 
       foreach($reps['Sections'] as $sec){
         $str.=$sec." ";  
       }    
-  
+
+      if($allow_edit){
+        $link_str = sprintf($link,base64_encode($name),$name);
+        $sections = sprintf($link,base64_encode($name),_("Sections")." :".$str);
+        $options  = preg_replace("/%s/",base64_encode($name),$edit.$delete);
+      }else{
+        $link_str = $name;
+        $sections = _("Sections")." :".$str;
+        $options  = "";
+      }
+    
       $divlist->AddEntry(array(
-                              array("string"=>preg_replace("/%s/",$name,$link),"attach"=>"style='width:80px;'"),
-                              array("string"=>sprintf($link,$name,_("Sections")." :".$str)),
-                              array("string"=>preg_replace("/%s/",$name,$edit.$delete),"attach"=>"style='border-right:0px;width:50px;text-align:right;'")
-                              ));
+                              array("string"=>$link_str,"attach"=>"style='width:80px;'"),
+                              array("string"=>$sections),
+                              array("string"=>$options,"attach"=>"style='border-right:0px;width:55px;text-align:right;'")));
       }
     }
  
     $smarty -> assign("Repositories",$divlist->DrawList());
+    $smarty -> assign("FAIclassACL",chkacl($this->acl,"FAIclass"));
 
     $display.= $smarty->fetch(get_template_path('servRepository.tpl', TRUE));
     return($display);
@@ -214,15 +323,27 @@ class servrepository extends plugin
 
   function remove_from_parent()
   {
+
+    if(!$this->fai_activated) return;
+    
+    /* Skip if not allowed */ 
+    $ui = get_userinfo();
+    $tmp= get_permissions ($this->dn, $ui->subtreeACL);
+    $this->acl= get_module_permission($tmp, "servrepository", $this->dn);
+
+    if(preg_match("/disabled/",chkacl($this->acl,"FAIclass"))) return;
+
     plugin::remove_from_parent();    
     $ldap= $this->config->get_ldap_link();
     $ldap->cd ($this->config->current['BASE']);
     
-    $ldap->cat($this->dn);
+    $ldap->cat($this->dn, array('dn'));
     
     if($ldap->count()){
       $ldap->cd($this->dn);
-      $ldap->modify($this->attrs);      
+      $this->cleanup();
+      $ldap->modify ($this->attrs); 
+
       $this->handle_post_events("modify");
     }
   }
@@ -241,7 +362,9 @@ class servrepository extends plugin
   /* Check supplied data */
   function check()
   {
-    $message= array();
+    /* Call common method to give check the hook */
+    $message= plugin::check();
+        
     return ($message);
   }
 
@@ -249,6 +372,14 @@ class servrepository extends plugin
   /* Save to LDAP */
   function save()
   {
+    if(!$this->fai_activated) return;
+
+    /* Skip if not allowed */ 
+    $ui = get_userinfo();
+    $tmp= get_permissions ($this->dn, $ui->subtreeACL);
+    $this->acl= get_module_permission($tmp, "servrepository", $this->dn);
+
+    if(preg_match("/disabled/",chkacl($this->acl,"FAIclass"))) return;
     plugin::save();
 
     $arr = array();
@@ -270,11 +401,13 @@ class servrepository extends plugin
     $ldap= $this->config->get_ldap_link();
     $ldap->cd ($this->config->current['BASE']);
     
-    $ldap->cat($this->dn);
+    $ldap->cat($this->dn, array('dn'));
     
     if($ldap->count()){
       $ldap->cd($this->dn);
-      $ldap->modify($this->attrs);      
+      $this->cleanup();
+      $ldap->modify ($this->attrs);       
+
       $this->handle_post_events("modify");
     }else{
       $ldap->cd ($this->config->current['BASE']);