Code

Updated
[gosa.git] / plugins / admin / fai / class_faiManagement.inc
index 17971a305dda1423d352b9bca4d7944e0c133f18..d540e03c27b30e0fb2ecc4f49ba777c589bf8470 100644 (file)
@@ -41,9 +41,12 @@ class faiManagement extends plugin
        /* Headpage attributes */
        var $departments= array();
        var $deptabs= NULL;
+  var $lock_type    = "";    // should be branch/freeze
+  var $lock_name    = "";
+  var $lock_dn      = "";  
 
        /* attribute list for save action */
-       var $attributes                 = array();      //      Attributes Managed by this plugin, none, 
+       var $attributes                 = array("lock_type","lock_name","lock_dn");     //      Attributes Managed by this plugin, none, 
        //      because this is only an overview over all objects already defined in FAI.
        var $objectclasses              = array();      //      ObjectClasses which the attributes are related to
        var $dialog                             = array();      //      This object contains every dialog we have currently opened
@@ -93,13 +96,18 @@ class faiManagement extends plugin
 
                $display        = "";
                $smarty         = get_smarty();
-               $s_action       = "";
+               $smarty->assign("BranchName","");
+    $s_action  = "";
                $s_entry        = "";
                /* filter management 
                 * Filter will be changed if POST['regex'] or $_GET['search'] isset
                 * New Filter will be stored in session and is used to generate list contents
                 */     
                $faifilter = $_SESSION['faifilter'];
+    
+    if((isset($_POST['select_branch']))&&(!empty($_POST['select_branch']))){
+      $faifilter['branch'] = $_POST['select_branch'];
+    }
 
                /* Filter is posted by apply button 
                 * Check every single chkbox 
@@ -115,11 +123,6 @@ class faiManagement extends plugin
                        }
                }
 
-    if((isset($_POST['select_branch']))&&(!empty($_POST['select_branch']))){
-      $faifilter['branch'] = $_POST['select_branch'];
-    }
-    
-    $smarty->assign("select_branch",$_SESSION['faifilter']['branch']);
 
                /* Check ImageButton posts
                 * Create new tab ich new_xx is posted
@@ -154,16 +157,19 @@ class faiManagement extends plugin
                        }elseif(preg_match("/^entry_delete_.*/",$key)){
                                $s_entry = preg_replace("/^entry_delete_/","",$key);
                                $s_entry = preg_replace("/_.*$/","",$s_entry);
-                               $s_action = "delete";
-                       }elseif(preg_match("/dep_back.*/i",$key)){
-                $s_action="back";
-            }elseif(preg_match("/dep_home.*/i",$key)){
-                $s_action="home";
-            }elseif(preg_match("/dep_root.*/i",$key)){
-                $s_action="root";
-                       }
+        $s_action = "delete";
+      }elseif(preg_match("/dep_back.*/i",$key)){
+        $faifilter['branch'] = "main";
+        $s_action="back";
+      }elseif(preg_match("/dep_home.*/i",$key)){
+        $faifilter['branch'] = "main";
+        $s_action="home";
+      }elseif(preg_match("/dep_root.*/i",$key)){
+        $faifilter['branch'] = "main";
+        $s_action="root";
+      }
 
