Code

Updated
[gosa.git] / plugins / admin / fai / class_faiManagement.inc
index 448d046b14e0a9dcd156f7bcfbf0e87cb6630c9c..d540e03c27b30e0fb2ecc4f49ba777c589bf8470 100644 (file)
@@ -17,6 +17,7 @@
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
+
 require "tabsPartition.inc";
 require "tabsVariable.inc";
 require "tabsHook.inc";
@@ -25,7 +26,6 @@ require "tabsScript.inc";
 require "tabsProfile.inc";
 require "tabsPackage.inc";
 
-
 class faiManagement extends plugin
 {
        /* Definitions */
@@ -41,15 +41,21 @@ 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
 
        var $objects                    = array();      //      This array contains all available objects shown in divlist
-       var $is_dialog                  = false;
+       var $is_dialog          = false;
+
+  var $dispNewBranch= false;
+  var $dispNewFreeze= false;
 
        /* construction/reconstruction 
         * The Filter ($faifilter stored in $_SESSION['faifilter']) defines the last 
@@ -70,7 +76,7 @@ class faiManagement extends plugin
                if (!is_global("faifilter")){
                        $base   = get_base_from_people($ui->dn);
                        $faifilter= array("base" => $base,
-                                       "regex" => "*");
+                                       "regex" => "*","branch" => "main");
                        $faifilter['ShowProfiles']      = true;
                        $faifilter['ShowTemplates'] = true;
                        $faifilter['ShowScripts']       = true;
@@ -84,15 +90,24 @@ class faiManagement extends plugin
 
        function execute()
        {
+
+       /* Call parent execute */
+       plugin::execute();
+
                $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 
@@ -108,11 +123,18 @@ class faiManagement extends plugin
                        }
                }
 
+
                /* Check ImageButton posts
                 * Create new tab ich new_xx is posted
                 */
                foreach($_POST as $key => $val){
-                       if(preg_match("/create_partition/i",$key)){
+      if(preg_match("/remove_branch/",$key)){
+        $s_action = "remove_branch";
+      }elseif(preg_match("/branch_branch/",$key)){
+        $s_action = "branch_branch";
+      }elseif(preg_match("/freeze_branch/",$key)){
+        $s_action = "freeze_branch";
+                       }elseif(preg_match("/create_partition/i",$key)){
                                $s_action = "new_partition";
                        }elseif(preg_match("/create_script/i",$key)){
                                $s_action = "new_script";
@@ -135,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']);
@@ -238,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
@@ -259,6 +283,11 @@ class faiManagement extends plugin
                        $a_setup = ($this->get_type($entry));
                
                        $this->dn = $entry['dn'];
+                       /* Check locking, save current plugin in 'back_plugin', so the dialog knows where to return. */
+                       if (($user= get_lock($this->dn)) != ""){
+                               return(gen_locked_message ($user, $this->dn));
+                       }
+                       add_lock ($this->dn, $this->ui->dn);
 
                        $this->dialog= new $a_setup[0]($this->config,
                                        $this->config->data['TABS'][$a_setup[2]],$this->dn);
@@ -267,7 +296,175 @@ class faiManagement extends plugin
                }
 
 
-               /* Dialog handling */
+    /*  Branch handling 
+        09.01.2006
+    */
+
+    /* 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)){
+        print_red(_("Specified branch name is invalid."));
+        $is_ok = false;
+      }
+   
+      /* Check if this name is already in use */
+      if(!$this->CheckNewBranchName($_POST['BranchName'],$faifilter['branch'])){
+        print_red(_("This name is already in use."));
+        $is_ok = false;
+      }
+     
+      if($is_ok){
+        /* Create it know */
+        $ldap = $this->config->get_ldap_link();
+
+        $baseToUse = $base;
+        if($_SESSION['faifilter']['branch']!="main"){
+          $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; 
+      }
+    }
+
+    /* Abort creating new branch */
+    if(isset($_POST['CancelBranchName'])){
+      $this->dispNewBranch = false;
+      $this->dispNewFreeze = false;
+    }
+
+    /* Open dialog to insert new branch name */
+    if(($s_action == "branch_branch")||($this->dispNewBranch)){
+      $this->dispNewBranch=true;
+                 $base= "ou=fai,ou=configs,ou=systems,".$faifilter['base'];
+                 $display      .= $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
+      return($display);
+    }
+
+    /* Remove branch */
+    if($s_action == "remove_branch"){
+      $base= $faifilter['branch'];
+      /* Load permissions for selected 'dn' and check if
+         we're allowed to remove this 'dn' */
+      $acl= get_permissions ($faifilter['base'], $this->ui->subtreeACL);
+      $this->acl= get_module_permission($acl, "fai", $base);
+      if (chkacl($this->acl, "delete") == ""){
+        $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!"));
+      }
+    }
+
+    /* Delete this entry */
+    if(isset($_POST['delete_branch_confirm'])){
+      $bb =  $faifilter['branch'];
+      if(!isset($ldap)){
+        $ldap = $this->config->get_ldap_link();
+      }
+
+      $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)){
+        print_red(_("Specified branch name is invalid."));
+        $is_ok = false;
+      }
+   
+      /* Check if this name is already in use */
+      if(!$this->CheckNewBranchName($_POST['BranchName'],$faifilter['branch'])){
+        print_red(_("This name is already in use."));
+        $is_ok = false;
+      }
+     
+      if($is_ok){
+        /* Create it know */
+        $ldap = $this->config->get_ldap_link();
+
+        $baseToUse = $base;
+        if($_SESSION['faifilter']['branch']!="main"){
+          $baseToUse = $_SESSION['faifilter']['branch'];
+        }
+        
+        $ldap->cd ("ou=".$name.",".$baseToUse);
+        $ldap->recursive_remove();
+        
+        $ldap->cd ($this->config->current['BASE']);
+        $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 
+     */
+
+    /* Dialog handling */
                if($s_action == "new_partition"){
                        $this->dialog = new askClassName($this->config,$this->dn,$this->ui,"FAIpartitionTable");
                }
@@ -326,12 +523,25 @@ class faiManagement extends plugin
                        }               
                }       
 
