Code

Fixed printer object tagging
[gosa.git] / plugins / admin / systems / class_servRepository.inc
index c6d54f13a82f70b0bfdee0ab6d5b2cdf1d1060ab..9a3114e80a317c724535f7b809264afb504bc60e 100644 (file)
@@ -101,45 +101,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 = 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)){
           $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)){
+          $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']];
+      $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 +218,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,26 +246,18 @@ class servrepository extends plugin
     */
 
     $divlist = new divList("repositories");
-    $divlist->SetEntriesPerPage(12);
+    $divlist->SetEntriesPerPage(0);
     $divlist->setHeight(400);
 
     $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'>";
   
-    if(count($this->repositories)==0){
-      $divlist->AddEntry(array(
-                                array("string"=>"&nbsp;","attach"=>"style='width:80px;'"),
-                                array("string"=>"&nbsp;"),
-                                array("string"=>"&nbsp;","attach"=>"style='border-right:0px;width:50px;text-align:right;'")
-                                ));
-    }
     foreach($this->repositories as $name => $reps){
 
       $str = " ";
@@ -207,9 +270,9 @@ class servrepository extends plugin
       }    
   
       $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"=>sprintf($link,base64_encode($name),$name),"attach"=>"style='width:80px;'"),
+                              array("string"=>sprintf($link,base64_encode($name),_("Sections")." :".$str)),
+                              array("string"=>preg_replace("/%s/",base64_encode($name),$edit.$delete),"attach"=>"style='border-right:0px;width:55px;text-align:right;'")
                               ));
       }
     }
@@ -226,11 +289,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");
     }
   }
@@ -249,7 +314,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);
   }
 
@@ -278,11 +345,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']);