Code

Fixed FAIclass selection
[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";
29 class faiManagement extends plugin
30 {
31         /* Definitions */
32         var $plHeadline                 = "FAI";
33         var $plDescription              = "Fully Automatic Installation - management";
35         /* CLI vars */
36         var $cli_summary                = "Handling of FAI entries";
37         var $cli_description    = "This plugin represents a management tool\n
38                 which allows us to manage all needed attributes for fully automatic installations (FAI)";
39         var $cli_parameters             = array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
41         /* Headpage attributes */
42         var $departments= array();
43         var $deptabs= NULL;
44   var $lock_type    = "";    // should be branch/freeze
45   var $lock_name    = "";
46   var $lock_dn      = "";  
48         /* attribute list for save action */
49         var $attributes                 = array("lock_type","lock_name","lock_dn");     //      Attributes Managed by this plugin, none, 
50         //      because this is only an overview over all objects already defined in FAI.
51         var $objectclasses              = array();      //      ObjectClasses which the attributes are related to
52         var $dialog                             = array();      //      This object contains every dialog we have currently opened
54         var $objects                    = array();      //      This array contains all available objects shown in divlist
55         var $is_dialog          = false;
57   var $dispNewBranch= false;
58   var $dispNewFreeze= false;
60         /* construction/reconstruction 
61          * The Filter ($faifilter stored in $_SESSION['faifilter']) defines the last 
62          *  selected department and filter options
63          * If it is not defined already we create a new fresh faifilter.
64          */
65         function faiManagement ($config, $ui)
66         {
67                 $this->ui                       = $ui;  
69                 /* Set current dn to "", */
70                 $this->dn                       = "";
72                 /* Assign config */
73                 $this->config           = $config;
75                 /* Get global filter config */
76                 if (!is_global("faifilter")){
77                         $base   = get_base_from_people($ui->dn);
78                         $faifilter= array("base" => $base,
79                                         "regex" => "*","branch" => "main");
80                         $faifilter['ShowProfiles']      = true;
81                         $faifilter['ShowTemplates'] = true;
82                         $faifilter['ShowScripts']       = true;
83                         $faifilter['ShowHooks']         = true;
84                         $faifilter['ShowVariables']     = true;
85                         $faifilter['ShowPackages']      = true;
86                         $faifilter['ShowPartitions']=true;
87                         register_global("faifilter", $faifilter);
88                 }
89         }
91         function execute()
92         {
94         /* Call parent execute */
95         plugin::execute();
97     $_SESSION['LOCK_VARS_TO_USE'] = array("/^edit_entry$/","/^id$/","/^entry_edit_/","/^entry_delete_/");
99                 $display        = "";
100                 $smarty         = get_smarty();
101                 $smarty->assign("BranchName","");
102     $s_action   = "";
103                 $s_entry        = "";
104                 /* filter management 
105                  * Filter will be changed if POST['regex'] or $_GET['search'] isset
106                  * New Filter will be stored in session and is used to generate list contents
107                  */     
108                 $faifilter = $_SESSION['faifilter'];
109     
110     if((isset($_POST['select_branch']))&&(!empty($_POST['select_branch']))){
111       $faifilter['branch'] = $_POST['select_branch'];
112     }
114                 /* Filter is posted by apply button 
115                  * Check every single chkbox 
116                  */
117                 if(isset($_POST['regex'])){
118                         $faifilter['regex'] = $_POST['regex']."*";
119                         foreach(array("ShowPartitions","ShowProfiles","ShowTemplates","ShowScripts","ShowHooks","ShowVariables","ShowPackages") as $attrs){
120                                 if(isset($_POST[$attrs])){
121                                         $faifilter[$attrs] = true;
122                                 }else{
123                                         $faifilter[$attrs] = false;
124                                 }
125                         }
126                 }
129                 /* Check ImageButton posts
130                  * Create new tab ich new_xx is posted
131                  */
132                 foreach($_POST as $key => $val){
133       if(preg_match("/remove_branch/",$key)){
134         $s_action = "remove_branch";
135       }elseif(preg_match("/branch_branch/",$key)){
136         $s_action = "branch_branch";
137       }elseif(preg_match("/freeze_branch/",$key)){
138         $s_action = "freeze_branch";
139                         }elseif(preg_match("/create_partition/i",$key)){
140                                 $s_action = "new_partition";
141                         }elseif(preg_match("/create_script/i",$key)){
142                                 $s_action = "new_script";
143                         }elseif(preg_match("/create_hook/i",$key)){
144                                 $s_action = "new_hook";
145                         }elseif(preg_match("/create_variable/i",$key)){
146                                 $s_action = "new_variable";
147                         }elseif(preg_match("/create_template/i",$key)){
148                                 $s_action = "new_template";
149                         }elseif(preg_match("/create_package/i",$key)){
150                                 $s_action = "new_package";
151                         }elseif(preg_match("/create_profile/i",$key)){
152                                 $s_action = "new_profile";
153                         }elseif(preg_match("/edit_continue/",$key)){
154                                 $s_action = "select_class_name_finished";
155                         }elseif(preg_match("/^entry_edit_.*/",$key)){
156                                 $s_entry = preg_replace("/^entry_edit_/","",$key);
157                                 $s_entry = preg_replace("/_.*$/","",$s_entry);
158                                 $s_action = "edit";
159                         }elseif(preg_match("/^entry_delete_.*/",$key)){
160                                 $s_entry = preg_replace("/^entry_delete_/","",$key);
161                                 $s_entry = preg_replace("/_.*$/","",$s_entry);
162         $s_action = "delete";
163       }elseif(preg_match("/dep_back.*/i",$key)){
164         $faifilter['branch'] = "main";
165         $s_action="back";
166       }elseif(preg_match("/dep_home.*/i",$key)){
167         $faifilter['branch'] = "main";
168         $s_action="home";
169       }elseif(preg_match("/dep_root.*/i",$key)){
170         $faifilter['branch'] = "main";
171         $s_action="root";
172       }
174     }
176                 if($s_action=="root"){
177                         $faifilter['base']=($this->config->current['BASE']);
178                 }
180                 if($s_action=="home"){
181                         $faifilter['base']= get_base_from_people($this->ui->dn);
182                         //$faifilter['base']=(preg_replace("/^[^,]+,/","",$faifilter['base']));
183                 }
185                 if($s_action=="back"){
186                         $base_back          = preg_replace("/^[^,]+,/","",$faifilter['base']);
187                         $base_back          = convert_department_dn($base_back);
189                         if(isset($this->config->departments[trim($base_back)])){
190                                 $faifilter['base']= $this->config->departments[trim($base_back)];
191                         }else{
192                                 $faifilter['base']= $this->config->departments["/"];
193                         }
194                 }
196                 if(isset($_GET['act'])&&($_GET['act']=="dep_open")){
197             $s_action="open";
198             $s_entry = base64_decode($_GET['dep_id']);
199             $faifilter['base']= $this->config->departments[trim($s_entry)];
200         }
202                 if(isset($_GET['edit_entry'])){
203                         $s_entry = $_GET['edit_entry'];
204                         $s_action = "edit";
205                 }
207                 /* Confirm dialog 
208                  * Delte object 
209          */
210                 if ($s_action=="delete"){
212                         /* Get 'dn' from posted termlinst */
213                         $this->dn= $this->objects[$s_entry]['dn'];
215                         /* Load permissions for selected 'dn' and check if
216                            we're allowed to remove this 'dn' */
217                         $acl=           get_permissions ($this->dn, $this->ui->subtreeACL);
218                         $this->acl= get_module_permission($acl, "FAIclass", $this->dn);
219                         if (chkacl($this->acl, "delete") == ""){
221                                 /* Check locking, save current plugin in 'back_plugin', so the dialog knows where to return. */
222                                 if (($user= get_lock($this->dn)) != ""){
223                                         return(gen_locked_message ($user, $this->dn));
224                                 }
226                                 /* Lock the current entry, so nobody will edit it during deletion */
227                                 add_lock ($this->dn, $this->ui->dn);
228                                 $smarty->assign("warning", sprintf(_("You're about to delete all information about the FAI class at '%s'."), LDAP::fix($this->dn)));
229                                 return($smarty->fetch(get_template_path('remove.tpl', TRUE)));
230                         } else {
232                                 /* Obviously the user isn't allowed to delete. Show message and
233                                    clean session. */
234                                 print_red (_("You are not allowed to delete this component!"));
235                         }
236                 }
238                 /* Delete canceled? */
239                 if (isset($_POST['delete_cancel'])){
240                         del_lock ($this->dn);
241                 }
244                 /* Deltetion was confirmed, so delete this entry
245                  */
246                 if (isset($_POST['delete_terminal_confirm'])){
248                         /* Some nice guy may send this as POST, so we've to check
249                            for the permissions again. */
250                         if (chkacl($this->acl, "delete") == ""){
252                                 /* Find out more about the object type */
253                                 $ldap   = $this->config->get_ldap_link();
254                                 $ldap->cat($this->dn);
255                                 $attrs  = $ldap->fetch();
257                                 $type   = $this->get_type($attrs);                      
259                                 $this->dialog= new $type[0]($this->config,      $this->config->data['TABS'][$type[2]], $this->dn);
260                                 $this->dialog->set_acl(array($this->acl));
262                                 $this->dialog->by_object[$type[1]]->remove_from_parent ();
263                                 unset ($this->dialog);
264                                 gosa_log ("FAI class '".$this->dn."' has been removed");
265                                 $this->dialog= NULL;
267                                 /* Terminal list has changed, reload it. */
268                         } else {
270                                 /* Normally this shouldn't be reached, send some extra
271                                    logs to notify the administrator */
272                                 print_red (_("You are not allowed to delete this component!"));
273                                 gosa_log ("Warning: '".$this->ui->uid."' tried to trick system ".
274                                                 "deletion.");
275                         }
277                         /* Remove lock file after successfull deletion */
278                         del_lock ($this->dn);
279                 }
281                 /* Edit Entry */
282                 //if($s_action == "edit"){
283                 if(($s_action == "edit") && (!isset($this->dialog->config))){
284                         $entry  = $this->objects[$s_entry];
286                         $a_setup = ($this->get_type($entry));
287                 
288                         $this->dn = $entry['dn'];
289                         /* Check locking, save current plugin in 'back_plugin', so the dialog knows where to return. */
290                         if (($user= get_lock($this->dn)) != ""){
291                                 return(gen_locked_message ($user, $this->dn));
292                         }
293                         add_lock ($this->dn, $this->ui->dn);
295                         $this->dialog= new $a_setup[0]($this->config,
296                                         $this->config->data['TABS'][$a_setup[2]],$this->dn);
297                         $this->is_dialog = true;
298       if($entry['FAIstate'] == "freeze"){
299         $this->dialog->set_acl(array("*none*"))  ;
300       }
301                         $_SESSION['objectinfo'] = $this->dn;
302                 }
304     /*  Branch handling 
305         09.01.2006
306     */
308     /* Abort creating new branch 
309      */
310     if(isset($_POST['CancelBranchName'])){
311       $this->dispNewBranch = false;
312       $this->dispNewFreeze = false;
313     }
314     
315     /* Remove branch 
316      */
317     if($s_action == "remove_branch"){
318       $base= $faifilter['branch'];
319       /* Load permissions for selected 'dn' and check if
320          we're allowed to remove this 'dn' */
321       $acl= get_permissions ($faifilter['base'], $this->ui->subtreeACL);
322       $this->acl= get_module_permission($acl, "FAIclass", $base);
323       if (chkacl($this->acl, "delete") == ""){
324         $smarty->assign("info", sprintf(_("You're about to delete a fai branch / freeze  '%s'."), $faifilter['branch']));
325         return($smarty->fetch(get_template_path('remove_branch.tpl',TRUE)));
326       } else {
327         print_red (_("You are not allowed to delete this release!"));
328       }
329     }
331     /* Delete this entry 
332      */
333     if(isset($_POST['delete_branch_confirm'])){
334       $bb =  $faifilter['branch'];
335       if(!isset($ldap)){
336         $ldap = $this->config->get_ldap_link();
337       }
339       $br = $this->getBranches();
341       if(isset($br[$bb])){
343         $name = $br[$bb];
345         $ldap->cd($bb);
346         $ldap->recursive_remove();
347         $faifilter['branch'] = "main";
349         /* Post remove */
350                 
351         //  $this->lock_type is set from this->reload
352         $this->lock_name   = $name;
353         $this->lock_dn     = $bb;
355         $this->postremove();
356       }
357     }
359     /* Open dialog to insert new branch name 
360      */
362     if((isset($_POST['UseBranchName']))&&(($this->dispNewBranch)||($this->dispNewFreeze))){
363       $_SESSION['LASTPOST'] = $_POST;
365       if($this->dispNewBranch){
366         $type = "branch";
367       }else{
368         $type = "freeze";
369       }
371       /* Check branch name */
372       $name = $_POST['BranchName'];
373       $is_ok = true;
375       $smarty->assign("BranchName",$name);
377       $base= "ou=fai,ou=configs,ou=systems,".$faifilter['base'];
379       /* Check used characters */
380       if(preg_match("/[^0-9a-z \ö\ä\ü\.-_:,]/i",$name)){
381         if($type == "branch"){
382           print_red(_("Specified branch name is invalid."));
383         }else{
384           print_red(_("Specified freeze name is invalid."));
385         }
386         $is_ok = false;
387       }
389       /* Check if this name is already in use */
390       if(!$this->CheckNewBranchName($_POST['BranchName'],$faifilter['branch'])){
391         print_red(_("This name is already in use."));
392         $is_ok = false;
393       }
395       if($is_ok){
396         $_SESSION['LASTPOST']['base'] = $base;
397         $_SESSION['LASTPOST']['type'] = $type;
398         $smarty->assign("iframe", true);
399         $smarty->assign("plugID", $_GET['plug']);
400         $display        = $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
401         return($display);
402       }
403     }
405     if(isset($_GET['PerformBranch'])){
406       /* Create it know */
407       $this->dispNewBranch = false;
408       $this->dispNewFreeze = false;
409       $base = $_SESSION['LASTPOST']['base'];
410       $_POST = $_SESSION['LASTPOST'];      
411       $name = $_POST['BranchName'];
413       $type = $_SESSION['LASTPOST']['type'];
415       $ldap = $this->config->get_ldap_link();
417       $baseToUse = $base;
418       if($_SESSION['faifilter']['branch']!="main"){
419         $baseToUse = $_SESSION['faifilter']['branch'];
420       }
422       $ldap->cd ("ou=".$name.",".$baseToUse);
423       $ldap->recursive_remove();
425       $ldap->cd ($this->config->current['BASE']);
426       $ldap->copy_FAI_resource_recursive($baseToUse,"ou=".$name.",".$baseToUse,$type,true);
428       $this->dispNewFreeze = false; 
430       /* Postcreate */ 
432       /* Assign possible attributes */
433       $this->lock_type  = $type; 
434       $this->lock_name  = $name; 
435       $this->lock_dn    = $baseToUse;
436       $this->postcreate();
437       exit();
438     }
440     if(($s_action == "branch_branch")||($this->dispNewBranch)){
441       $this->dispNewBranch=true;
442       $smarty->assign("iframe",false);
443                   $display      .= $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
444       return($display);
445     }
446     
447     if(($s_action == "freeze_branch")||($this->dispNewFreeze)){
448       $this->dispNewFreeze = true;
449       $smarty->assign("iframe",false);
450                   $display      .= $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
451       return($display);
452     }
454     /* ENDE Branch handling 
455      */
457     /* Dialog handling */
458     if($s_action == "new_partition"){
459       $this->dialog = new askClassName($this->config,$this->dn,$this->ui,"FAIpartitionTable");
460     }
462     /* Dialog handling */
463     if($s_action == "new_script"){
464       $this->dialog = new askClassName($this->config,$this->dn,$this->ui,"FAIscript");
465     }
467     /* Dialog handling */
468     if($s_action == "new_hook"){
469       $this->dialog = new askClassName($this->config,$this->dn,$this->ui,"FAIhook");
470     }
472     /* Dialog handling */
473     if($s_action == "new_variable"){
474       $this->dialog = new askClassName($this->config,$this->dn,$this->ui,"FAIvariable");
475     }
477     /* Dialog handling */
478     if($s_action == "new_template"){
479       $this->dialog = new askClassName($this->config,$this->dn,$this->ui,"FAItemplate");
480     }
482     /* Dialog handling */
483     if($s_action == "new_package"){
484       $this->dialog = new askClassName($this->config,$this->dn,$this->ui,"FAIpackageList");
485     }
487     /* New Profile */
488     if($s_action == "new_profile"){
489       $this->dn = "new" ;
490       $a_setup= $this->get_type(array("objectClass"=>array("FAIprofile")));
492       $this->dialog = new $a_setup[0]($this->config,
493           $this->config->data['TABS'][$a_setup[2]],$this->dn);
494       $this->is_dialog = true;
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     }   
516     /* Search is set */
517     if(isset($_GET['search'])){
518       $faifilter['regex']=$_GET['search']."*";
519     }
521     /* Department select */
522     if((isset($_POST['base']))&&($s_action=="")){
523                         $faifilter['base']=$_POST['base'];
524                 }
526     $base= "ou=fai,ou=configs,ou=systems,".$faifilter['base'];
528     $br = $this->getBranches($base);
529     if(!isset($br[$faifilter['branch']])){
530       $faifilter['branch'] = "main";
531     }
532    
533     $smarty->assign("select_branch",$faifilter['branch']);
535                 /* remove double asterisks and save new filter */
536                 $faifilter['regex'] = preg_replace("/\*\*/","*",$faifilter['regex']);
537                 $_SESSION['faifilter']= $faifilter;
539                 /* Edit dialog was canceled 
540                  * Remove dialog an show management dialog
541                  */
542                 if(isset($_POST['edit_cancel'])){
543                         unset($this->dialog);
544                         $this->dialog=NULL;
545                         $this->is_dialog = false;
546                         unset($_SESSION['objectinfo']);
547                         del_lock ($this->dn);
548                 }
550                 /* This check if the given tab could be saved 
551                  * If it was possible to save it, remove dialog object. 
552                  * If it wasn't possible, show errors and keep dialog.
553                  */
554                 if((isset($_POST['edit_finish'])) && (isset($this->dialog->config))){
555                         $this->dialog->save_object();
556                         if(count($this->dialog->check())!=0){
557                                 foreach($this->dialog->check() as $msg){
558                                         print_red($msg);
559                                 }
560                         }else{
561                                 del_lock ($this->dn);
562                                 $this->dialog->save();
563                                 unset($this->dialog);
564                                 $this->dialog=NULL;
565                                 $this->is_dialog=false;
566                                 unset($_SESSION['objectinfo']);
567                         }
568                 }
570                 /* If dialog is set, but $this->is_dialog==false, then 
571                  *  only the "abort" button is shown, this are dialogs that must not be saved.  
572                  * If is_dialog == true, we are currently editing tab objects.
573                  *  Here we need both, save and cancel
574                  */ 
576                 if(($this->dialog != NULL) && (isset($this->dialog->config))){
577                         $display .= $this->dialog->execute();
578                         /* Don't show buttons if tab dialog requests this */
579                         if (((isset($this->dialog->current))&&($this->dialog->by_object[$this->dialog->current]->is_dialog))){
580                                 
581                         }elseif(((isset($this->dialog->current))&&(!$this->dialog->by_object[$this->dialog->current]->is_dialog))){
582                                 $display.= "<p style=\"text-align:right\">\n";
583                                 $display.= "<input type=\"submit\" name=\"edit_finish\" value=\""._("Finish")."\">\n";
584                                 $display.= "&nbsp;\n";
585                                 $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
586                                 $display.= "</p>";
587                         }elseif(!isset($this->dialog->current)){
588                                 $display.= "<p style=\"text-align:right\">\n";
589                                 $display.= "<input type=\"submit\" name=\"edit_continue\" value=\""._("Continue")."\">&nbsp;";
590                                 $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
591                                 $display.= "</p>";
592                         }
593                         return($display);
594                 }
596                 /* Show Management template
597                  * The following code will only be reached if no dialog (tabs or dialogs)
598                  *  are currently opened.
599                  * Assign all reguired vars to template engine
600                  */
602                 /* Prepare departments */
603                 $options= "";
604                 foreach ($this->config->idepartments as $key => $value){
605                         if ($faifilter['base'] == $key){
606                                 $options.= "<option selected='selected' value='$key'>$value</option>";
607                         } else {
608                                 $options.= "<option value='$key'>$value</option>";
609                         }
610                 }
612                 /* Create listhead, it will be shown on top of the divlist. 
613                  * It provides general navigation and object creation
614                  */
615                 $faihead = 
616                         "<div style='background:#F0F0F9;padding:5px;'>&nbsp;".
618                         "<input class='center' type='image' src='images/list_up.png' align='middle' 
619                         title='"._("Go up one department")."' name='dep_back' alt='"._("Up"). "'>&nbsp;".
621                         "<input class='center' type='image' src='images/list_root.png' align='middle' 
622                         title='"._("Go to root department")."' name='dep_root' alt='".      _("Root")."'>&nbsp;".
624                         "<input class='center' type='image' src='images/list_home.png' align='middle' 
625                         title='"._("Go to users home department")."' name='dep_home' alt='"._("Home")."'>&nbsp;".
627                         "<img class='center' src=\"images/list_seperator.png\" alt=\"\" align=\"middle\" height=\"16\" width=\"1\">&nbsp;".
628                         
629                         " <input class='center' type='image' src='images/fai_new_profile.png' align='middle' 
630                         title='"._("New profile")."' name='Create_profile' alt='"._("P")."'>&nbsp;".
631                         
632                         "<img class='center' src=\"images/list_seperator.png\" alt=\"\" align=\"middle\" height=\"16\" width=\"1\">&nbsp;".
633                                 
634                         " <input class='center' type='image' src='images/fai_new_partitionTable.png' align='middle' 
635                         title='"._("New partition table")."' name='Create_partition' alt='"._("PT")."'>&nbsp;".
637                         " <input class='center' type='image' src='images/fai_new_script.png' align='middle' 
638                         title='"._("New scripts")."' name='Create_script' alt='"._("S")."'>&nbsp;".
640                         " <input class='center' type='image' src='images/fai_new_hook.png' align='middle' 
641                         title='"._("New hooks")."' name='Create_hook' alt='"._("H")."'>&nbsp;".
643                         " <input class='center' type='image' src='images/fai_new_variable.png' align='middle' 
644                         title='"._("New variables")."' name='Create_variable' alt='"._("V")."'>&nbsp;".
645                         
646                         " <input class='center' type='image' src='images/fai_new_template.png' align='middle' 
647                         title='"._("New templates")."' name='Create_template' alt='"._("T")."'>&nbsp;".
649                         " <input class='center' type='image' src='images/fai_new_packages.png' align='middle' 
650                         title='"._("New package list")."' name='Create_package' alt='"._("PK")."'>&nbsp;".
652                         " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
654                         _("Base")."&nbsp;<select name='base' onChange='mainform.submit()' class='center'>$options</select>".
655                         " <input class='center' type='image' src='images/list_submit.png' align='middle' title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'>&nbsp;".
656                         
657                         "</div>";
659                 $this->reload();
661                 /* Create list with objects */
662                 $divlist = new divlist("faiManagement"); 
663                 $divlist->SetEntriesPerPage(0);
664                 $divlist->SetSummary(_("This table displays all systems, in the selected tree."));
666                 $divlist->SetHeader(array(
667                                         array("string" => "&nbsp;", "attach" => "style='text-align:center;width:20px;'"),
668                                         array("string" => _("Name of FAI class"), "attach" => "style=''"),
669                                         array("string" => _("Class type"), "attach" => "style='width:200px;'"),
670                                         array("string" => _("Actions"), "attach" => "style='width:60px;border-right:0px;text-align:right;'")));
673                 $action  = "<input class='center' type='image' src='images/edit.png'    alt='"._("edit")."'   name='entry_edit_%KEY%' title='"._("Edit class")."'>";
674                 $action .= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."' name='entry_delete_%KEY%' title='"._("Delete class")."'>";
676                 $editlink ="<a href='?plug=".$_GET['plug']."&amp;edit_entry=%KEY%'>%NAME%</a>";                 
677                 $linkopen = "<a href='?plug=".$_GET['plug']."&amp;act=dep_open&amp;dep_id=%s'>%s</a>";
679                 foreach($this->departments as $key => $val) {
680                         if(!isset($this->config->departments[trim($key)])){
681                                 $this->config->departments[trim($key)]="";
682                         }
684                         $non_empty="";
685                         $keys= str_replace("/","\/",$key);
686                         foreach($this->config->departments as $keyd=>$vald ){
687                                 if(preg_match("/".$keys."\/.*/",$keyd)){
688                                         $non_empty="full";
689                                 }
690                         }
693                         $title = $this->config->departments[$key];
694                         $field0 = array("string" => "<img src='images/".$non_empty."folder.png' title='"._("department")."' alt='department'>", "attach" => "style='text-align:center;width:20px;'");
695                         $field1 = array("string" => sprintf($linkopen,base64_encode($key),$val), "attach" => "style='' title='".$title."'");
696                         $field2 = array("string" => "&nbsp;", "attach" => "style='width:200px;'");
697                         $field3 = array("string" => "&nbsp;", "attach" => "style='width:60px;border-right:0px;text-align:right;'");
699                         $divlist->AddEntry( array($field0,$field1,$field2,$field3));
701                 }
702     
703                 /* Attach objects */
704                 foreach($this->objects as $key => $value){
705                                 $info= "";
706                                 $img = "";
707                                 $type = $value['type'];
708                                 $abort=false;
710                                 switch($type) {
711                                         case "FAIpartitionTable"        : 
712                                                 if(!$faifilter['ShowPartitions']){ 
713                                                         $abort = true;
714                                                 }
715                                         $img="<img class='center' src='images/fai_partitionTable.png' title='"._("Partition table")."' alt='PT'>";
716                                         $info = _("Partition table");
717                                         break;
718                                         case "FAIpackageList"           : 
719                                                 if(!$faifilter['ShowPackages']){ 
720                                                         $abort = true;
721                                                 }
722                                         $img="<img class='center' src='images/fai_packages.png' title='"._("Package list")."' alt='PL'>";
723                                         $info = _("Package list");
724                                         break;
725                                         case "FAIscript"                        : 
726                                                 if(!$faifilter['ShowScripts']){ 
727                                                         $abort = true;
728                                                 }
729                                         $img="<img class='center' src='images/fai_script.png' title='"._("Scripts")."' alt='S'>";
730                                         $info = _("Scripts");
731                                         break;
732                                         case "FAIvariable"                      : 
733                                                 if(!$faifilter['ShowVariables']){ 
734                                                         $abort = true;
735                                                 }
736                                         $img="<img class='center' src='images/fai_variable.png' title='"._("Variables")."' alt='V'>";
737                                         $info = _("Variables");
738                                         break;
739                                         case "FAIhook"                          :
740                                                 if(!$faifilter['ShowHooks']){ 
741                                                         $abort = true;
742                                                 }
743                                         $img="<img class='center' src='images/fai_hook.png' title='"._("Hooks")."' alt='H'>";
744                                         $info = _("Hooks");
745                                         break;
746                                         case "FAIprofile"                       : 
747                                                 if(!$faifilter['ShowProfiles']){ 
748                                                         $abort = true;
749                                                 }
750                                         $img="<img class='center' src='images/fai_profile.png' title='"._("Profile")."' alt='P'>";
751                                         $info = _("Profile");
752                                         break;
753                                         case "FAItemplate"                      : 
754                                                 if(!$faifilter['ShowTemplates']){ 
755                                                         $abort = true;
756                                                 }
757                                         $img="<img class='center' src='images/fai_template.png' title='"._("Templates")."' alt='T'>";
758                                         $info = _("Templates");
759                                         break;
760                                         default                                         : 
761                                         $img="<img class='center' src='images/empty.png' alt=''>";$info = "";break;
763                                 }
764                                 
765                                 if(!$abort)     {
766                                         if((isset($value['description']))&&(!empty($value['description']))){
767                                                 $desc= " [".$value['description']."]";
768                                         }else{
769                                                 $desc= "";
770                                         }
772           if($value['FAIstate'] == "freeze"){
773             $action  = "<input class='center' type='image' src='images/edit.png'        alt='"._("edit")."'   
774               name='entry_edit_%KEY%' title='"._("Edit class")."'>";
775             $edi = $editlink;
776             $acti = $action;
777           }else{
778             $action  = "<input class='center' type='image' src='images/edit.png'        alt='"._("edit")."'   
779               name='entry_edit_%KEY%' title='"._("Edit class")."'>";
780             $action .= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."' 
781               name='entry_delete_%KEY%' title='"._("Delete class")."'>";
782             $acti = $action;
783             $edi = $editlink;
784           }
786                                         $field1 = array("string" => $img , "attach" => "style='text-align:center;width:20px;'");
787                                         $field2 = array("string" => preg_replace(array("/%KEY%/","/%NAME%/"),array($key,$value['cn'].$desc),$edi) , "attach" => "style=''");
788                                         $field3 = array("string" => $info, "attach" => "style='width:200px;'");
789                                         $field4 = array("string" => preg_replace("/%KEY%/",$key,$acti) , "attach" => "style='width:60px;border-right:0px;text-align:right;'");
790                                         $divlist->AddEntry(array($field1,$field2,$field3,$field4));
792                         }
793                 }
795                 foreach($faifilter as $attrs => $value){
796                         if($value){
797                                 $smarty->assign($attrs."CHK", " checked ");
798                         }else{
799                                 $smarty->assign($attrs."CHK", " ");
800                         }
801                 }
803                 /* Assign all reguired vars to template engine */
805     $branches = $this->getBranches();
806     asort($branches);
807     $smarty->assign("branchKeys",array_flip($branches));
808     $smarty->assign("branches",$branches);
809     
810                 $smarty->assign("faihead"               , $faihead);    
811                 $smarty->assign("failist"               , $divlist->DrawList());
812                 $smarty->assign("regex"                 , $faifilter['regex']); 
813                 $smarty->assign("infoimage"             , get_template_path('images/info.png'));
814                 $smarty->assign("branchimage"           , get_template_path('images/branch.png'));
815                 $smarty->assign("launchimage"   , get_template_path('images/launch.png'));
816                 $smarty->assign("alphabet"              , generate_alphabet());
817                 $smarty->assign("apply"                 , apply_filter());
818                 $smarty->assign("search_image"  , get_template_path('images/search.png'));
819                 $smarty->assign("hint", print_sizelimit_warning());
821                 $display        = $smarty->fetch(get_template_path('headpage.tpl', TRUE, dirname(__FILE__)));
822                 return ($display);
823         }
825   function getBranches($base = false,$prefix = "")
826   {
827     $ret = array("main"=>"/");
828     $ldap = $this->config->get_ldap_link();
829   
830     $ldap->cd($this->config->current['BASE']);
832     $faifilter = $_SESSION['faifilter'];
835     if(!$base){
836                 $base= "ou=fai,ou=configs,ou=systems,".$faifilter['base'];
837     }
838     $ldap->cd($base);
839     $ldap->ls("(objectClass=FAIbranch)",$base);
841     while($attrs = $ldap->fetch()){
842       
843       if((isset($attrs['ou']))&&($attrs['dn']!=$base)){
844         $ret[$attrs['dn']]= $prefix.$attrs['ou'][0];
845         $ret = array_merge($ret,$this->getBranches($attrs['dn'],"".$prefix.$attrs['ou'][0]."/"));
846       }
847     }
848     return($ret);
849   }
851         function reload()
852         {
853                 /* Create a new list of FAI object 
854                  * Object list depends on faifilter['regex']
855                  * Generate List of Partitions,Hooks,Scripts,Templates,Profiles ... 
856                  */
857                 $faifilter= get_global('faifilter');
858                 // Added for dirlist function...
860                 /* Set base for all searches */
861                 $base= "ou=fai,ou=configs,ou=systems,".$faifilter['base'];
863     if($faifilter['branch'] !="main"){
864       $base = $faifilter['branch'];
865     }
866    
867                 $regex = $faifilter['regex'];   
869                 /* Array to save objects */
870                 $objects = array();
871         
872                 $this->objects=array();
874                 /* NEW LIST MANAGMENT
875                  * We also need to search for the departments
876                  * So we are able to navigate like in konquerer
877                  */
878                 $base2 = $faifilter['base'];
880                 $res3 =  get_list2($this->ui->subtreeACL, "(&(|(ou=$regex)(description=$regex))(objectClass=gosaDepartment))",
881                                 TRUE, $base2, array("ou", "description"), TRUE);
883                 $this->departments= array();
884                 $tmp = array();
885                 foreach ($res3 as $value){
886                         $tmp[strtolower($value['dn']).$value['dn']]=$value;
887                 }
888                 ksort($tmp);
889                 foreach($tmp as $value){
890                         if(isset($value["description"][0])){
891                                 $this->departments[$value['dn']]=convert_department_dn2($value['dn'])." - [".$value["description"][0]."]";
892                         }else{
893                                 $this->departments[$value['dn']]=convert_department_dn2($value['dn']);//$value["description"][0];
894                         }
895                 }
897                 /* END NEW LIST MANAGMENT
898                  */
900         
901                 $res= get_list($this->ui->subtreeACL, "(objectClass=organizationalUnit)", 
902                                 FALSE, $base, array("cn","description","objectClass"),TRUE);
904     $str = "";
906                 foreach($res as $objecttypes){
907                         $res2 = get_list($this->ui->subtreeACL, "(&(objectClass=*)(cn=".$regex."))",
908                                         FALSE, $objecttypes['dn'], array("cn","description","objectClass","FAIclass","FAIstate"),TRUE);
909                         foreach($res2 as $object){
910                                 $type= "";      
911                                 unset($object['objectClass']['count']);
912                                 if(!isset($object['description'][0])){
913                                         $object['description'][0]="";
914                                 }
915                                 
916                                 /* Clean up object informations */
917                                 $obj['cn']                      = $object['cn'][0];
918                                 $obj['dn']                      = $object['dn'];
919                                 $obj['description'] = $object['description'][0];
920                                 $obj['objectClass'] = $object['objectClass'];
922         if(isset($object['FAIstate'])){
923           $obj['FAIstate'] = $object['FAIstate'][0];
925           /* Append type to this string, to be able to check if the selected 
926            * entry is of type 'freeze' or 'branch'
927            */
928           $str.="|".$obj['FAIstate'];
929         }else{
930           $obj['FAIstate'] ="";
931         }
933                                 if(in_array("FAIpartitionTable",$obj['objectClass'])){
934                                         $type = "FAIpartitionTable";
935                                 }elseif(in_array("FAIpackageList",$obj['objectClass'])){
936                                         $type = "FAIpackageList";
937                                 }elseif(in_array("FAIscript",$obj['objectClass'])){
938                                         $type = "FAIscript";
939                                 }elseif(in_array("FAIvariable",$obj['objectClass'])){
940                                         $type = "FAIvariable";
941                                 }elseif(in_array("FAIhook",$obj['objectClass'])){
942                                         $type = "FAIhook";
943                                 }elseif(in_array("FAIprofile",$obj['objectClass'])){
944                                         $obj['FAIclass']        = $object['FAIclass'][0];
945                                         $type = "FAIprofile";
946                                 }elseif(in_array("FAItemplate",$obj['objectClass'])){
947                                         $type = "FAItemplate";
948                                 }
949                                 $this->objects[strtolower($obj['cn']).$obj['cn'].$type] = $obj;
950                                 $this->objects[strtolower($obj['cn']).$obj['cn'].$type]['type']=$type;
951  
952                         }
953                 }
955     /* Tell class what we have currently opened 
956         'main' has type '' 
957      */
958     if(preg_match("/freeze/",$str)){
959       $this->lock_type = "freeze";
960     }elseif(preg_match("/branch/",$str)){
961       $this->lock_type = "branch";
962     }else{
963       $this->lock_type = "";
964     }
966                 ksort($this->objects);
967                 reset ($this->objects);
968         
969                 /* use numeric index, thats a bit more secure */        
970                 $tmp0 = array();
971                 foreach($this->objects as $obj){
972                         $tmp0[]= $obj;
973                 }
974                 $this->objects = array();
975                 $this->objects = $tmp0;
977         }
979         function remove_lock()
980         {
981                 if (isset($this->dn)){
982                         del_lock ($this->dn);
983                 }
984         }
986         function get_type($array){
987                 if(in_array("FAIpartitionTable",$array['objectClass'])){
988                         return(array("tabsPartition","faiPartitionTable","FAIPARTITIONTABS"));
989                 }
990                 if(in_array("FAIscript",$array['objectClass'])){
991                         return(array("tabsScript","faiScript","FAISCRIPTTABS"));
992                 }
993                 if(in_array("FAItemplate",$array['objectClass'])){
994                         return(array("tabsTemplate","faiTemplate","FAITEMPLATETABS"));
995                 }
996                 if(in_array("FAIhook",$array['objectClass'])){
997                         return(array("tabsHook","faiHook","FAIHOOKTABS"));
998                 }
999                 if(in_array("FAIvariable",$array['objectClass'])){
1000                         return(array("tabsVariable","faiVariable","FAIVARIABLETABS"));
1001                 }
1002                 if(in_array("FAIprofile",$array['objectClass'])){
1003                         return(array("tabsProfile","faiProfile","FAIPROFILETABS"));
1004                 }
1005                 
1006                 if(in_array("FAIpackageList",$array['objectClass'])){
1007                         return(array("tabsPackage","faiPackage","FAIPACKAGETABS"));
1008                 }
1009         }
1011   function CheckNewBranchName($name,$base){
1012     $f = $_SESSION['faifilter']['branch'];
1014     if(empty($name)){
1015       return(false);
1016     }
1018     if($f == "main"){
1019       $f = $_SESSION['faifilter']['base'];
1020     } 
1021   
1022     if(in_array($name,$this->getBranches($f))) {
1023       return(false);
1024     }
1026     if(empty($name)){
1027       return(false);
1028     }
1029     
1030     if(in_array($name,array("fai","disk","packages","scripts","templates","hooks","variables","profiles"))){
1031       return(false);
1032     }
1033   
1034     return(true);
1035   }
1038 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
1039 ?>