-
                /* Search is set */
                if(isset($_GET['search'])){
                        $faifilter['regex']=$_GET['search']."*";
                }
 
+               /* Department select */
+               if((isset($_POST['base']))&&($s_action=="")){
+                       $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;
@@ -344,6 +554,7 @@ class faiManagement extends plugin
                        $this->dialog=NULL;
                        $this->is_dialog = false;
                        unset($_SESSION['objectinfo']);
+                       del_lock ($this->dn);
                }
 
                /* This check if the given tab could be saved 
@@ -357,6 +568,7 @@ class faiManagement extends plugin
                                        print_red($msg);
                                }
                        }else{
+                               del_lock ($this->dn);
                                $this->dialog->save();
                                unset($this->dialog);
                                $this->dialog=NULL;
@@ -378,14 +590,14 @@ class faiManagement extends plugin
                                
                        }elseif(((isset($this->dialog->current))&&(!$this->dialog->by_object[$this->dialog->current]->is_dialog))){
                                $display.= "<p style=\"text-align:right\">\n";
-                               $display.= "<input type=submit name=\"edit_finish\" value=\""._("Finish")."\">\n";
+                               $display.= "<input type=\"submit\" name=\"edit_finish\" value=\""._("Finish")."\">\n";
                                $display.= "&nbsp;\n";
-                               $display.= "<input type=submit name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
+                               $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
                                $display.= "</p>";
                        }elseif(!isset($this->dialog->current)){
                                $display.= "<p style=\"text-align:right\">\n";
-                               $display.= "<input type=submit name=\"edit_continue\" value=\""._("Continue")."\">&nbsp;";
-                               $display.= "<input type=submit name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
+                               $display.= "<input type=\"submit\" name=\"edit_continue\" value=\""._("Continue")."\">&nbsp;";
+                               $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
                                $display.= "</p>";
                        }
                        return($display);
@@ -401,7 +613,7 @@ class faiManagement extends plugin
                $options= "";
                foreach ($this->config->idepartments as $key => $value){
                        if ($faifilter['base'] == $key){
-                               $options.= "<option selected value='$key'>$value</option>";
+                               $options.= "<option selected='selected' value='$key'>$value</option>";
                        } else {
                                $options.= "<option value='$key'>$value</option>";
                        }
@@ -413,44 +625,44 @@ class faiManagement extends plugin
                $faihead = 
                        "<div style='background:#F0F0F9;padding:5px;'>&nbsp;".
 
-                       "<input type='image' src='images/list_up.png' align='middle' 
+                       "<input class='center' type='image' src='images/list_up.png' align='middle' 
                        title='"._("Go up one department")."' name='dep_back' alt='"._("Up"). "'>&nbsp;".
 
-                       "<input type='image' src='images/list_root.png' align='middle' 
+                       "<input class='center' type='image' src='images/list_root.png' align='middle' 
                        title='"._("Go to root department")."' name='dep_root' alt='".      _("Root")."'>&nbsp;".
 
-                       "<input type='image' src='images/list_home.png' align='middle' 
+                       "<input class='center' type='image' src='images/list_home.png' align='middle' 
                        title='"._("Go to users home department")."' name='dep_home' alt='"._("Home")."'>&nbsp;".
 
-                       "<img src=\"images/list_seperator.png\" alt=\"\" align=\"middle\" height=\"16\" width=\"1\">&nbsp;".
+                       "<img class='center' src=\"images/list_seperator.png\" alt=\"\" align=\"middle\" height=\"16\" width=\"1\">&nbsp;".
                        
-                       " <input type='image' src='images/fai_new_profile.png' align='middle' 
+                       " <input class='center' type='image' src='images/fai_new_profile.png' align='middle' 
                        title='"._("New profile")."' name='Create_profile' alt='"._("P")."'>&nbsp;".
                        
-                       "<img src=\"images/list_seperator.png\" alt=\"\" align=\"middle\" height=\"16\" width=\"1\">&nbsp;".
+                       "<img class='center' src=\"images/list_seperator.png\" alt=\"\" align=\"middle\" height=\"16\" width=\"1\">&nbsp;".
                                
-                       " <input type='image' src='images/fai_new_partitionTable.png' align='middle' 
+                       " <input class='center' type='image' src='images/fai_new_partitionTable.png' align='middle' 
                        title='"._("New partition table")."' name='Create_partition' alt='"._("PT")."'>&nbsp;".
 
-                       " <input type='image' src='images/fai_new_script.png' align='middle' 
+                       " <input class='center' type='image' src='images/fai_new_script.png' align='middle' 
                        title='"._("New scripts")."' name='Create_script' alt='"._("S")."'>&nbsp;".
 
-                       " <input type='image' src='images/fai_new_hook.png' align='middle' 
+                       " <input class='center' type='image' src='images/fai_new_hook.png' align='middle' 
                        title='"._("New hooks")."' name='Create_hook' alt='"._("H")."'>&nbsp;".
 
-                       " <input type='image' src='images/fai_new_variable.png' align='middle' 
+                       " <input class='center' type='image' src='images/fai_new_variable.png' align='middle' 
                        title='"._("New variables")."' name='Create_variable' alt='"._("V")."'>&nbsp;".
                        
-                       " <input type='image' src='images/fai_new_template.png' align='middle' 
+                       " <input class='center' type='image' src='images/fai_new_template.png' align='middle' 
                        title='"._("New templates")."' name='Create_template' alt='"._("T")."'>&nbsp;".
 
-                       " <input type='image' src='images/fai_new_packages.png' align='middle' 
+                       " <input class='center' type='image' src='images/fai_new_packages.png' align='middle' 
                        title='"._("New package list")."' name='Create_package' alt='"._("PK")."'>&nbsp;".
 
-                       " <img src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
+                       " <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()'>$options</select>".
-                       " <input type='image' src='images/list_submit.png' align='middle' title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'>&nbsp;".
+                       _("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>";
 
@@ -462,16 +674,16 @@ class faiManagement extends plugin
                $divlist->SetSummary(_("This table displays all systems, in the selected tree."));
 
                $divlist->SetHeader(array(
-                                       array("string" => "&nbsp;"),
-                                       array("string" => _("Name of FAI class")),
-                                       array("string" => _("Class type")),
-                                       array("string" => _("Actions"), "attach"=>"style='border-right:none;width:40px;'")));
+                                       array("string" => "&nbsp;", "attach" => "style='text-align:center;width:20px;'"),
+                                       array("string" => _("Name of FAI class"), "attach" => "style=''"),
+                                       array("string" => _("Class type"), "attach" => "style='width:200px;'"),
+                                       array("string" => _("Actions"), "attach" => "style='width:60px;border-right:0px;text-align:right;'")));
 
 
-               $action  = "<input type='image' src='images/edit.png'   alt='"._("edit")."'   name='entry_edit_%KEY%' title='"._("Edit class")."'>";
-               $action .= "<input type='image' src='images/edittrash.png' alt='"._("delete")."' name='entry_delete_%KEY%' title='"._("Delete class")."'>";
+               $action  = "<input class='center' type='image' src='images/edit.png'    alt='"._("edit")."'   name='entry_edit_%KEY%' title='"._("Edit class")."'>";
+               $action .= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."' name='entry_delete_%KEY%' title='"._("Delete class")."'>";
 
-               $editlink ="<a href='?plug=".$_GET['plug']."&edit_entry=%KEY%'>%NAME%</a>";             
+               $editlink ="<a href='?plug=".$_GET['plug']."&amp;edit_entry=%KEY%'>%NAME%</a>";                 
                $linkopen = "<a href='?plug=".$_GET['plug']."&amp;act=dep_open&amp;dep_id=%s'>%s</a>";
 
                foreach($this->departments as $key => $val) {
@@ -489,16 +701,15 @@ class faiManagement extends plugin
 
 
                        $title = $this->config->departments[$key];
-                       $field0 = array("string" => "<img src='images/".$non_empty."folder.png' title='"._("department")."' alt='department'>",                     "attach"=>"style='width:20px;'");
-                       $field1 = array("string" => sprintf($linkopen,base64_encode($key),$val), "attach" => "title='".$title."'");
-                       $field2 = array("string" => "");
-                       $field3 = array("string" => "","attach"=>"style='text-align:right;border-right:none;'");
+                       $field0 = array("string" => "<img src='images/".$non_empty."folder.png' title='"._("department")."' alt='department'>", "attach" => "style='text-align:center;width:20px;'");
+                       $field1 = array("string" => sprintf($linkopen,base64_encode($key),$val), "attach" => "style='' title='".$title."'");
+                       $field2 = array("string" => "&nbsp;", "attach" => "style='width:200px;'");
+                       $field3 = array("string" => "&nbsp;", "attach" => "style='width:60px;border-right:0px;text-align:right;'");
 
                        $divlist->AddEntry( array($field0,$field1,$field2,$field3));
 
                }
-
-
+    
                /* Attach objects */
                foreach($this->objects as $key => $value){
                                $info= "";
@@ -511,53 +722,53 @@ class faiManagement extends plugin
                                                if(!$faifilter['ShowPartitions']){ 
                                                        $abort = true;
                                                }
-                                       $img="<img src='images/fai_partitionTable.png' title='"._("Partition table")."' alt='PT'>";
+                                       $img="<img class='center' src='images/fai_partitionTable.png' title='"._("Partition table")."' alt='PT'>";
                                        $info = _("Partition table");
                                        break;
                                        case "FAIpackageList"           : 
                                                if(!$faifilter['ShowPackages']){ 
                                                        $abort = true;
                                                }
-                                       $img="<img src='images/fai_packages.png' title='"._("Package list")."' alt='PL'>";
+                                       $img="<img class='center' src='images/fai_packages.png' title='"._("Package list")."' alt='PL'>";
                                        $info = _("Package list");
                                        break;
                                        case "FAIscript"                        : 
                                                if(!$faifilter['ShowScripts']){ 
                                                        $abort = true;
                                                }
-                                       $img="<img src='images/fai_script.png' title='"._("Scripts")."' alt='S'>";
+                                       $img="<img class='center' src='images/fai_script.png' title='"._("Scripts")."' alt='S'>";
                                        $info = _("Scripts");
                                        break;
                                        case "FAIvariable"                      : 
                                                if(!$faifilter['ShowVariables']){ 
                                                        $abort = true;
                                                }
-                                       $img="<img src='images/fai_variable.png' title='"._("Variables")."' alt='V'>";
+                                       $img="<img class='center' src='images/fai_variable.png' title='"._("Variables")."' alt='V'>";
                                        $info = _("Variables");
                                        break;
                                        case "FAIhook"                          :
                                                if(!$faifilter['ShowHooks']){ 
                                                        $abort = true;
                                                }
-                                       $img="<img src='images/fai_hook.png' title='"._("Hooks")."' alt='H'>";
+                                       $img="<img class='center' src='images/fai_hook.png' title='"._("Hooks")."' alt='H'>";
                                        $info = _("Hooks");
                                        break;
                                        case "FAIprofile"                       : 
                                                if(!$faifilter['ShowProfiles']){ 
                                                        $abort = true;
                                                }
-                                       $img="<img src='images/fai_profile.png' title='"._("Profile")."' alt='P'>";
+                                       $img="<img class='center' src='images/fai_profile.png' title='"._("Profile")."' alt='P'>";
                                        $info = _("Profile");
                                        break;
                                        case "FAItemplate"                      : 
                                                if(!$faifilter['ShowTemplates']){ 
                                                        $abort = true;
                                                }
-                                       $img="<img src='images/fai_template.png' title='"._("Templates")."' alt='T'>";
+                                       $img="<img class='center' src='images/fai_template.png' title='"._("Templates")."' alt='T'>";
                                        $info = _("Templates");
                                        break;
                                        default                                         : 
-                                       $img="<img src='images/empty.png' alt=''>";$info = "";break;
+                                       $img="<img class='center' src='images/empty.png' alt=''>";$info = "";break;
 
                                }
                                
