Code

fixed problem with klicking apply more than once
[gosa.git] / plugins / admin / systems / class_servRepository.inc
index 7dd8e9cbd119b914680b548ef142bfae7c4ea40e..961c49a59b204dd0bd7813c9e0feb612bcf4af7b 100644 (file)
@@ -19,13 +19,21 @@ class servrepository extends plugin
   var $dialog                 = NULL;
 
   /* Repositories */
-  var $repositories           = array();
-  var $FAIrepository           = array();
+  var $repositories          = array();
+  var $FAIrepository         = array();
+
+
+  var $conflicts             = array("FAIrepositoryServer");
+  var $DisplayName           = "";
+  var $StatusFlag            = "";
+
 
   function servrepository ($config, $dn= NULL)
   {
     plugin::plugin ($config, $dn);
 
+    $this->DisplayName = _("Repository service");
+
     $this->repositories = array();
     if(isset($this->attrs['FAIrepository'])){
       for($i = 0; $i < $this->attrs['FAIrepository']['count']; $i++){
@@ -86,81 +94,32 @@ class servrepository extends plugin
     $smarty->assign("apply",        apply_filter());
     $smarty->assign("regex",        $this->regex);
 
-
-    /* Do we need to flip is_account state? */
-    if (isset($_POST['modify_state'])){
-      $this->is_account= !$this->is_account;
-    }
-
     /* Show tab dialog headers */
-    if ($this->is_account){
-      $display= $this->show_header(_("Remove FAI repository extension."),
-          _("This server has FAI repository features enabled. You can disable them by clicking below."));
-    } else {
-      $display= $this->show_header(_("Add FAI repository extension."),
-          _("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("/AddRepository/",$name)){
-        $once = true;
-        $this->dialog = new servRepositorySetup($this->config,$this->dn);
-        $this->dialog->acl = $this->acl;
-      }
-
-      if((preg_match("/^delete_/",$name))&&(!$once)){
-        $once = true;
-        $value = preg_replace("/delete_/","",$name);
-        $value = base64_decode(preg_replace("/_.*$/","",$value));
+    if(isset($_POST['servRepository'])){
+      foreach($_POST as $name => $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("/AddRepository/",$name)){
+          $once = true;
+          $this->dialog = new servRepositorySetup($this->config,$this->dn);
+          $this->dialog->acl = $this->acl;
         }
-      }
 
-      if((preg_match("/^edit_/",$name))&&(!$once)){
-        $value = preg_replace("/edit_/","",$name);
-        $value = base64_decode(preg_replace("/_.$/","",$value));
+        if((preg_match("/^delete_/",$name))&&(!$once)){
+          $once = true;
+          $value = preg_replace("/delete_/","",$name);
+          $value = base64_decode(preg_replace("/_.*$/","",$value));
 
-        if(isset($this->repositories[$value])){
+          $url = $this->repositories[$value]['Url'];
+          $release = $this->repositories[$value]['Release'];
 
           $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;
@@ -168,29 +127,63 @@ class servrepository extends plugin
           while($attrs = $ldap->fetch()){
             foreach($attrs['FAIclass'] as $class){
               if(preg_match("/".str_replace("/","\/",$release)."$/i",$class)){
-                $found = true;
+                $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));
-          } 
+            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)){
+          $value = preg_replace("/edit_/","",$name);
+          $value = base64_decode(preg_replace("/_.$/","",$value));
 
           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;
+            $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[base64_decode($_GET['id'])];
       $obj['initialy_was'] = $obj['Release'];
@@ -285,6 +278,13 @@ class servrepository extends plugin
   function remove_from_parent()
   {
     plugin::remove_from_parent();    
+
+     /* Remove status flag, it is not a memeber of
+        this->attributes, so ensure that it is deleted too */
+    if(!empty($this->StatusFlag)){
+      $this->attrs[$this->StatusFlag] = array();
+    }
+
     $ldap= $this->config->get_ldap_link();
     $ldap->cd ($this->config->current['BASE']);
     
@@ -361,6 +361,88 @@ class servrepository extends plugin
     }
   }
 
+  /* Get updates for status flag */
+  function updateStatusState()
+  {
+    if(empty($this->StatusFlag)) return;
+
+    $attrs = array();
+    $flag = $this->StatusFlag;
+    $ldap = $this->config->get_ldap_link();
+    $ldap->cd($this->cn);
+    $ldap->cat($this->dn,array($flag));
+    if($ldap->count()){
+      $attrs = $ldap->fetch();
+    }
+    if(isset($attrs[$flag][0])){
+      $this->$flag = $attrs[$flag][0];
+    }
+  }
+
+
+  function getListEntry()
+  {
+    $this->updateStatusState();
+    $flag = $this->StatusFlag;
+    if(empty($flag)){
+      $fields['Status']      = "";
+    }else{
+      $fields['Status']      = $this->$flag;
+    }
+    $fields['Message']    = _("Repository service");
+    $fields['AllowStart'] = true;
+    $fields['AllowStop']  = true;
+    $fields['AllowRestart'] = true;
+    $fields['AllowRemove']= true;
+    $fields['AllowEdit']  = true;
+    return($fields);
+  }
+
+
+  /* Directly save new status flag */
+  function setStatus($value)
+  {
+    if($value == "none") return;
+    if(!$this->initially_was_account) return;
+    if(empty($this->StatusFlag)) return;
+    $ldap = $this->config->get_ldap_link();
+    $ldap->cd($this->dn);
+    $ldap->cat($this->dn,array("objectClass"));
+    if($ldap->count()){
+
+      $tmp = $ldap->fetch();
+      for($i = 0; $i < $tmp['objectClass']['count']; $i ++){
+        $attrs['objectClass'][] = $tmp['objectClass'][$i];
+      }
+      $flag = $this->StatusFlag;
+      $attrs[$flag] = $value;
+      $this->$flag = $value;
+      $ldap->modify($attrs);
+      show_ldap_error($ldap->get_error(), sprintf(_("Set status flag for server services/repository with dn '%s' failed."),$this->dn));
+      $this->action_hook();
+    }
+  }
+
+
+  /* Return plugin informations for acl handling */
+  function plInfo()
+  {
+    return (array(
+          "plShortName"   => _("Repository"),
+          "plDescription" => _("Repository service"),
+          "plSelfModify"  => FALSE,
+          "plDepends"     => array(),
+          "plPriority"    => 0,
+          "plSection"     => array("administration"),
+          "plCategory"    => array("server"),
+
+          "plProvidedAcls"=> array(
+              "cn"            => _("Name"),
+              "Release"       => _("Releases"),
+              "ParentServer"  => _("Parent server"),
+              "Url"           => _("Url"))
+            ));
+  }
 }
 
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: