Code

Added FAIstate to faiManagement
[gosa.git] / plugins / admin / fai / class_faiManagement.inc
1 <?php
2 /*
3    This code is part of GOsa (https://gosa.gonicus.de)
4    Copyright (C) 2003  Cajus Pollmeier
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
21 require "tabsPartition.inc";
22 require "tabsVariable.inc";
23 require "tabsHook.inc";
24 require "tabsTemplate.inc";
25 require "tabsScript.inc";
26 require "tabsProfile.inc";
27 require "tabsPackage.inc";
30 class faiManagement extends plugin
31 {
32         /* Definitions */
33         var $plHeadline                 = "FAI";
34         var $plDescription              = "Fully Automatic Installation - management";
36         /* CLI vars */
37         var $cli_summary                  = "Handling of FAI entries";
38         var $cli_description    = "This plugin represents a management tool\n
39                 which allows us to manage all needed attributes for fully automatic installations (FAI)";
40         var $cli_parameters             = array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
42         /* Headpage attributes */
43   var $lock_type    = "";    // should be branch/freeze
44   var $lock_name    = "";
45   var $lock_dn      = "";  
47         /* attribute list for save action */
48         var $attributes         = array("lock_type","lock_name","lock_dn");     //      Attributes Managed by this plugin 
49         var $objectclasses= array();    //      ObjectClasses which the attributes are related to
50         var $dialog                             = array();      //      This object contains every dialog we have currently opened
52         var $objects                    = array();      //      This array contains all available objects shown in divlist
53         var $is_dialog          = false;
55   var $dispNewBranch= false;
56   var $dispNewFreeze= false;
58   var $DivListFai;
60         /* construction/reconstruction 
61          */
62         function faiManagement ($config, $ui)
63         {
64                 /* Set defaults */
65                 $this->dn                       = "";
66                 $this->config   = $config;
67                 $this->ui                       = $ui;  
68     
69     /* Creat dialog object */
70     $this->DivListFai = new divListFai($this->config,$this);
71         }
73         function execute()
74         {
75     /* Call parent execute */
76     plugin::execute();
78     /* Initialise vars and smarty */
79                 $smarty         = get_smarty();
80                 $smarty->assign("BranchName","");
81     
82                 $display        = "";
83     $s_action   = "";
84                 $s_entry        = "";
85     
86     /* If an entry was locked, these vars will be stored in a session to allow direct edit */
87     $_SESSION['LOCK_VARS_TO_USE'] = array("/^edit_entry$/","/^id$/","/^entry_edit_/","/^entry_delete_/");
90     /****************
91       Handle posts 
92      ****************/
94                 /* Check ImageButton posts
95                  * Create new tab ich new_xx is posted
96                  */
97     $posts = array( "/remove_branch/"=>"remove_branch",    "/branch_branch/"=>"branch_branch",
98                     "/freeze_branch/"=>"freeze_branch",    "/create_partition/i"=>"new_partition",
99                     "/create_script/i"=>"new_script",      "/create_hook/i"=>"new_hook",
100                     "/create_variable/i"=>"new_variable",  "/create_template/i"=>"new_template",
101                     "/create_package/i"=>"new_package",    "/create_profile/i"=>"new_profile",
102                     "/edit_continue/"=>"select_class_name_finished");
104                 foreach($_POST as $name => $value){
105       foreach($posts as $reg => $act ){
106         if(preg_match($reg,$name)){
107           $s_action = $act;
108         }
109       }
110                         if(preg_match("/^entry_edit_.*/",$name)){
111                                 $s_entry = preg_replace("/^entry_edit_/","",$name);
112                                 $s_entry = preg_replace("/_.*$/","",$s_entry);
113                                 $s_action = "edit";
114                         }elseif(preg_match("/^entry_delete_.*/",$name)){
115                                 $s_entry = preg_replace("/^entry_delete_/","",$name);
116                                 $s_entry = preg_replace("/_.*$/","",$s_entry);
117         $s_action = "delete";
118       }
119     }
121                 if(isset($_GET['edit_entry'])){
122                         $s_entry = $_GET['edit_entry'];
123                         $s_action = "edit";
124                 }
125     
126     if((isset($_POST['CancelBranchName'])) || (isset($_POST['CloseIFrame']))){
127       $this->dispNewBranch = false;
128       $this->dispNewFreeze = false;
129     }
132     /****************
133       Delete confirme dialog 
134      ****************/
136                 if ($s_action=="delete"){
138                         /* Get 'dn' from posted termlinst */
139                         $this->dn= $this->objects[$s_entry]['dn'];
141                         /* Load permissions for selected 'dn' and check if
142                            we're allowed to remove this 'dn' */
143                         $acl= get_permissions ($this->dn, $this->ui->subtreeACL);
144                         $this->acl= get_module_permission($acl, "FAIclass", $this->dn);
145                         if (chkacl($this->acl, "delete") == ""){
147                                 /* Check locking, save current plugin in 'back_plugin', so the dialog knows where to return. */
148                                 if (($user= get_lock($this->dn)) != ""){
149                                         return(gen_locked_message ($user, $this->dn));
150                                 }
152                                 /* Lock the current entry, so nobody will edit it during deletion */
153                                 add_lock ($this->dn, $this->ui->dn);
154                                 $smarty->assign("warning", sprintf(_("You're about to delete all information about the FAI class at '%s'."), @LDAP::fix($this->dn)));
155                                 return($smarty->fetch(get_template_path('remove.tpl', TRUE)));
156                         } else {
158                                 /* Obviously the user isn't allowed to delete. Show message and
159                                    clean session. */
160                                 print_red (_("You are not allowed to delete this component!"));
161                         }
162                 }
165     /****************
166       Delete aborted  
167      ****************/
169                 /* Delete canceled? */
170                 if (isset($_POST['delete_cancel'])){
171                         del_lock ($this->dn);
172                 }
175     /****************
176       Delete confirmed 
177      ****************/
179                 /* Deltetion was confirmed, so delete this entry
180                  */
181                 if (isset($_POST['delete_terminal_confirm'])){
183                         /* Some nice guy may send this as POST, so we've to check
184                            for the permissions again. */
185                         if (chkacl($this->acl, "delete") == ""){
187                                 /* Find out more about the object type */
188                                 $ldap     = $this->config->get_ldap_link();
189                                 $ldap->cat($this->dn, array('objectClass'));
190                                 $attrs  = $ldap->fetch();
191                                 $type     = $this->get_type($attrs);                    
192                                 $this->dialog = new $type[0]($this->config,     $this->config->data['TABS'][$type[2]], $this->dn);
193                                 $this->dialog->set_acl(array($this->acl));
195                                 $this->dialog->by_object[$type[1]]->remove_from_parent ();
196                                 unset ($this->dialog);
197                                 gosa_log ("FAI class '".$this->dn."' has been tagged as removed");
198                                 $this->dialog= NULL;
199         $to_del = clean_up_releases($this->dn);
200         save_release_changes_now();
202         foreach($to_del as $dn){
203           $ldap->rmdir_recursive($dn);
204           gosa_log(sprintf(_("Release cleanup : Removing object (tagged as remvoed) that is no longer in use '%s'."),$dn));
205         }
207                         } else {
209                                 /* Normally this shouldn't be reached, send some extra
210                                    logs to notify the administrator */
211                                 print_red (_("You are not allowed to delete this component!"));
212                                 gosa_log ("Warning: '".$this->ui->uid."' tried to trick system ".
213                                                 "deletion.");
214                         }
216                         /* Remove lock file after successfull deletion */
217                         del_lock ($this->dn);
218                 }
221     /****************
222       Edit entry 
223      ****************/
225                 if(($s_action == "edit") && (!isset($this->dialog->config))){
226                         $entry    = $this->objects[$s_entry];
227                         $a_setup  = $this->get_type($entry);
228                         $this->dn = $entry['dn'];
230                         /* Check locking, save current plugin in 'back_plugin', so the dialog knows where to return. */
231                         if (($user= get_lock($this->dn)) != ""){
232                                 return(gen_locked_message ($user, $this->dn));
233                         }
234                         add_lock ($this->dn, $this->ui->dn);
236                         $this->dialog     = new $a_setup[0]($this->config,$this->config->data['TABS'][$a_setup[2]],$this->dn);
237                         $this->is_dialog  = true;
239       if($entry['FAIstate'] == "freeze"){
240         $this->dialog->set_acl(array("*none*"))  ;
241       }
242                         $_SESSION['objectinfo'] = $this->dn;
243                 }
246     /*  Branch handling 
247         09.01.2006
248     */
250     /****************
251       Remove branch
252      ****************/
254     /* Remove branch 
255      */
256     if($s_action == "remove_branch"){
257       $base= $this->DivListFai->selectedBranch;
259       /* Load permissions for selected 'dn' and check if
260          we're allowed to remove this 'dn' */
261       $acl= get_permissions ($this->DivListFai->selectedBase, $this->ui->subtreeACL);
262       $this->acl= get_module_permission($acl, "FAIclass", $base);
263       if (chkacl($this->acl, "delete") == ""){
264         $smarty->assign("info", sprintf(_("You're about to delete a fai branch / freeze  '%s'."), $this->DivListFai->selectedBranch));
265         return($smarty->fetch(get_template_path('remove_branch.tpl',TRUE)));
266       } else {
267         print_red (_("You are not allowed to delete this release!"));
268       }
269     }
271     
272     /****************
273       Remove branch confirmed
274      ****************/
276     if(isset($_POST['delete_branch_confirm'])){
277       $bb =  $this->DivListFai->selectedBranch;
278       if(!isset($ldap)){
279         $ldap = $this->config->get_ldap_link();
280       }
282       $br = $this->getBranches();
284       if(isset($br[$bb])){
285         $name = $br[$bb];
286         $ldap->cd($bb);
287         $ldap->recursive_remove();
288         $ldap->cd(preg_replace('/,ou=fai,ou=configs,ou=systems,/', ',ou=apps,', $bb));
289         $ldap->recursive_remove();
290         $this->DivListFai->selectedBranch = "main";
292         /* Post remove */
293         $this->lock_name   = $name;
294         $this->lock_dn     = $bb;
295         $this->postremove();
296       }
297     }
300     /****************
301       Create a new branch "insert Name"
302      ****************/
304     if((isset($_POST['UseBranchName']))&&(($this->dispNewBranch)||($this->dispNewFreeze))){
305       $_SESSION['LASTPOST'] = $_POST;
307       if($this->dispNewBranch){
308         $type = "branch";
309       }else{
310         $type = "freeze";
311       }
313       /* Check branch name */
314       $name = $_POST['BranchName'];
315       $is_ok = true;
316       $smarty->assign("BranchName",$name);
317       $base= "ou=fai,ou=configs,ou=systems,".$this->DivListFai->selectedBase;
319       /* Check used characters */
320       if(preg_match("/[^0-9a-z \ö\ä\ü\.-_:,]/i",$name)){
321         if($type == "branch"){
322           print_red(_("Specified branch name is invalid."));
323         }else{
324           print_red(_("Specified freeze name is invalid."));
325         }
326         $is_ok = false;
327       }
329       /* Check if this name is already in use */
330       if(!$this->CheckNewBranchName($_POST['BranchName'],$this->DivListFai->selectedBranch)){
331         print_red(_("This name is already in use."));
332         $is_ok = false;
333       }
335       if($is_ok){
336         $_SESSION['LASTPOST']['base'] = $base;
337         $_SESSION['LASTPOST']['type'] = $type;
338         $smarty->assign("iframe", true);
339         $smarty->assign("plugID", $_GET['plug']);
340         $display        = $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
341         return($display);
342       }
343     }
346     /****************
347       Create a new branch 
348      ****************/
350     if(isset($_GET['PerformBranch'])){
351       /* Create it know */
352       $this->dispNewBranch = false;
353       $this->dispNewFreeze = false;
354       $base = $_SESSION['LASTPOST']['base'];
355       $_POST = $_SESSION['LASTPOST'];      
356       $name = $_POST['BranchName'];
358       $type = $_SESSION['LASTPOST']['type'];
359       $ldap = $this->config->get_ldap_link();
361       $baseToUse = $base;
362       if($this->DivListFai->selectedBranch != "main" ){
363         $baseToUse = $this->DivListFai->selectedBranch;
364       }
365   
366       /* Create new Release name to be able to set faidebianRelease for FAIpackageList */
367       
368       $CurrentReleases  = $this->getBranches();
369       $NewReleaseName   = $name;
370       if(isset($CurrentReleases[$this->DivListFai->selectedBranch])) {
371         if($this->DivListFai->selectedBranch != "main"){
372           $NewReleaseName = $CurrentReleases[$this->DivListFai->selectedBranch]."/".$name;
373           $NewReleaseName = preg_replace("#\/#","/",$NewReleaseName); 
374         }else{
375           $NewReleaseName   = $name;
376         }
377       }
379       $appsrc = preg_replace("/ou=fai,ou=configs,ou=systems,/","ou=apps,",$baseToUse); 
380       $appdst = preg_replace("/ou=fai,ou=configs,ou=systems,/","ou=apps,","ou=".$name.",".$baseToUse) ; 
382       $mimesrc = preg_replace("/ou=fai,ou=configs,ou=systems,/","ou=mime,",$baseToUse); 
383       $mimedst = preg_replace("/ou=fai,ou=configs,ou=systems,/","ou=mime,","ou=".$name.",".$baseToUse) ; 
385       /* Print header to have styles included */
386       echo "<!-- headers.tpl-->".$smarty->fetch(get_template_path('headers.tpl'));
387       echo "<body style='background-image:none;margin:3px;color:black'>";
389       /* Duplicate applications 
390        */
391       $ldap->cd ($appdst);
392       $ldap->recursive_remove();
393       $ldap->cd ($this->config->current['BASE']);
394       $ldap->copy_FAI_resource_recursive($appsrc,$appdst,$NewReleaseName,$type,true);
396       /* Duplicate mime types 
397        */
398       $ldap->cd ($appdst);
399       $ldap->recursive_remove();
400       $ldap->cd ($this->config->current['BASE']);
401       $ldap->copy_FAI_resource_recursive($mimesrc,$mimedst,$NewReleaseName,$type,true);
404       $attr = array();
405       $attr['objectClass'] = array("organizationalUnit","FAIbranch");
406       $attr['ou']       = $name;
407       $attr['FAIstate'] = $type;
408       $ldap->cd($this->config->current['BASE']);
409       $ldap->cd("ou=".$name.",".$baseToUse);
410       $ldap->cat("ou=".$name.",".$baseToUse);
411       if($ldap->count()){
412         $ldap->modify($attr);
413       }else{
414         $ldap->add($attr);
415       }
417       /* Duplicate fai objects 
418        */
419 //      $ldap->cd ("ou=".$name.",".$baseToUse);
420 //      $ldap->recursive_remove();
421 //      $ldap->cd ($this->config->current['BASE']);
422 //      $ldap->copy_FAI_resource_recursive($baseToUse,"ou=".$name.",".$baseToUse,$NewReleaseName,$type,true);
424       echo "<div style='width:100%;text-align:right;'><form name='form' method='post' action='?plug=".$_GET['plug']."' target='_parent'>
425               <br><input type='submit' name='CloseIFrame' value='"._("Continue")."'>
426             </form></div>";
428       /* Print footer to have valid html */
429       echo "</body></html>";
431       $this->dispNewFreeze = false; 
433       /* Postcreate */ 
435       /* Assign possible attributes */
436       $this->lock_type  = $type; 
437       $this->lock_name  = $name; 
438       $this->lock_dn    = $baseToUse;
439       $this->postcreate();
440       exit();
441     }
444     /****************
445       Display dialog to enter new Branch name
446      ****************/
448     if(($s_action == "branch_branch")||($this->dispNewBranch)){
449       $this->dispNewBranch=true;
450       $smarty->assign("iframe",false);
451                   $display      .= $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
452       return($display);
453     }
454    
455  
456     /****************
457       Display dialog to enter new Freeze name
458      ****************/
460     if(($s_action == "freeze_branch")||($this->dispNewFreeze)){
461       $this->dispNewFreeze = true;
462       $smarty->assign("iframe",false);
463                   $display      .= $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
464       return($display);
465     }
468     /****************
469       Create a new object 
470      ****************/
472     $types = array( "new_partition"     =>  "FAIpartitionTable",
473                     "new_script"        =>  "FAIscript",
474                     "new_hook"          =>  "FAIhook",
475                     "new_variable"      =>  "FAIvariable",
476                     "new_template"      =>  "FAItemplate",
477                     "new_package"       =>  "FAIpackageList");
479     if(isset($types[$s_action])){
480       $this->dialog = new askClassName($this->config,$this->dn,$this->ui,$types[$s_action]);
481     }
483     /* New Profile */
484     if($s_action == "new_profile"){
485       $this->dn = "new" ;
486       $a_setup= $this->get_type(array("objectClass"=>array("FAIprofile")));
488       $this->dialog = new $a_setup[0]($this->config,
489           $this->config->data['TABS'][$a_setup[2]],$this->dn);
490       $this->is_dialog = true;
491     }
494     /****************
495       Get from ask class name dialog 
496      ****************/
498     if($s_action == "select_class_name_finished"){
499       $this->dialog->save_object();
500       if(count($this->dialog->check())!=0){
501         foreach($this->dialog->check() as $msg){
502           print_red($msg);
503         }               
504       }else{
505         $this->dn = "new" ;
506         $a_setup= $this->get_type(array("objectClass"=>array($this->dialog->objectClass)));
507         $name = $this->dialog->save();
509         $this->dialog = new $a_setup[0]($this->config,
510             $this->config->data['TABS'][$a_setup[2]],$this->dn,$name);
511         $this->dialog->by_object[$a_setup[1]]->cn = $name;
512         $this->is_dialog = true;
513       }         
514     }   
517     /****************
518      Cancel dialogs 
519      ****************/
521                 if(isset($_POST['edit_cancel'])){
522                         unset($this->dialog);
523                         $this->dialog=NULL;
524                         $this->is_dialog = false;
525                         unset($_SESSION['objectinfo']);
526                         del_lock ($this->dn);
527                 }
530     /****************
531       Save sub dialogs 
532      ****************/
534                 /* This check if the given tab could be saved 
535                  * If it was possible to save it, remove dialog object. 
536                  * If it wasn't possible, show errors and keep dialog.
537                  */
538                 if((isset($_POST['edit_finish']) || isset($_POST['edit_apply'])) && (isset($this->dialog->config))){
539                         $this->dialog->save_object();
540       $msgs= $this->dialog->check();
541                         if(count($msgs)!=0){
542                                 foreach($msgs as $msg){
543                                         print_red($msg);
544                                 }
545                         }else{
546                                 $this->dialog->save();
547         save_release_changes_now();
548         if (!isset($_POST['edit_apply'])){
549           del_lock ($this->dn);
550           unset($this->dialog);
551           $this->dialog=NULL;
552           $this->is_dialog=false;
553           unset($_SESSION['objectinfo']);
554         }
555                         }
556                 }
559     /****************
560       Display currently open dialog 
561      ****************/
563                 /* If dialog is set, but $this->is_dialog==false, then 
564                  *  only the "abort" button is shown, this are dialogs that must not be saved.  
565                  * If is_dialog == true, we are currently editing tab objects.
566                  *  Here we need both, save and cancel
567                  */ 
569                 if(($this->dialog != NULL) && (isset($this->dialog->config))){
570                         $display .= $this->dialog->execute();
571                         /* Don't show buttons if tab dialog requests this */
572                         if (((isset($this->dialog->current))&&($this->dialog->by_object[$this->dialog->current]->is_dialog))){
573                                 
574                         }elseif(((isset($this->dialog->current))&&(!$this->dialog->by_object[$this->dialog->current]->is_dialog))){
575                                 $display.= "<p style=\"text-align:right\">\n";
576                                 $display.= "<input type=\"submit\" name=\"edit_finish\" style=\"width:80px\" value=\""._("Ok")."\">\n";
577                                 $display.= "&nbsp;\n";
578         if ($this->dn != "new"){
579           $display.= "<input type=submit name=\"edit_apply\" value=\""._("Apply")."\">\n";
580           $display.= "&nbsp;\n";
581         }
582                                 $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
583                                 $display.= "</p>";
584                         }elseif(!isset($this->dialog->current)){
585                                 $display.= "<p style=\"text-align:right\">\n";
586                                 $display.= "<input type=\"submit\" name=\"edit_continue\" value=\""._("Continue")."\">&nbsp;";
587                                 $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
588                                 $display.= "</p>";
589                         }
590                         return($display);
591                 }
592                 
594     /****************
595       Dialog display
596      ****************/
598     /* Check if there is a snapshot dialog open */
599     $base = $this->DivListFai->selectedBase;
600     if($str = $this->showSnapshotDialog($base,$this->get_used_snapshot_bases())){
601       return($str);
602     }
604     /* Display dialog with system list */
605     $this->DivListFai->parent = $this;
606     $this->DivListFai->execute();
607     $this->DivListFai->AddDepartments($this->DivListFai->selectedBase,4);
608     $this->reload();
609     $this->DivListFai->setEntries($this->objects);
610     return($this->DivListFai->Draw());
611         }
614   /* Return departments, that will be included within snapshot detection */
615   function get_used_snapshot_bases()
616   {
617     $tmp = array();
618     $types = array("hooks","scripts","disk","packages","profiles","templates","variables");
619     foreach($types as $type){
620       if($this->DivListFai->selectedBranch == "main"){
621         $tmp[] = "ou=".$type.",ou=fai,ou=configs,ou=systems,".$this->DivListFai->selectedBase;
622       }else{
623         $tmp[] = "ou=".$type.",".$this->DivListFai->selectedBranch;
624       }
625     }
626     return($tmp);
627   }
630   /* Get available branches for current base */
631   function getBranches($base = false,$prefix = "")
632   {
633     $ret = array("main"=>"/");
634     $ldap = $this->config->get_ldap_link();
635     if(!$base){
636       $base= "ou=fai,ou=configs,ou=systems,".$_SESSION['CurrentMainBase'];
637     }
638     $ldap->ls("(objectClass=FAIbranch)",$base);
639     while($attrs = $ldap->fetch()){
640       if((isset($attrs['ou']))&&($attrs['dn']!=$base)){
641         $ret[$attrs['dn']]= $prefix.$attrs['ou'][0];
642         $ret = array_merge($ret,$this->getBranches($attrs['dn'],"".$prefix.$attrs['ou'][0]."/"));
643       }
644     }
646     return ($ret);
647   }
649   
651   /* reload list of objects */
652   function reload()
653   {
654     /* Variable initialisation */
655     $str            = "";
656     $Regex          = $this->DivListFai->Regex;
657     $this->objects  = array();
659     /* Get base */
660     $base = "ou=fai,ou=configs,ou=systems,".$this->DivListFai->selectedBase;
661     if($this->DivListFai->selectedBranch != "main"){
662       $br = $this->getBranches();
663       if(isset($br[$this->DivListFai->selectedBranch])){
664         $base = $this->DivListFai->selectedBranch;
665       }else{
666         $base = "ou=fai,ou=configs,ou=systems,".$this->DivListFai->selectedBase;
667       }
668     }
670     $this->lock_type = get_release_tag(get_release_dn($base));
672     /* Get resolved release dependencies */
673     $tmp = get_all_objects_for_given_base($base,"(&(|(objectClass=FAIpartitionTable)(objectClass=FAIpackageList)(objectClass=FAIscript)
674       (objectClass=FAIvariable)(objectClass=FAIhook)(objectClass=FAIprofile)(objectClass=FAItemplate))(cn=$Regex))");
676     /* Create a new list of FAI object 
677      * Generate List of Partitions,Hooks,Scripts,Templates,Profiles ... 
678      */
679     $ObjectTypes = array(
680         "FAIpartitionTable"  => array("OU"=>"ou=disk,"        , "CHKBOX"=>"ShowPartitions"),
681         "FAIpackageList"     => array("OU"=>"ou=packages,"    , "CHKBOX"=>"ShowPackages"),
682         "FAIscript"          => array("OU"=>"ou=scripts,"     , "CHKBOX"=>"ShowScripts"),
683         "FAIvariable"        => array("OU"=>"ou=variables,"   , "CHKBOX"=>"ShowVariables"),
684         "FAIhook"            => array("OU"=>"ou=hooks,"       , "CHKBOX"=>"ShowHooks"),
685         "FAIprofile"         => array("OU"=>"ou=profiles,"    , "CHKBOX"=>"ShowProfiles"),
686         "FAItemplate"        => array("OU"=>"ou=templates,"   , "CHKBOX"=>"ShowTemplates"));
688     /* Ge listed ldap objects */
689     $ldap = $this->config->get_ldap_link();
690     $ldap->cd($this->config->current['BASE']);
691     foreach($tmp as $entry){
693       /* Get some more informations about the object */ 
694       $ldap->cat($entry['dn'], array("cn","description","objectClass","FAIclass","FAIstate","objectClass"));
695       $object  = $ldap->fetch();
697       /* Walk through possible types */
698       foreach($ObjectTypes as $type => $rest){  
700         /* Skip all unchecked types */
701         if(! $this->DivListFai->$rest['CHKBOX']){
702           continue;
703         }
705         if(in_array($type,$object['objectClass'])){
707           /* Prepare object */
708           unset($object['objectClass']['count']);
709           if(!isset($object['description'][0])){
710             $object['description'][0]="";
711           }
713           /* Clean up object informations */
714           $obj                  = array();
715           $obj['cn']                          = $object['cn'][0];
716           $obj['dn']                          = $object['dn'];
717           $obj['description']   = $object['description'][0];
718           $obj['objectClass']   = $object['objectClass'];
720           /* Append type to this string, to be able to check if the selected 
721            * entry is of type 'freeze' or 'branch'
722            */
723           if(!isset($object['FAIstate'])){
724             $obj['FAIstate'] = $this->lock_type;
725           }else{
726             $obj['FAIstate'] = $object['FAIstate'][0]; 
727           }
729           $this->objects[strtolower($obj['cn']).$obj['cn'].$type] = $obj;
730           $this->objects[strtolower($obj['cn']).$obj['cn'].$type]['type']=$type;
731         }
732                         }
733                 }
735                 ksort($this->objects);
736                 reset ($this->objects);
737         
738                 /* use numeric index, thats a bit more secure */        
739                 $tmp0 = array();
740                 foreach($this->objects as $obj){
741                         $tmp0[]= $obj;
742                 }
743                 $this->objects = array();
744                 $this->objects = $tmp0;
745         }
747         function remove_lock()
748         {
749                 if (isset($this->dn)){
750                         del_lock ($this->dn);
751                 }
752         }
754         function get_type($array){
755                 if(in_array("FAIpartitionTable",$array['objectClass'])){
756                         return(array("tabsPartition","faiPartitionTable","FAIPARTITIONTABS"));
757                 }
758                 if(in_array("FAIscript",$array['objectClass'])){
759                         return(array("tabsScript","faiScript","FAISCRIPTTABS"));
760                 }
761                 if(in_array("FAItemplate",$array['objectClass'])){
762                         return(array("tabsTemplate","faiTemplate","FAITEMPLATETABS"));
763                 }
764                 if(in_array("FAIhook",$array['objectClass'])){
765                         return(array("tabsHook","faiHook","FAIHOOKTABS"));
766                 }
767                 if(in_array("FAIvariable",$array['objectClass'])){
768                         return(array("tabsVariable","faiVariable","FAIVARIABLETABS"));
769                 }
770                 if(in_array("FAIprofile",$array['objectClass'])){
771                         return(array("tabsProfile","faiProfile","FAIPROFILETABS"));
772                 }
773                 
774                 if(in_array("FAIpackageList",$array['objectClass'])){
775                         return(array("tabsPackage","faiPackage","FAIPACKAGETABS"));
776                 }
777         }
779   function CheckNewBranchName($name,$base)
780   {
781     $f = $this->DivListFai->selectedBranch;
782     if(empty($name)){
783       return(false);
784     }elseif(in_array($name,$this->getBranches($f))) {
785       return(false);
786     }elseif(empty($name)){
787       return(false);
788     }elseif(is_department_name_reserved($name,$base)){
789       return(false);
790     }
791     return(true);
792   }
794   function save_object()
795   {
796     $this->DivListFai->save_object();
797   }
800 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
801 ?>