@@ -568,10 +779,18 @@ class faiManagement extends plugin
                                                $desc= "";
                                        }
 
-                                       $field1 = array("string" => $img , "attach" => "style='height:26px;width=20px;'");
-                                       $field2 = array("string" => preg_replace(array("/%KEY%/","/%NAME%/"),array($key,$value['cn'].$desc),$editlink) , "attach" => "");
-                                       $field3 = array("string" => $info, "attach" => "");
-                                       $field4 = array("string" => preg_replace("/%KEY%/",$key,$action) , "attach"=>"style='text-align:right;border:none'");
+          if($value['FAIstate'] == "freeze"){
+            $acti = "";
+            $edi  = "%NAME%";
+          }else{
+            $acti = $action;
+            $edi = $editlink;
+          }
+
+                                       $field1 = array("string" => $img , "attach" => "style='text-align:center;width:20px;'");
+                                       $field2 = array("string" => preg_replace(array("/%KEY%/","/%NAME%/"),array($key,$value['cn'].$desc),$edi) , "attach" => "style=''");
+                                       $field3 = array("string" => $info, "attach" => "style='width:200px;'");
+                                       $field4 = array("string" => preg_replace("/%KEY%/",$key,$acti) , "attach" => "style='width:60px;border-right:0px;text-align:right;'");
                                        $divlist->AddEntry(array($field1,$field2,$field3,$field4));
 
                        }