-               }
+    }
 
                if($s_action=="root"){
                        $faifilter['base']=($this->config->current['BASE']);
@@ -257,7 +263,6 @@ class faiManagement extends plugin
                                $this->dialog= NULL;
 
                                /* Terminal list has changed, reload it. */
-                               $this->reload ();
                        } else {
 
                                /* Normally this shouldn't be reached, send some extra
@@ -297,23 +302,24 @@ class faiManagement extends plugin
 
     /* Create new branch */
     if((isset($_POST['UseBranchName']))&&($this->dispNewBranch)){
-      
+     
       /* Check branch name */
       $name = $_POST['BranchName'];
       $is_ok = true;
 
+      $smarty->assign("BranchName",$name);
                  $base= "ou=fai,ou=configs,ou=systems,".$faifilter['base'];
       
       /* Check used characters */
-      if(preg_match("/[^0-9a-z]/i",$name)){
+      if(preg_match("/[^0-9a-z \ö\ä\ü\.-_:,]/i",$name)){
         print_red(_("Specified branch name is invalid."));
         $is_ok = false;
       }
    
       /* Check if this name is already in use */
-      if(!$this->CheckNewBranchName($_POST['BranchName'])){
+      if(!$this->CheckNewBranchName($_POST['BranchName'],$faifilter['branch'])){
         print_red(_("This name is already in use."));
-        $this->is_ok = false;
+        $is_ok = false;
       }
      
       if($is_ok){
@@ -325,12 +331,21 @@ class faiManagement extends plugin
           $baseToUse = $_SESSION['faifilter']['branch'];
         }
 
+        $ldap->cd($this->config->current['BASE']);
+        $ldap->create_missing_trees($baseToUse);
         $ldap->cd ("ou=".$name.",".$baseToUse);
         $ldap->recursive_remove();
         
         $ldap->cd ($this->config->current['BASE']);
         $ldap->copy_FAI_resource_recursive($baseToUse,"ou=".$name.",".$baseToUse,"branch",true);
-        
+
+        /* Postcreate */ 
+
+        /* Assign possible attributes */
+        $this->lock_type  = "branch"; 
+        $this->lock_name  = $name; 
+        $this->lock_dn    = "ou=".$name.",".$baseToUse; 
+        $this->postcreate();
         $this->dispNewBranch = false; 
       }
     }
@@ -338,6 +353,7 @@ class faiManagement extends plugin
     /* Abort creating new branch */
     if(isset($_POST['CancelBranchName'])){
       $this->dispNewBranch = false;
+      $this->dispNewFreeze = false;
     }
 
     /* Open dialog to insert new branch name */
@@ -350,13 +366,13 @@ class faiManagement extends plugin
 
     /* Remove branch */
     if($s_action == "remove_branch"){
-      $base= "ou=fai,ou=configs,ou=systems,".$faifilter['base'];
+      $base= $faifilter['branch'];
       /* Load permissions for selected 'dn' and check if
          we're allowed to remove this 'dn' */
-      $acl= get_permissions ($base, $this->ui->subtreeACL);
+      $acl= get_permissions ($faifilter['base'], $this->ui->subtreeACL);
       $this->acl= get_module_permission($acl, "fai", $base);
       if (chkacl($this->acl, "delete") == ""){
-        $smarty->assign("warning", sprintf(_("You're about to delete a fai branch / freeze  '%s'."), $base));
+        $smarty->assign("info", sprintf(_("You're about to delete a fai branch / freeze  '%s'."), $faifilter['branch']));
         return($smarty->fetch(get_template_path('remove_branch.tpl',TRUE)));
       } else {
         print_red (_("You are not allowed to delete this user!"));
@@ -365,32 +381,51 @@ class faiManagement extends plugin
 
     /* Delete this entry */
     if(isset($_POST['delete_branch_confirm'])){
-      print "branch removed ";
-    }
+      $bb =  $faifilter['branch'];
+      if(!isset($ldap)){
+        $ldap = $this->config->get_ldap_link();
+      }
 
-    if($s_action == "freeze_branch"){
-      $this->dispNewFreeze = true;
-                 $display      .= $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
-      return($display);
+      $br = $this->getBranches();
+
+      if(isset($br[$bb])){
+
+        $name = $br[$bb];
+
+        $ldap->cd($bb);
+        $ldap->recursive_remove();
+        $faifilter['branch'] = "main";
+
+        /* Post remove */
+                
+//        $this->lock_type is set from this->reload
+        $this->lock_name   = $name;
+        $this->lock_dn     = $bb;
+
+        $this->postremove();
+      }
     }
 
+
     if((isset($_POST['UseBranchName']))&&($this->dispNewFreeze)){
       /* Check branch name */
       $name = $_POST['BranchName'];
       $is_ok = true;
 
+      $smarty->assign("BranchName",$name);
+
                  $base= "ou=fai,ou=configs,ou=systems,".$faifilter['base'];
       
       /* Check used characters */
-      if(preg_match("/[^0-9a-z]/i",$name)){
+      if(preg_match("/[^0-9a-z \ö\ä\ü\.-_:,]/i",$name)){
         print_red(_("Specified branch name is invalid."));
         $is_ok = false;
       }
    
       /* Check if this name is already in use */
-      if(!$this->CheckNewBranchName($_POST['BranchName'])){
+      if(!$this->CheckNewBranchName($_POST['BranchName'],$faifilter['branch'])){
         print_red(_("This name is already in use."));
-        $this->is_ok = false;
+        $is_ok = false;
       }
      
       if($is_ok){
@@ -409,9 +444,22 @@ class faiManagement extends plugin
         $ldap->copy_FAI_resource_recursive($baseToUse,"ou=".$name.",".$baseToUse,"freeze",true);
         
         $this->dispNewFreeze = false; 
+        
+        /* Postcreate */ 
+
+        /* Assign possible attributes */
+        $this->lock_type  = "branch"; 
+        $this->lock_name  = $name; 
+        $this->lock_dn    = "ou=".$name.",".$baseToUse; 
+        $this->postcreate();
       }
     }
     
+    if(($s_action == "freeze_branch")||($this->dispNewFreeze)){
+      $this->dispNewFreeze = true;
+                 $display      .= $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
+      return($display);
+    }
 
     /* ENDE Branch handling 
      */
@@ -485,6 +533,15 @@ class faiManagement extends plugin
                        $faifilter['base']=$_POST['base'];
                }
 
+    $base= "ou=fai,ou=configs,ou=systems,".$faifilter['base'];
+
+    $br = $this->getBranches($base);
+    if(!isset($br[$faifilter['branch']])){
+      $faifilter['branch'] = "main";
+    }
+   
+    $smarty->assign("select_branch",$faifilter['branch']);
+
                /* remove double asterisks and save new filter */
                $faifilter['regex'] = preg_replace("/\*\*/","*",$faifilter['regex']);
                $_SESSION['faifilter']= $faifilter;
@@ -604,7 +661,7 @@ class faiManagement extends plugin
 
                        " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
 
-                       _("Current base")."&nbsp;<select name='base' onChange='mainform.submit()' class='center'>$options</select>".
+                       _("Base")."&nbsp;<select name='base' onChange='mainform.submit()' class='center'>$options</select>".
                        " <input class='center' type='image' src='images/list_submit.png' align='middle' title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'>&nbsp;".
                        
                        "</div>";
@@ -749,13 +806,16 @@ class faiManagement extends plugin
 
                /* Assign all reguired vars to template engine */
 
-    $smarty->assign("branchKeys",array_flip($this->getBranches()));
-    $smarty->assign("branches",$this->getBranches());
+    $branches = $this->getBranches();
+    asort($branches);
+    $smarty->assign("branchKeys",array_flip($branches));
+    $smarty->assign("branches",$branches);
     
                $smarty->assign("faihead"               , $faihead);    
                $smarty->assign("failist"               , $divlist->DrawList());
                $smarty->assign("regex"                 , $faifilter['regex']); 
                $smarty->assign("infoimage"             , get_template_path('images/info.png'));
+               $smarty->assign("branchimage"           , get_template_path('images/branch.png'));
                $smarty->assign("launchimage"   , get_template_path('images/launch.png'));
                $smarty->assign("alphabet"              , generate_alphabet());
                $smarty->assign("apply"                 , apply_filter());
@@ -768,7 +828,7 @@ class faiManagement extends plugin
 
   function getBranches($base = false,$prefix = "")
   {
-    $ret = array("main"=>_("main"));
+    $ret = array("main"=>"/");
     $ldap = $this->config->get_ldap_link();
   
     $ldap->cd($this->config->current['BASE']);
@@ -786,7 +846,7 @@ class faiManagement extends plugin
       
       if((isset($attrs['ou']))&&($attrs['dn']!=$base)){
         $ret[$attrs['dn']]= $prefix.$attrs['ou'][0];
-        $ret = array_merge($ret,$this->getBranches($attrs['dn'],$prefix.$attrs['ou'][0]."/"));
+        $ret = array_merge($ret,$this->getBranches($attrs['dn'],"".$prefix.$attrs['ou'][0]."/"));
       }
     }
     return($ret);
@@ -845,6 +905,8 @@ class faiManagement extends plugin
                $res= get_list($this->ui->subtreeACL, "(objectClass=organizationalUnit)", 
                                FALSE, $base, array("cn","description","objectClass"),TRUE);
 
+    $str = "";
+
                foreach($res as $objecttypes){
                        $res2 = get_list($this->ui->subtreeACL, "(&(objectClass=*)(cn=".$regex."))",
                                        FALSE, $objecttypes['dn'], array("cn","description","objectClass","FAIclass","FAIstate"),TRUE);
@@ -863,6 +925,11 @@ class faiManagement extends plugin
 
         if(isset($object['FAIstate'])){
           $obj['FAIstate'] = $object['FAIstate'][0];
+
+          /* Append type to this string, to be able to check if the selected 
+           * entry is of type 'freeze' or 'branch'
+           */
+          $str.="|".$obj['FAIstate'];
         }else{
           $obj['FAIstate'] ="";
         }
@@ -888,6 +955,18 @@ class faiManagement extends plugin
  
                        }
                }
+
+    /* Tell class what we have currently opened 
+        'main' has type '' 
+     */
+    if(preg_match("/freeze/",$str)){
+      $this->lock_type = "freeze";
+    }elseif(preg_match("/branch/",$str)){
+      $this->lock_type = "branch";
+    }else{
+      $this->lock_type = "";
+    }
+
                ksort($this->objects);
                reset ($this->objects);
        
@@ -933,8 +1012,18 @@ class faiManagement extends plugin
                }
        }
 
-  function CheckNewBranchName($name){
-    if(in_array($name,$this->getBranches())) {
+  function CheckNewBranchName($name,$base){
+    $f = $_SESSION['faifilter']['branch'];
+
+    if($f == "main"){
+      $f = $_SESSION['faifilter']['base'];
+    } 
+    
+    if(in_array($name,$this->getBranches($f))) {
+      return(false);
+    }
+
+    if(empty($name)){
       return(false);
     }
     return(true);