Code

Added cn to class vars, to be able to use it within post_create etc
[gosa.git] / plugins / admin / systems / class_servRepository.inc
index 6b96cd3e5d4b19bfa5de8b540c8e6fc7f95ba0b5..7dd8e9cbd119b914680b548ef142bfae7c4ea40e 100644 (file)
@@ -153,37 +153,40 @@ class servrepository extends plugin
         $value = preg_replace("/edit_/","",$name);
         $value = base64_decode(preg_replace("/_.$/","",$value));
 
-        $ldap = $this->config->get_ldap_link();
-        $ldap->cd ($this->config->current['BASE']);
-        
-        $url = $this->repositories[$value]['Url'];
-        $release = $this->repositories[$value]['Release'];
+        if(isset($this->repositories[$value])){
 
-        $ldap->search("(&(objectClass=gotoWorkstation)(objectClass=FAIobject)(FAIdebianMirror=".$url."))",array("cn","FAIclass"));
+          $ldap = $this->config->get_ldap_link();
+          $ldap->cd ($this->config->current['BASE']);
 
-        $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]." ";
+          $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($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;
+          }
         }
       }
     }
@@ -214,9 +217,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;        
       }
     }
 
@@ -279,12 +288,12 @@ 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);
       $this->cleanup();
-$ldap->modify ($this->attrs);       
+      $ldap->modify ($this->attrs); 
 
       $this->handle_post_events("modify");
     }
@@ -304,7 +313,9 @@ $ldap->modify ($this->attrs);
   /* Check supplied data */
   function check()
   {
-    $message= array();
+    /* Call common method to give check the hook */
+    $message= plugin::check();
+        
     return ($message);
   }
 
@@ -333,7 +344,7 @@ $ldap->modify ($this->attrs);
     $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);