@@ -586,19 +805,52 @@ class faiManagement extends plugin
                }
 
                /* Assign all reguired vars to template engine */
+
+    $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());
                $smarty->assign("search_image"  , get_template_path('images/search.png'));
+               $smarty->assign("hint", print_sizelimit_warning());
 
                $display        = $smarty->fetch(get_template_path('headpage.tpl', TRUE, dirname(__FILE__)));
                return ($display);
        }
 
+  function getBranches($base = false,$prefix = "")
+  {
+    $ret = array("main"=>"/");
+    $ldap = $this->config->get_ldap_link();
+  
+    $ldap->cd($this->config->current['BASE']);
+
+    $faifilter = $_SESSION['faifilter'];
+
+
+    if(!$base){
+               $base= "ou=fai,ou=configs,ou=systems,".$faifilter['base'];
+    }
+    $ldap->cd($base);
+    $ldap->ls("(objectClass=FAIbranch)",$base);
+
+    while($attrs = $ldap->fetch()){
+      
+      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]."/"));
+      }
+    }
+    return($ret);
+  }
 
        function reload()
        {
@@ -611,6 +863,11 @@ class faiManagement extends plugin
 
                /* Set base for all searches */
                $base= "ou=fai,ou=configs,ou=systems,".$faifilter['base'];
+
+    if($faifilter['branch'] !="main"){
+      $base = $faifilter['branch'];
+    }
+   
                $regex = $faifilter['regex'];   
 
                /* Array to save objects */
@@ -634,10 +891,10 @@ class faiManagement extends plugin
                }
                ksort($tmp);
                foreach($tmp as $value){
-                       if($value["description"][0]!=".."){
+                       if(isset($value["description"][0])){
                                $this->departments[$value['dn']]=convert_department_dn2($value['dn'])." - [".$value["description"][0]."]";
                        }else{
-                               $this->departments[$value['dn']]=$value["description"][0];
+                               $this->departments[$value['dn']]=convert_department_dn2($value['dn']);//$value["description"][0];
                        }
                }
 
@@ -648,9 +905,11 @@ 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"),TRUE);
+                                       FALSE, $objecttypes['dn'], array("cn","description","objectClass","FAIclass","FAIstate"),TRUE);
                        foreach($res2 as $object){
                                $type= "";      
                                unset($object['objectClass']['count']);
@@ -664,6 +923,17 @@ class faiManagement extends plugin
                                $obj['description'] = $object['description'][0];
                                $obj['objectClass'] = $object['objectClass'];
 
+        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'] ="";
+        }
+
                                if(in_array("FAIpartitionTable",$obj['objectClass'])){
                                        $type = "FAIpartitionTable";
                                }elseif(in_array("FAIpackageList",$obj['objectClass'])){
@@ -685,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);
        
@@ -730,6 +1012,23 @@ class faiManagement extends plugin
                }
        }
 
-}
+  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);
+  }
+
+}
+// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>