Code

Added copy & paste for ogroups
[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       echo "<div style='width:100%;text-align:right;'><form name='form' method='post' action='?plug=".$_GET['plug']."' target='_parent'>
429               <input type='submit' name='back' value='"._("Back")."'>
430             </form></div>";
432       $this->dispNewFreeze = false; 
434       /* Postcreate */ 
436       /* Assign possible attributes */
437       $this->lock_type  = $type; 
438       $this->lock_name  = $name; 
439       $this->lock_dn    = $baseToUse;
440       $this->postcreate();
441       exit();
442     }
444     if(($s_action == "branch_branch")||($this->dispNewBranch)){
445       $this->dispNewBranch=true;
446       $smarty->assign("iframe",false);
447                   $display      .= $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
448       return($display);
449     }
450     
451     if(($s_action == "freeze_branch")||($this->dispNewFreeze)){
452       $this->dispNewFreeze = true;
453       $smarty->assign("iframe",false);
454                   $display      .= $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
455       return($display);
456     }
458     /* ENDE Branch handling 
459      */
461     /* Dialog handling */
462     if($s_action == "new_partition"){
463       $this->dialog = new askClassName($this->config,$this->dn,$this->ui,"FAIpartitionTable");
464     }
466     /* Dialog handling */
467     if($s_action == "new_script"){
468       $this->dialog = new askClassName($this->config,$this->dn,$this->ui,"FAIscript");
469     }
471     /* Dialog handling */
472     if($s_action == "new_hook"){
473       $this->dialog = new askClassName($this->config,$this->dn,$this->ui,"FAIhook");
474     }
476     /* Dialog handling */
477     if($s_action == "new_variable"){
478       $this->dialog = new askClassName($this->config,$this->dn,$this->ui,"FAIvariable");
479     }
481     /* Dialog handling */
482     if($s_action == "new_template"){
483       $this->dialog = new askClassName($this->config,$this->dn,$this->ui,"FAItemplate");
484     }
486     /* Dialog handling */
487     if($s_action == "new_package"){
488       $this->dialog = new askClassName($this->config,$this->dn,$this->ui,"FAIpackageList");
489     }
491     /* New Profile */
492     if($s_action == "new_profile"){
493       $this->dn = "new" ;
494       $a_setup= $this->get_type(array("objectClass"=>array("FAIprofile")));
496       $this->dialog = new $a_setup[0]($this->config,
497           $this->config->data['TABS'][$a_setup[2]],$this->dn);
498       $this->is_dialog = true;
500     }
502     if($s_action == "select_class_name_finished"){
503       $this->dialog->save_object();
504       if(count($this->dialog->check())!=0){
505         foreach($this->dialog->check() as $msg){
506           print_red($msg);
507         }               
508       }else{
509         $this->dn = "new" ;
510         $a_setup= $this->get_type(array("objectClass"=>array($this->dialog->objectClass)));
511         $name = $this->dialog->save();
513         $this->dialog = new $a_setup[0]($this->config,
514             $this->config->data['TABS'][$a_setup[2]],$this->dn,$name);
515         $this->dialog->by_object[$a_setup[1]]->cn = $name;
516         $this->is_dialog = true;
517       }         
518     }   
520     /* Search is set */
521     if(isset($_GET['search'])){
522       $faifilter['regex']=$_GET['search']."*";
523     }
525     /* Department select */
526     if((isset($_POST['base']))&&($s_action=="")){
527                         $faifilter['base']=$_POST['base'];
528                 }
530     $base= "ou=fai,ou=configs,ou=systems,".$faifilter['base'];
532     $br = $this->getBranches($base);
533     if(!isset($br[$faifilter['branch']])){
534       $faifilter['branch'] = "main";
535     }
536    
537     $smarty->assign("select_branch",$faifilter['branch']);
539                 /* remove double asterisks and save new filter */
540                 $faifilter['regex'] = preg_replace("/\*\*/","*",$faifilter['regex']);
541                 $_SESSION['faifilter']= $faifilter;
543                 /* Edit dialog was canceled 
544                  * Remove dialog an show management dialog
545                  */
546                 if(isset($_POST['edit_cancel'])){
547                         unset($this->dialog);
548                         $this->dialog=NULL;
549                         $this->is_dialog = false;
550                         unset($_SESSION['objectinfo']);
551                         del_lock ($this->dn);
552                 }
554                 /* This check if the given tab could be saved 
555                  * If it was possible to save it, remove dialog object. 
556                  * If it wasn't possible, show errors and keep dialog.
557                  */
558                 if((isset($_POST['edit_finish'])) && (isset($this->dialog->config))){
559                         $this->dialog->save_object();
560                         if(count($this->dialog->check())!=0){
561                                 foreach($this->dialog->check() as $msg){
562                                         print_red($msg);
563                                 }
564                         }else{
565                                 del_lock ($this->dn);
566                                 $this->dialog->save();
567                                 unset($this->dialog);
568                                 $this->dialog=NULL;
569                                 $this->is_dialog=false;
570                                 unset($_SESSION['objectinfo']);
571                         }
572                 }
574                 /* If dialog is set, but $this->is_dialog==false, then 
575                  *  only the "abort" button is shown, this are dialogs that must not be saved.  
576                  * If is_dialog == true, we are currently editing tab objects.
577                  *  Here we need both, save and cancel
578                  */ 
580                 if(($this->dialog != NULL) && (isset($this->dialog->config))){
581                         $display .= $this->dialog->execute();
582                         /* Don't show buttons if tab dialog requests this */
583                         if (((isset($this->dialog->current))&&($this->dialog->by_object[$this->dialog->current]->is_dialog))){
584                                 
585                         }elseif(((isset($this->dialog->current))&&(!$this->dialog->by_object[$this->dialog->current]->is_dialog))){
586                                 $display.= "<p style=\"text-align:right\">\n";
587                                 $display.= "<input type=\"submit\" name=\"edit_finish\" value=\""._("Finish")."\">\n";
588                                 $display.= "&nbsp;\n";
589                                 $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
590                                 $display.= "</p>";
591                         }elseif(!isset($this->dialog->current)){
592                                 $display.= "<p style=\"text-align:right\">\n";
593                                 $display.= "<input type=\"submit\" name=\"edit_continue\" value=\""._("Continue")."\">&nbsp;";
594                                 $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\""._("Cancel")."\">\n";
595                                 $display.= "</p>";
596                         }
597                         return($display);
598                 }
600                 /* Show Management template
601                  * The following code will only be reached if no dialog (tabs or dialogs)
602                  *  are currently opened.
603                  * Assign all reguired vars to template engine
604                  */
606                 /* Prepare departments */
607                 $options= "";
608                 foreach ($this->config->idepartments as $key => $value){
609                         if ($faifilter['base'] == $key){
610                                 $options.= "<option selected='selected' value='$key'>$value</option>";
611                         } else {
612                                 $options.= "<option value='$key'>$value</option>";
613                         }
614                 }
616                 /* Create listhead, it will be shown on top of the divlist. 
617                  * It provides general navigation and object creation
618                  */
619                 $faihead = 
620                         "<div style='background:#F0F0F9;padding:5px;'>&nbsp;".
622                         "<input class='center' type='image' src='images/list_up.png' align='middle' 
623                         title='"._("Go up one department")."' name='dep_back' alt='"._("Up"). "'>&nbsp;".
625                         "<input class='center' type='image' src='images/list_root.png' align='middle' 
626                         title='"._("Go to root department")."' name='dep_root' alt='".      _("Root")."'>&nbsp;".
628                         "<input class='center' type='image' src='images/list_home.png' align='middle' 
629                         title='"._("Go to users home department")."' name='dep_home' alt='"._("Home")."'>&nbsp;".
631                         "<img class='center' src=\"images/list_seperator.png\" alt=\"\" align=\"middle\" height=\"16\" width=\"1\">&nbsp;".
632                         
633                         " <input class='center' type='image' src='images/fai_new_profile.png' align='middle' 
634                         title='"._("New profile")."' name='Create_profile' alt='"._("P")."'>&nbsp;".
635                         
636                         "<img class='center' src=\"images/list_seperator.png\" alt=\"\" align=\"middle\" height=\"16\" width=\"1\">&nbsp;".
637                                 
638                         " <input class='center' type='image' src='images/fai_new_partitionTable.png' align='middle' 
639                         title='"._("New partition table")."' name='Create_partition' alt='"._("PT")."'>&nbsp;".
641                         " <input class='center' type='image' src='images/fai_new_script.png' align='middle' 
642                         title='"._("New scripts")."' name='Create_script' alt='"._("S")."'>&nbsp;".
644                         " <input class='center' type='image' src='images/fai_new_hook.png' align='middle' 
645                         title='"._("New hooks")."' name='Create_hook' alt='"._("H")."'>&nbsp;".
647                         " <input class='center' type='image' src='images/fai_new_variable.png' align='middle' 
648                         title='"._("New variables")."' name='Create_variable' alt='"._("V")."'>&nbsp;".
649                         
650                         " <input class='center' type='image' src='images/fai_new_template.png' align='middle' 
651                         title='"._("New templates")."' name='Create_template' alt='"._("T")."'>&nbsp;".
653                         " <input class='center' type='image' src='images/fai_new_packages.png' align='middle' 
654                         title='"._("New package list")."' name='Create_package' alt='"._("PK")."'>&nbsp;".
656                         " <img class='center' src='images/list_seperator.png' align='middle' alt='' height='16' width='1'>&nbsp;".
658                         _("Base")."&nbsp;<select name='base' onChange='mainform.submit()' class='center'>$options</select>".
659                         " <input class='center' type='image' src='images/list_submit.png' align='middle' title='"._("Submit department")."' name='submit_department' alt='"._("Submit")."'>&nbsp;".
660                         
661                         "</div>";
663                 $this->reload();
665                 /* Create list with objects */
666                 $divlist = new divlist("faiManagement"); 
667                 $divlist->SetEntriesPerPage(0);
668                 $divlist->SetSummary(_("This table displays all systems, in the selected tree."));
670                 $divlist->SetHeader(array(
671                                         array("string" => "&nbsp;", "attach" => "style='text-align:center;width:20px;'"),
672                                         array("string" => _("Name of FAI class"), "attach" => "style=''"),
673                                         array("string" => _("Class type"), "attach" => "style='width:200px;'"),
674                                         array("string" => _("Actions"), "attach" => "style='width:60px;border-right:0px;text-align:right;'")));
677                 $action  = "<input class='center' type='image' src='images/edit.png'    alt='"._("edit")."'   name='entry_edit_%KEY%' title='"._("Edit class")."'>";
678                 $action .= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."' name='entry_delete_%KEY%' title='"._("Delete class")."'>";
680                 $editlink ="<a href='?plug=".$_GET['plug']."&amp;edit_entry=%KEY%'>%NAME%</a>";                 
681                 $linkopen = "<a href='?plug=".$_GET['plug']."&amp;act=dep_open&amp;dep_id=%s'>%s</a>";
683                 foreach($this->departments as $key => $val) {
684                         if(!isset($this->config->departments[trim($key)])){
685                                 $this->config->departments[trim($key)]="";
686                         }
688                         $non_empty="";
689                         $keys= str_replace("/","\/",$key);
690                         foreach($this->config->departments as $keyd=>$vald ){
691                                 if(preg_match("/".$keys."\/.*/",$keyd)){
692                                         $non_empty="full";
693                                 }
694                         }
697                         $title = $this->config->departments[$key];
698                         $field0 = array("string" => "<img src='images/".$non_empty."folder.png' title='"._("department")."' alt='department'>", "attach" => "style='text-align:center;width:20px;'");
699                         $field1 = array("string" => sprintf($linkopen,base64_encode($key),$val), "attach" => "style='' title='".$title."'");
700                         $field2 = array("string" => "&nbsp;", "attach" => "style='width:200px;'");
701                         $field3 = array("string" => "&nbsp;", "attach" => "style='width:60px;border-right:0px;text-align:right;'");
703                         $divlist->AddEntry( array($field0,$field1,$field2,$field3));
705                 }
706     
707                 /* Attach objects */
708                 foreach($this->objects as $key => $value){
709                                 $info= "";
710                                 $img = "";
711                                 $type = $value['type'];
712                                 $abort=false;
714                                 switch($type) {
715                                         case "FAIpartitionTable"        : 
716                                                 if(!$faifilter['ShowPartitions']){ 
717                                                         $abort = true;
718                                                 }
719                                         $img="<img class='center' src='images/fai_partitionTable.png' title='"._("Partition table")."' alt='PT'>";
720                                         $info = _("Partition table");
721                                         break;
722                                         case "FAIpackageList"           : 
723                                                 if(!$faifilter['ShowPackages']){ 
724                                                         $abort = true;
725                                                 }
726                                         $img="<img class='center' src='images/fai_packages.png' title='"._("Package list")."' alt='PL'>";
727                                         $info = _("Package list");
728                                         break;
729                                         case "FAIscript"                        : 
730                                                 if(!$faifilter['ShowScripts']){ 
731                                                         $abort = true;
732                                                 }
733                                         $img="<img class='center' src='images/fai_script.png' title='"._("Scripts")."' alt='S'>";
734                                         $info = _("Scripts");
735                                         break;
736                                         case "FAIvariable"                      : 
737                                                 if(!$faifilter['ShowVariables']){ 
738                                                         $abort = true;
739                                                 }
740                                         $img="<img class='center' src='images/fai_variable.png' title='"._("Variables")."' alt='V'>";
741                                         $info = _("Variables");
742                                         break;
743                                         case "FAIhook"                          :
744                                                 if(!$faifilter['ShowHooks']){ 
745                                                         $abort = true;
746                                                 }
747                                         $img="<img class='center' src='images/fai_hook.png' title='"._("Hooks")."' alt='H'>";
748                                         $info = _("Hooks");
749                                         break;
750                                         case "FAIprofile"                       : 
751                                                 if(!$faifilter['ShowProfiles']){ 
752                                                         $abort = true;
753                                                 }
754                                         $img="<img class='center' src='images/fai_profile.png' title='"._("Profile")."' alt='P'>";
755                                         $info = _("Profile");
756                                         break;
757                                         case "FAItemplate"                      : 
758                                                 if(!$faifilter['ShowTemplates']){ 
759                                                         $abort = true;
760                                                 }
761                                         $img="<img class='center' src='images/fai_template.png' title='"._("Templates")."' alt='T'>";
762                                         $info = _("Templates");
763                                         break;
764                                         default                                         : 
765                                         $img="<img class='center' src='images/empty.png' alt=''>";$info = "";break;
767                                 }
768                                 
769                                 if(!$abort)     {
770                                         if((isset($value['description']))&&(!empty($value['description']))){
771                                                 $desc= " [".$value['description']."]";
772                                         }else{
773                                                 $desc= "";
774                                         }
776           if($value['FAIstate'] == "freeze"){
777             $action  = "<input class='center' type='image' src='images/edit.png'        alt='"._("edit")."'   
778               name='entry_edit_%KEY%' title='"._("Edit class")."'>";
779             $edi = $editlink;
780             $acti = $action;
781           }else{
782             $action  = "<input class='center' type='image' src='images/edit.png'        alt='"._("edit")."'   
783               name='entry_edit_%KEY%' title='"._("Edit class")."'>";
784             $action .= "<input class='center' type='image' src='images/edittrash.png' alt='"._("delete")."' 
785               name='entry_delete_%KEY%' title='"._("Delete class")."'>";
786             $acti = $action;
787             $edi = $editlink;
788           }
790                                         $field1 = array("string" => $img , "attach" => "style='text-align:center;width:20px;'");
791                                         $field2 = array("string" => preg_replace(array("/%KEY%/","/%NAME%/"),array($key,$value['cn'].$desc),$edi) , "attach" => "style=''");
792                                         $field3 = array("string" => $info, "attach" => "style='width:200px;'");
793                                         $field4 = array("string" => preg_replace("/%KEY%/",$key,$acti) , "attach" => "style='width:60px;border-right:0px;text-align:right;'");
794                                         $divlist->AddEntry(array($field1,$field2,$field3,$field4));
796                         }
797                 }
799                 foreach($faifilter as $attrs => $value){
800                         if($value){
801                                 $smarty->assign($attrs."CHK", " checked ");
802                         }else{
803                                 $smarty->assign($attrs."CHK", " ");
804                         }
805                 }
807                 /* Assign all reguired vars to template engine */
809     $branches = $this->getBranches();
810     asort($branches);
811     $smarty->assign("branchKeys",array_flip($branches));
812     $smarty->assign("branches",$branches);
813     
814                 $smarty->assign("faihead"               , $faihead);    
815                 $smarty->assign("failist"               , $divlist->DrawList());
816                 $smarty->assign("regex"                 , $faifilter['regex']); 
817                 $smarty->assign("infoimage"             , get_template_path('images/info.png'));
818                 $smarty->assign("branchimage"           , get_template_path('images/branch.png'));
819                 $smarty->assign("launchimage"   , get_template_path('images/launch.png'));
820                 $smarty->assign("alphabet"              , generate_alphabet());
821                 $smarty->assign("apply"                 , apply_filter());
822                 $smarty->assign("search_image"  , get_template_path('images/search.png'));
823                 $smarty->assign("hint", print_sizelimit_warning());
825                 $display        = $smarty->fetch(get_template_path('headpage.tpl', TRUE, dirname(__FILE__)));
826                 return ($display);
827         }
829   function getBranches($base = false,$prefix = "")
830   {
831     $ret = array("main"=>"/");
832     $ldap = $this->config->get_ldap_link();
833   
834     $ldap->cd($this->config->current['BASE']);
836     $faifilter = $_SESSION['faifilter'];
839     if(!$base){
840                 $base= "ou=fai,ou=configs,ou=systems,".$faifilter['base'];
841     }
842     $ldap->cd($base);
843     $ldap->ls("(objectClass=FAIbranch)",$base);
845     while($attrs = $ldap->fetch()){
846       
847       if((isset($attrs['ou']))&&($attrs['dn']!=$base)){
848         $ret[$attrs['dn']]= $prefix.$attrs['ou'][0];
849         $ret = array_merge($ret,$this->getBranches($attrs['dn'],"".$prefix.$attrs['ou'][0]."/"));
850       }
851     }
852     return($ret);
853   }
855         function reload()
856         {
857                 /* Create a new list of FAI object 
858                  * Object list depends on faifilter['regex']
859                  * Generate List of Partitions,Hooks,Scripts,Templates,Profiles ... 
860                  */
861                 $faifilter= get_global('faifilter');
862                 // Added for dirlist function...
864                 /* Set base for all searches */
865                 $base= "ou=fai,ou=configs,ou=systems,".$faifilter['base'];
867     if($faifilter['branch'] !="main"){
868       $base = $faifilter['branch'];
869     }
870    
871                 $regex = $faifilter['regex'];   
873                 /* Array to save objects */
874                 $objects = array();
875         
876                 $this->objects=array();
878                 /* NEW LIST MANAGMENT
879                  * We also need to search for the departments
880                  * So we are able to navigate like in konquerer
881                  */
882                 $base2 = $faifilter['base'];
884                 $res3 =  get_list2($this->ui->subtreeACL, "(&(|(ou=$regex)(description=$regex))(objectClass=gosaDepartment))",
885                                 TRUE, $base2, array("ou", "description"), TRUE);
887                 $this->departments= array();
888                 $tmp = array();
889                 foreach ($res3 as $value){
890                         $tmp[strtolower($value['dn']).$value['dn']]=$value;
891                 }
892                 ksort($tmp);
893                 foreach($tmp as $value){
894                         if(isset($value["description"][0])){
895                                 $this->departments[$value['dn']]=convert_department_dn2($value['dn'])." - [".$value["description"][0]."]";
896                         }else{
897                                 $this->departments[$value['dn']]=convert_department_dn2($value['dn']);//$value["description"][0];
898                         }
899                 }
901                 /* END NEW LIST MANAGMENT
902                  */
904         
905                 $res= get_list($this->ui->subtreeACL, "(objectClass=organizationalUnit)", 
906                                 FALSE, $base, array("cn","description","objectClass"),TRUE);
908     $str = "";
910                 foreach($res as $objecttypes){
911                         $res2 = get_list($this->ui->subtreeACL, "(&(objectClass=*)(cn=".$regex."))",
912                                         FALSE, $objecttypes['dn'], array("cn","description","objectClass","FAIclass","FAIstate"),TRUE);
913                         foreach($res2 as $object){
914                                 $type= "";      
915                                 unset($object['objectClass']['count']);
916                                 if(!isset($object['description'][0])){
917                                         $object['description'][0]="";
918                                 }
919                                 
920                                 /* Clean up object informations */
921                                 $obj['cn']                      = $object['cn'][0];
922                                 $obj['dn']                      = $object['dn'];
923                                 $obj['description'] = $object['description'][0];
924                                 $obj['objectClass'] = $object['objectClass'];
926         if(isset($object['FAIstate'])){
927           $obj['FAIstate'] = $object['FAIstate'][0];
929           /* Append type to this string, to be able to check if the selected 
930            * entry is of type 'freeze' or 'branch'
931            */
932           $str.="|".$obj['FAIstate'];
933         }else{
934           $obj['FAIstate'] ="";
935         }
937                                 if(in_array("FAIpartitionTable",$obj['objectClass'])){
938                                         $type = "FAIpartitionTable";
939                                 }elseif(in_array("FAIpackageList",$obj['objectClass'])){
940                                         $type = "FAIpackageList";
941                                 }elseif(in_array("FAIscript",$obj['objectClass'])){
942                                         $type = "FAIscript";
943                                 }elseif(in_array("FAIvariable",$obj['objectClass'])){
944                                         $type = "FAIvariable";
945                                 }elseif(in_array("FAIhook",$obj['objectClass'])){
946                                         $type = "FAIhook";
947                                 }elseif(in_array("FAIprofile",$obj['objectClass'])){
948                                         $obj['FAIclass']        = $object['FAIclass'][0];
949                                         $type = "FAIprofile";
950                                 }elseif(in_array("FAItemplate",$obj['objectClass'])){
951                                         $type = "FAItemplate";
952                                 }
953                                 $this->objects[strtolower($obj['cn']).$obj['cn'].$type] = $obj;
954                                 $this->objects[strtolower($obj['cn']).$obj['cn'].$type]['type']=$type;
955  
956                         }
957                 }
959     /* Tell class what we have currently opened 
960         'main' has type '' 
961      */
962     if(preg_match("/freeze/",$str)){
963       $this->lock_type = "freeze";
964     }elseif(preg_match("/branch/",$str)){
965       $this->lock_type = "branch";
966     }else{
967       $this->lock_type = "";
968     }
970                 ksort($this->objects);
971                 reset ($this->objects);
972         
973                 /* use numeric index, thats a bit more secure */        
974                 $tmp0 = array();
975                 foreach($this->objects as $obj){
976                         $tmp0[]= $obj;
977                 }
978                 $this->objects = array();
979                 $this->objects = $tmp0;
981         }
983         function remove_lock()
984         {
985                 if (isset($this->dn)){
986                         del_lock ($this->dn);
987                 }
988         }
990         function get_type($array){
991                 if(in_array("FAIpartitionTable",$array['objectClass'])){
992                         return(array("tabsPartition","faiPartitionTable","FAIPARTITIONTABS"));
993                 }
994                 if(in_array("FAIscript",$array['objectClass'])){
995                         return(array("tabsScript","faiScript","FAISCRIPTTABS"));
996                 }
997                 if(in_array("FAItemplate",$array['objectClass'])){
998                         return(array("tabsTemplate","faiTemplate","FAITEMPLATETABS"));
999                 }
1000                 if(in_array("FAIhook",$array['objectClass'])){
1001                         return(array("tabsHook","faiHook","FAIHOOKTABS"));
1002                 }
1003                 if(in_array("FAIvariable",$array['objectClass'])){
1004                         return(array("tabsVariable","faiVariable","FAIVARIABLETABS"));
1005                 }
1006                 if(in_array("FAIprofile",$array['objectClass'])){
1007                         return(array("tabsProfile","faiProfile","FAIPROFILETABS"));
1008                 }
1009                 
1010                 if(in_array("FAIpackageList",$array['objectClass'])){
1011                         return(array("tabsPackage","faiPackage","FAIPACKAGETABS"));
1012                 }
1013         }
1015   function CheckNewBranchName($name,$base){
1016     $f = $_SESSION['faifilter']['branch'];
1018     if(empty($name)){
1019       return(false);
1020     }
1022     if($f == "main"){
1023       $f = $_SESSION['faifilter']['base'];
1024     } 
1025   
1026     if(in_array($name,$this->getBranches($f))) {
1027       return(false);
1028     }
1030     if(empty($name)){
1031       return(false);
1032     }
1033     
1034     if(in_array($name,array("fai","disk","packages","scripts","templates","hooks","variables","profiles"))){
1035       return(false);
1036     }
1037   
1038     return(true);
1039   }
1042 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
1043 ?>