Code

6517971311d0418cb81939b2860018aff6f74edc
[gosa.git] / gosa-plugins / fai / 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  */
22 class faiManagement extends plugin
23 {
24         /* Definitions */
25   var $plHeadline     = "Software deployment";
26   var $plDescription    = "Manage software packages and deployment reciepes";
28         /* Headpage attributes */
29   var $lock_type    = "";    // should be branch/freeze
30   var $lock_name    = "";
31   var $lock_dn      = "";  
33         /* attribute list for save action */
34         var $attributes         = array("lock_type","lock_name","lock_dn");     //      Attributes Managed by this plugin 
35         var $objectclasses= array();    //      ObjectClasses which the attributes are related to
36         var $dialog                             = array();      //      This object contains every dialog we have currently opened
38         var $objects                    = array();      //      This array contains all available objects shown in divlist
39         var $is_dialog          = false;
41   var $dispNewBranch= false;
42   var $dispNewFreeze= false;
44   var $DivListFai;
45   var $start_pasting_copied_objects = FALSE;
46   var $CopyPasteHandler = FALSE;
48   /* Allow inserting of new elements if freezed releases 
49   */
50   var $allow_freeze_object_attach = FALSE;
52   var $no_save;
53   var $fai_base     ="";
54   var $fai_release  ="";
56         /* construction/reconstruction 
57          */
58         function faiManagement (&$config, $ui)
59         {
60                 /* Set defaults */
61                 $this->dn                       = "";
62                 $this->config   = $config;
63                 $this->ui                       = $ui;  
64     
65     /* Creat dialog object */
66     $this->DivListFai = new divListFai($this->config,$this);
68     /* Copy & Paste handler */
69     if ($this->config->boolValueIsTrue("main", "enableCopyPaste")){
70       $this->CopyPasteHandler= new CopyPasteHandler($this->config);
71     }
73     /* Set default release */
74     $this->fai_base = get_ou("faiou").$this->config->current['BASE'];
75     if(!session::is_set("fai_filter")){
76       session::set("fai_filter",array("fai_release" => $this->fai_base));
77     }
79     $fai_filter = session::get("fai_filter");
80     $this->fai_release = $fai_filter['fai_release'];
81         }
83         function execute()
84         {
85     /* Call parent execute */
86     plugin::execute();
88     /* Initialise vars and smarty */
89                 $smarty         = get_smarty();
90                 $smarty->assign("BranchName","");
91     
92                 $display        = "";
93     $s_action   = "";
94                 $s_entry        = "";
95     $no_save = FALSE;   // hide Apply / Save buttons
96     
97     /* If an entry was locked, these vars will be stored in a session to allow direct edit */
98     session::set('LOCK_VARS_TO_USE',array("/^edit_freeze_entry$/","/^edit_entry$/","/^id$/","/^entry_edit_/","/^entry_delete_/","/^item_selected/","/^remove_multiple_fai_objects/","/^menu_action/"));
101     /****************
102       Handle posts 
103      ****************/
105                 /* Check ImageButton posts
106                  * Create new tab ich new_xx is posted
107                  */
108     $posts = array( "/remove_branch/"=>"remove_branch",    "/branch_branch/"=>"branch_branch",
109                     "/freeze_branch/"=>"freeze_branch",    "/create_partition/i"=>"new_partition",
110                     "/create_script/i"=>"new_script",      "/create_hook/i"=>"new_hook",
111                     "/create_variable/i"=>"new_variable",  "/create_template/i"=>"new_template",
112                     "/create_package/i"=>"new_package",    "/create_profile/i"=>"new_profile",
113                     "/edit_continue/"=>"select_class_name_finished",
114                     "/^multiple_copy_fai/" => "copy_multiple", 
115                     "/^multiple_cut_fai/" => "cut_multiple", 
116                     "/^copy/" => "copy",
117                     "/^remove_multiple_fai_objects/" => "del_multiple");
119                 foreach($_POST as $name => $value){
120       foreach($posts as $reg => $act ){
121         if(preg_match($reg,$name)){
122           $s_action = $act;
123           $s_entry = ltrim(preg_replace($reg,"",$name),"_");
124           $s_entry = preg_replace("/_.*$/","",$s_entry);
125         }
126       }
127                         if(preg_match("/^entry_edit_.*/",$name)){
128                                 $s_entry = preg_replace("/^entry_edit_/","",$name);
129                                 $s_entry = preg_replace("/_.*$/","",$s_entry);
130                                 $s_action = "edit";
131                         }elseif(preg_match("/^entry_freeze_edit_.*/",$name)){
132                                 $s_entry = preg_replace("/^entry_freeze_edit_/","",$name);
133                                 $s_entry = preg_replace("/_.*$/","",$s_entry);
134                                 $s_action = "edit";
135         $no_save = TRUE;
136                         }elseif(preg_match("/^entry_delete_.*/",$name)){
137                                 $s_entry = preg_replace("/^entry_delete_/","",$name);
138                                 $s_entry = preg_replace("/_.*$/","",$s_entry);
139         $s_action = "delete";
140       }
141     }
143                 if(isset($_GET['edit_entry'])){
144                         $s_entry = $_GET['edit_entry'];
145                         $s_action = "edit";
146                 }
148                 if(isset($_GET['edit_freeze_entry'])){
149                         $s_entry = $_GET['edit_freeze_entry'];
150                         $s_action = "edit";
151       $no_save = TRUE;
152                 }
154     if(isset($_GET['act']) && $_GET['act'] == "freeze_branch"){
155       $s_action = "freeze_branch";
156     }
157     if(isset($_GET['act']) && $_GET['act'] == "branch_branch"){
158       $s_action = "branch_branch";
159     }
160     if(isset($_GET['act']) && $_GET['act'] == "remove_branch"){
161       $s_action = "remove_branch";
162     }
163     
164     if((isset($_POST['CancelBranchName'])) || (isset($_POST['CloseIFrame']))){
165       $this->dispNewBranch = false;
166       $this->dispNewFreeze = false;
167     }
170     $type_acl_mapping = array(
171         "FAIpartitionTable"  => "faiPartitionTable", 
172         "FAIpackageList"     => "faiPackage",
173         "FAIscript"          => "faiScript",
174         "FAIvariable"        => "faiVariable",
175         "FAIhook"            => "faiHook",
176         "FAIprofile"         => "faiProfile",
177         "FAItemplate"        => "faiTemplate");
180     /* handle C&P from layers menu */
181     if(isset($_POST['menu_action']) && preg_match("/^multiple_copy_systems/",$_POST['menu_action'])){
182       $s_action = "copy_multiple";
183     }
184     if(isset($_POST['menu_action']) && preg_match("/^multiple_cut_systems/",$_POST['menu_action'])){
185       $s_action = "cut_multiple";
186     }
187     if(isset($_POST['menu_action']) && preg_match("/^editPaste/",$_POST['menu_action'])){
188       $s_action = "editPaste";
189     }
191     /* Create options */
192     if(isset($_POST['menu_action']) && preg_match("/^Create_/",$_POST['menu_action'])){
193       $s_action = "new_".preg_replace("/^Create_/","",$_POST['menu_action']);;
194       $s_entry  = preg_replace("/^Create_/","",$_POST['menu_action']);
195     }
197     /* handle remove from layers menu */
198     if(isset($_POST['menu_action']) && preg_match("/^remove_multiple/",$_POST['menu_action'])){
199       $s_action = "del_multiple";
200     }
203     if(!empty($s_action)){
204       $this->no_save = $no_save;
205     }
207     /********************
208       Copy & Paste
209      ********************/
211     /* Display the copy & paste dialog, if it is currently open */
212     $ret = $this->copyPasteHandling_from_queue($s_action,$s_entry);
213     if($ret){
214       return($ret);
215     }
218     /****************
219       Delete confirme dialog 
220      ****************/
222                 if ($s_action=="delete"){
224       /* Get 'dn' from posted termlinst */
225       $this->dn= $this->objects[$s_entry]['dn'];
227                         /* Load permissions for selected 'dn' and check if
228                            we're allowed to remove this 'dn' */
229       $acl  = $this->ui->get_permissions($this->dn,"fai/".$type_acl_mapping[$this->objects[$s_entry]['type']]);
230       if(preg_match("/d/",$acl)){
232                                 /* Check locking, save current plugin in 'back_plugin', so the dialog knows where to return. */
233                                 if (($user= get_lock($this->dn)) != ""){
234                                         return(gen_locked_message ($user, $this->dn));
235                                 }
237                                 /* Lock the current entry, so nobody will edit it during deletion */
238                                 add_lock ($this->dn, $this->ui->dn);
239                                 $smarty->assign("warning",msgPool::deleteInfo(@LDAP::fix($this->dn),_("FAI object")));
240         $smarty->assign("multiple", false);
241                                 return($smarty->fetch(get_template_path('remove.tpl', TRUE)));
242                         } else {
244                                 /* Obviously the user isn't allowed to delete. Show message and clean session. */
245         msg_dialog::display(_("Permission error"), msgPool::permDelete(),ERROR_DIALOG);
246                         }
247                 }
250     /********************
251       Delete MULTIPLE entries requested, display confirm dialog
252      ********************/
254     if ($s_action=="del_multiple"){
255       $this->dns = array();
256       $ids = $this->list_get_selected_items();
258       if(count($ids)){
260         $errors = "";
261         foreach($ids as $id){
262           $dn = $this->objects[$id]['dn'];
263           $cn = $this->objects[$id]['cn'];
264           if(!preg_match('/^freeze/', $this->objects[$id]['FAIstate'])){
265             $this->dns[$id] = $dn;
266           }else{
267             $errors .= $cn.", ";
268           }
269         }
270         if ($user= get_multiple_locks($this->dns)){
271           return(gen_locked_message($user,$this->dns));
272         }
274         if($errors != ""){
275           msg_dialog::display(_("Branch locked"),sprintf(_("The following entries are locked, you can't remove them %s."),
276             "<br><br>".trim($errors,", ")),INFO_DIALOG);
277         }
279         if(count($this->dns)){
281           $dns_names = array();
282           foreach($this->dns as $dn){
283             add_lock ($dn, $this->ui->dn);
284             $dns_names[] = @LDAP::fix($dn);
285           }
287           /* Lock the current entry, so nobody will edit it during deletion */
288                                   $smarty->assign("warning",msgPool::deleteInfo($dns_names,_("FAI object")));
289           $smarty->assign("multiple", true);
290           return($smarty->fetch(get_template_path('remove.tpl', TRUE)));
291         }
292       }
293     }
296     /********************
297       Delete MULTIPLE entries confirmed
298      ********************/
300     /* Confirmation for deletion has been passed. Users should be deleted. */
301     if (isset($_POST['delete_multiple_fai_object_confirm'])){
303       /* Find out more about the object type */
304       $ldap   = $this->config->get_ldap_link();
306       /* Remove user by user and check acls before removeing them */
307       foreach($this->dns as $key => $dn){
309         $ldap->cat($dn, array('objectClass'));
310         $attrs  = $ldap->fetch();
311         $type   = $this->get_type($attrs);
313         $acl  = $this->ui->get_permissions($dn,"fai/".$type[1]);
314         if(preg_match("/d/",$acl)){
316           $this->dialog = new $type[0]($this->config, $this->config->data['TABS'][$type[2]], $dn,"fai");
317           $this->dialog->parent = &$this;
318           $this->dialog->set_acl_base($dn);
319           $this->dialog->by_object[$type[1]]->remove_from_parent ();
320           unset ($this->dialog);
321           $this->dialog= FALSE;
322           $to_del = FAI::clean_up_releases($dn);
323           FAI::save_release_changes_now();
325           foreach($to_del as $dn){
326             $ldap->rmdir_recursive($dn);
327           }
329         } else {
331           /* Normally this shouldn't be reached, send some extra
332              logs to notify the administrator */
333           msg_dialog::display(_("Permission error"), msgPool::permDelete(), ERROR_DIALOG);
334           new log("security","fai/".get_class($this),$dn,array(),"Tried to trick deletion.");
335         }
337         /* Remove lock file after successfull deletion */
338         del_lock ($dn);
339         unset($this->dns[$key]);
340       }
341     }
344     /********************
345       Delete MULTIPLE entries Canceled
346      ********************/
348     /* Remove lock */
349     if(isset($_POST['delete_multiple_fai_object_cancel'])){
350       foreach($this->dns as $key => $dn){
351         del_lock ($dn);
352         unset($this->dns[$key]);
353       }
354     }
357     /****************
358       Delete aborted  
359      ****************/
361                 /* Delete canceled? */
362                 if (isset($_POST['delete_cancel'])){
363                         del_lock ($this->dn);
364                 }
367     /****************
368       Delete confirmed 
369      ****************/
371                 /* Deltetion was confirmed, so delete this entry
372      */
373     if (isset($_POST['delete_terminal_confirm'])){
375       /* Some nice guy may send this as POST, so we've to check
376          for the permissions again. */
378       /* Find out more about the object type */
379       $ldap       = $this->config->get_ldap_link();
380       $ldap->cat($this->dn, array('objectClass'));
381       if($ldap->count()){
382         $attrs  = $ldap->fetch();
383         $type     = $this->get_type($attrs);                    
385         $acl  = $this->ui->get_permissions($this->dn,"fai/".$type[1]);
386         if(preg_match("/d/",$acl)){
388           $this->dialog = new $type[0]($this->config,   $this->config->data['TABS'][$type[2]], $this->dn,"fai");
389           $this->dialog->set_acl_base($this->dn);
390           $this->dialog->parent = &$this;
391           $this->dialog->by_object[$type[1]]->remove_from_parent ();
392           unset ($this->dialog);
393           $this->dialog= FALSE;
394           $to_del = FAI::clean_up_releases($this->dn);
395           FAI::save_release_changes_now();
397           foreach($to_del as $dn){
398             $ldap->rmdir_recursive($dn);
399           }
401         } else {
403           /* Normally this shouldn't be reached, send some extra
404              logs to notify the administrator */
405           msg_dialog::display(_("Permission error"), msgPool::permDelete(), ERROR_DIALOG);
406           new log("security","fai/".get_class($this),$dn,array(),"Tried to trick deletion.");
407         }
409       }else{
410         msg_dialog::display(_("Error"), sprintf(_("Cannot delete '%s': object does not exist!"), $this->dn) , ERROR_DIALOG);
411       }
412       /* Remove lock file after successfull deletion */
413       del_lock ($this->dn);
414     }
417     /****************
418       Edit entry 
419      ****************/
421                 if(($s_action == "edit") && (!isset($this->dialog->config))){
422                         $entry    = $this->objects[$s_entry];
423                         $a_setup  = $this->get_type($entry);
424                         $this->dn = $entry['dn'];
426                         /* Check locking, save current plugin in 'back_plugin', so the dialog knows where to return. */
427                         if (($user= get_lock($this->dn)) != ""){
428                                 return(gen_locked_message ($user, $this->dn));
429                         }
430                         add_lock ($this->dn, $this->ui->dn);
432                         $this->dialog     = new $a_setup[0]($this->config,$this->config->data['TABS'][$a_setup[2]],$this->dn,"fai");
433       $this->dialog->parent = &$this;
434       $this->dialog->set_acl_base($this->dn);
435                         $this->is_dialog  = true;
437       if(preg_match("/^freeze/", $entry['FAIstate']) || $this->no_save){
438 #        $this->dialog->set_acl_base("freezed")  ;    
439       }
440                         session::set('objectinfo',$this->dn);
441                 }
444     /*  Branch handling 
445         09.01.2006
446     */
448     /****************
449       Remove branch
450      ****************/
452     /* Remove branch 
453      */
454     if($s_action == "remove_branch"){
455       $base= $this->fai_release;
457       /* Check if we have a post remove method configured
458        *  else skip this operation. (Skip:Button in the ui should be disabled in this case too)
459        */
460       if("" != $this->config->search("faiManagement", "POSTREMOVE",array('menu','tabs'))){
461         /* Load permissions for selected 'dn' and check if
462            we're allowed to remove this 'dn' */
463         if($this->acl_is_removeable()){
465           $smarty->assign("info", msgPool::deleteInfo(@LDAP::fix($this->fai_release),_("FAI branch/freeze")));
466           return($smarty->fetch(get_template_path('remove_branch.tpl',TRUE)));
467         } else {
468           msg_dialog::display(_("Permission error"), _("You have no permission to delete this release!"), ERROR_DIALOG);
469         }
470       }
471     }
473     
474     /****************
475       Remove branch confirmed
476      ****************/
478     if(isset($_POST['delete_branch_confirm'])){
480       /* Check if we have a post remove method configured
481        *  else skip this operation. (Skip:Button in the ui should be disabled in this case too)
482        */
483       if("" != $this->config->search("faiManagement", "POSTREMOVE",array('menu','tabs'))){
485         $bb =  $this->fai_release;
486         if(!isset($ldap)){
487           $ldap = $this->config->get_ldap_link();
488         }
490         $br = $this->getBranches();
492         if(isset($br[$bb]) && $this->acl_is_removeable()){
493           $name = $br[$bb];
494           $ldap->cd($bb);
495           $ldap->recursive_remove();
496           $ldap->cd(preg_replace('/,'.normalizePreg(get_ou('faiou')).'/', ','.get_ou('applicationou'), $bb));
497           $ldap->recursive_remove();
498           $this->fai_release = $this->fai_base;
500           /* Post remove */
501           $this->lock_name   = $name;
502           $this->lock_dn     = $bb;
503           $this->postremove();
505           new log("remove","fai/".get_class($this),$br[$bb],array(),"Release removed");
506         }
507       }
508     }
511     /****************
512       Create a new branch "insert Name"
513      ****************/
515     if((isset($_POST['UseBranchName']))&&(($this->dispNewBranch)||($this->dispNewFreeze))){
516       session::set('LASTPOST',$_POST);
518       if($this->dispNewBranch){
519         $type = "branch";
520       }else{
521         $type = "freeze";
522       }
524       /* Check branch name */
525       $name = $_POST['BranchName'];
526       $is_ok = true;
527       $smarty->assign("BranchName",$name);
528       $base= $this->fai_base;
530       /* Check used characters */
531       if(!preg_match("/^[0-9a-z \ö\ä\ü\.\-_:,]*$/i",$name)){
532         msg_dialog::display(_("Error"), msgPool::invalid(_("Name"),$name,"/[0-9a-z \ö\ä\ü\.\-_:,]/i"), ERROR_DIALOG);
533         $is_ok = false;
534       }
536       /* Check if this name is already in use */
537       if(!$this->CheckNewBranchName($_POST['BranchName'],$this->fai_release)){
538         msg_dialog::display(_("Error"), msgPool::duplicated(_("Name")), ERROR_DIALOG);
539         $is_ok = false;
540       }
542       if($is_ok){
544         if(session::is_set('LASTPOST')){
545           $LASTPOST = session::get('LASTPOST');
546         }else{
547           $LASTPOST = array();
548         }
549         $LASTPOST['base'] = $base;
550         $LASTPOST['type'] = $type;
551         session::set('LASTPOST',$LASTPOST);
552         $smarty->assign("iframe", true);
553         $smarty->assign("plugID", $_GET['plug']);
554         $display        = $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
555         return($display);
556       }
557     }
560     /****************
561       Create a new branch 
562      ****************/
564     if(isset($_GET['PerformBranch'])){
565     
566       if(!$this->acl_is_createable()){
567         msg_dialog::display(_("Permission error"), msgPool::permCreate(_("Branch")), ERROR_DIALOG);
568       }else{
570         /* Create it know */
571         $this->dispNewBranch = false;
572         $this->dispNewFreeze = false;
574         $LASTPOST = session::get('LASTPOST');
575         $base = $LASTPOST['base'];
576         $_POST  = session::get('LASTPOST');      
577         $name = $_POST['BranchName'];
579         $type = $LASTPOST['type'];
580         $ldap = $this->config->get_ldap_link();
582         $baseToUse = $base;
583         if($this->fai_release !=  $this->fai_base){
584           $baseToUse = $this->fai_release;
585         }
587         /* Create new Release name to be able to set faidebianRelease for FAIpackageList */
589         $CurrentReleases  = $this->getBranches();
590         $NewReleaseName   = $name;
591         if(isset($CurrentReleases[$this->fai_release])) {
592           if($this->fai_release != $this->fai_base){
593             $NewReleaseName = $CurrentReleases[$this->fai_release]."/".$name;
594             $NewReleaseName = preg_replace("#\/#","/",$NewReleaseName); 
595           }else{
596             $NewReleaseName   = $name;
597           }
598         }
600         $appsrc = preg_replace("/".normalizePreg(get_ou('faiou'))."/",get_ou('applicationou'),$baseToUse); 
601         $appdst = preg_replace("/".normalizePreg(get_ou('faiou'))."/",get_ou('applicationou'),"ou=".$name.",".$baseToUse) ; 
603         $mimesrc = preg_replace("/".normalizePreg(get_ou('faiou'))."/",get_ou('mimetypeou'),$baseToUse); 
604         $mimedst = preg_replace("/".normalizePreg(get_ou('faiou'))."/",get_ou('mimetypeou'),"ou=".$name.",".$baseToUse) ; 
606         /* Check if source depeartments exist */
607         foreach(array($baseToUse,$appsrc,$mimesrc) as $dep){
608           $ldap->cd($this->config->current['BASE']);
609           $ldap->cat($dep);
610           if(!$ldap->count()){
611             $ldap->create_missing_trees($dep);
612           }
613         }
615         /* Print header to have styles included */
616         echo '  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
617           <html>
618           <head>
619           <title></title>
620           <style type="text/css">@import url("themes/default/style.css");</style>
621           <script language="javascript" src="include/focus.js" type="text/javascript"></script>
622           </head>
623           <body style="background: none;margin:3px;color:black">
624           ';
626         new log("create","fai/".get_class($this),$NewReleaseName,array(),"New $type created");
628         /* Duplicate group application releases 
629          */
630         FAI::copy_FAI_group_releases($CurrentReleases[$this->fai_release],$name,$type);
632         /* Duplicate applications 
633          */
634         $ldap->cat($appsrc,array("dn")) ;
635         if($ldap->count()){
636           $ldap->cd ($appdst);
637           $ldap->recursive_remove();
638           FAI::copy_FAI_resource_recursive($appsrc,$appdst,$NewReleaseName,$type,true);
639         }
641         /* Duplicate mime types 
642          */
643         $ldap->cat($mimesrc,array("dn")) ;
644         if($ldap->count()){
645           $ldap->cd ($mimedst);
646           $ldap->recursive_remove();
647           FAI::copy_FAI_resource_recursive($mimesrc,$mimedst,$NewReleaseName,$type,true);
648         }
650         $attr = array();
651         $attr['objectClass'] = array("organizationalUnit","FAIbranch");
652         $attr['ou']       = $name;
653         $attr['FAIstate'] = $type;
654         $ldap->cd($this->config->current['BASE']);
655         $ldap->cd("ou=".$name.",".$baseToUse);
656         $ldap->cat("ou=".$name.",".$baseToUse);
657         if($ldap->count()){
658           $ldap->modify($attr);
659         }else{
660           $ldap->add($attr);
661         }
663         /* Duplicate fai objects 
664          */
665         //      $ldap->cd ("ou=".$name.",".$baseToUse);
666         //      $ldap->recursive_remove();
667         //      FAI::copy_FAI_resource_recursive($baseToUse,"ou=".$name.",".$baseToUse,$NewReleaseName,$type,true);
669         echo "<div style='width:100%;text-align:right;'><form name='form' method='post' action='?plug=".$_GET['plug']."' target='_parent'>
670           <br><input type='submit' name='CloseIFrame' value='"._("Continue")."'>
671           </form></div>";
673         echo "<script language=\"javascript\" type=\"text/javascript\">scrollDown2();</script>" ;
675         /* Print footer to have valid html */
676         echo "</body></html>";
678         $this->dispNewFreeze = false; 
680         /* Postcreate */ 
682         /* Assign possible attributes */
683         $this->lock_type  = $type; 
684         $this->lock_name  = $name; 
685         $this->lock_dn    = $baseToUse;
686         $this->postcreate();
687         exit();
688       }
689     }
691     /****************
692       Display dialog to enter new Branch name
693      ****************/
695     /* Check if we have a post create method configured
696      *  else skip this operation. (Skip:Button in the ui should be disabled in this case too)
697      */
698     if("" != $this->config->search("faiManagement", "POSTCREATE",array('menu','tabs'))){
699       if(($s_action == "branch_branch")||($this->dispNewBranch)){
700         if(!$this->acl_is_createable()){
701         msg_dialog::display(_("Permission error"), msgPool::permCreate(_("Branch")), ERROR_DIALOG);
702         }else{
703           $this->dispNewBranch=true;
704           $smarty->assign("iframe",false);
705           $display      .= $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
706           return($display);
707         }
708       } 
709     }
711  
712     /****************
713       Display dialog to enter new Freeze name
714      ****************/
716     /* Check if we have a post create method configured
717      *  else skip this operation. (Skip:Button in the ui should be disabled in this case too)
718      */
719     if("" != $this->config->search("faiManagement", "POSTCREATE",array('menu','tabs'))){
720       if(($s_action == "freeze_branch")||($this->dispNewFreeze)){
721         if(!$this->acl_is_createable()){
722           msg_dialog::display(_("Permission error"), msgPool::permCreate(_("Branch")), ERROR_DIALOG);
723         }else{
724           $this->dispNewFreeze = true;
725           $smarty->assign("iframe",false);
726           $display      .= $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
727           return($display);
728         }
729       }
730     }
733     /****************
734       Create a new object 
735      ****************/
737     $types = array( "new_partition"     =>  "FAIpartitionTable",
738                     "new_script"        =>  "FAIscript",
739                     "new_hook"          =>  "FAIhook",
740                     "new_variable"      =>  "FAIvariable",
741                     "new_template"      =>  "FAItemplate",
742                     "new_package"       =>  "FAIpackageList");
743     $types_i18n = array( "new_partition"     =>  _("partition table"),
744                     "new_script"        =>  _("script"),
745                     "new_hook"          =>  _("hook"),
746                     "new_variable"      =>  _("variable"),
747                     "new_template"      =>  _("template"),
748                     "new_package"       =>  _("package list"));
750     if(isset($types[$s_action])){
751       $acl = $this->ui->get_permissions($this->fai_base,"fai/".$type_acl_mapping[$types[$s_action]]);
752       if(preg_match("/c/",$acl)){
753         $this->dialog = new askClassName($this->config,$this->dn,$this->ui,$types[$s_action]);
754         $this->dialog->parent = &$this;
755       }else{
756         msg_dialog::display(_("Permission error"), sprintf(_("You have no permission to create a new %s!"), $types_i18n[$s_action]), ERROR_DIALOG);
757       }
758     }
760     /* New Profile */
761     if($s_action == "new_profile"){
762       $this->dn = "new" ;
764       $acl = $this->ui->get_permissions($this->fai_base,"fai/faiProfile");
765       if(preg_match("/c/",$acl)){
766         $a_setup= $this->get_type(array("objectClass"=>array("FAIprofile")));
767         $this->dialog = new $a_setup[0]($this->config,$this->config->data['TABS'][$a_setup[2]],$this->dn,"fai");
768         $this->dialog->set_acl_base($this->base);
769         $this->dialog->parent = &$this;
771         $this->is_dialog = false;
772       }else{
773         msg_dialog::display(_("Permission error"), sprintf(_("You have no permission to create a new %s!"), _("profile")), ERROR_DIALOG);
774       }
775     }
778     /****************
779       Get from ask class name dialog 
780      ****************/
782     if($s_action == "select_class_name_finished"){
783       $this->dialog->save_object();
784       if(count($this->dialog->check())!=0){
785         foreach($this->dialog->check() as $msg){
786           msg_dialog::display(_("Error"), $msg, ERROR_DIALOG);
787         }               
788       }elseif(isset($this->dialog->objectClass)){
789         $this->dn = "new" ;
790         $a_setup= $this->get_type(array("objectClass"=>array($this->dialog->objectClass)));
791         $name = $this->dialog->save();
793         if(class_exists($a_setup[0])){
794           $this->dialog = new $a_setup[0]($this->config,$this->config->data['TABS'][$a_setup[2]],$this->dn,"fai");
795           $this->dialog->set_acl_base($this->base);
796           $this->dialog->by_object[$a_setup[1]]->cn = $name;
797           $this->dialog->parent = &$this;
798           $this->is_dialog = true;
799         }
800       }         
801     }   
804     /****************
805      Cancel dialogs 
806      ****************/
808                 if(isset($_POST['edit_cancel'])){
809                         unset($this->dialog);
810                         $this->dialog=FALSE;
811                         $this->is_dialog = false;
812                         session::un_set('objectinfo');
813                         del_lock ($this->dn);
814                 }
817     /****************
818       Save sub dialogs 
819      ****************/
821                 /* This check if the given tab could be saved 
822                  * If it was possible to save it, remove dialog object. 
823                  * If it wasn't possible, show errors and keep dialog.
824                  */
825                 if((isset($_POST['edit_finish']) || isset($_POST['edit_apply'])) && (isset($this->dialog->config))){
826                         $this->dialog->save_object();
827       $msgs= $this->dialog->check();
828                         if(count($msgs)!=0){
829                                 foreach($msgs as $msg){
830           msg_dialog::display(_("Error"), $msg, ERROR_DIALOG);
831                                 }
832                         }else{
833                                 $this->dialog->save();
834         FAI::save_release_changes_now();
835         if (!isset($_POST['edit_apply'])){
836           del_lock ($this->dn);
837           unset($this->dialog);
838           $this->dialog=FALSE;
839           $this->is_dialog=false;
840           session::un_set('objectinfo');
841         }
842                         }
843                 }
846     /****************
847       Display currently open dialog 
848      ****************/
850                 /* If dialog is set, but $this->is_dialog==false, then 
851                  *  only the "abort" button is shown, this are dialogs that must not be saved.  
852                  * If is_dialog == true, we are currently editing tab objects.
853                  *  Here we need both, save and cancel
854                  */ 
856                 if(is_object($this->dialog)){
857                         $display .= $this->dialog->execute();
858                         /* Don't show buttons if tab dialog requests this */
860       if(isset($this->dialog->current)){
862         $obj = $this->dialog->by_object[$this->dialog->current];
864         if((isset($obj->is_dialog) && (!$obj->is_dialog)) || (isset($obj->dialog) && (!$obj->dialog))){
866           $display.= "<p style=\"text-align:right\">\n";
867           if(!$this->no_save){
868             $display.= "<input type=\"submit\" name=\"edit_finish\" style=\"width:80px\" value=\"".msgPool::okButton()."\">\n";
869             $display.= "&nbsp;\n";
870             if ($this->dn != "new"){
871               $display.= "<input type=submit name=\"edit_apply\" value=\"".msgPool::applyButton()."\">\n";
872               $display.= "&nbsp;\n";
873             }
874           }
875           $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\"".msgPool::cancelButton()."\">\n";
876           $display.= "</p>";
877         }elseif(!isset($this->dialog->current)){
878           $display.= "<p style=\"text-align:right\">\n";
879           $display.= "<input type=\"submit\" name=\"edit_continue\" value=\""._("Continue")."\">&nbsp;";
880           $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\"".msgPool::cancelButton()."\">\n";
881           $display.= "</p>";
882         }
883       }else{
884         $display.= "<p style=\"text-align:right\">\n";
885         $display.= "<input type=\"submit\" name=\"edit_continue\" value=\""._("Continue")."\">&nbsp;";
886         $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\"".msgPool::cancelButton()."\">\n";
887         $display.= "</p>";
889       }
890       return($display);
891                 }
892                 
894     /****************
895       Dialog display
896      ****************/
898     /* Check if there is a snapshot dialog open */
899     $base = $this->fai_base;
900     if($str = $this->showSnapshotDialog($base,$this->get_used_snapshot_bases())){
901       return($str);
902     }
904     /* Display dialog with system list */
905     $this->reload();
906     $this->DivListFai->parent = &$this;
907     $this->DivListFai->execute();
908     $this->DivListFai->setEntries($this->objects);
909     return($this->DivListFai->Draw());
910         }
913   /* Return departments, that will be included within snapshot detection */
914   function get_used_snapshot_bases()
915   {
916     $tmp = array();
917     $types = array("faipartitionou","faiscriptou","faitemplateou","faihookou","faiprofileou","faivariableou","faipackageou");
918     foreach($types as $type){
919       $tmp[] = get_ou($type).$this->fai_release;
920     }
921     return($tmp);
922   }
925   /* Get available branches for current base */
926   function getBranches($base = false,$prefix = "")
927   {
928     $ret = array("/"=>$this->fai_base);
929     $ldap = $this->config->get_ldap_link();
930     if(!$base){
931       $base = $this->fai_base;
932     }
933     $tmp = FAI::get_all_releases_from_base($base,true);
934     foreach($tmp as $dn => $name){
935       $ret[$name]=$dn;
936     }
937     ksort($ret);
938     $ret = array_flip($ret);
940     /* Ensure that we have a valid release selected */
941     if(!isset($ret[$this->fai_release])){
942       $this->fai_release = $this->fai_base;
943     }
945     return ($ret);
946   }
947   
949   function list_get_selected_items()
950   {
951     $ids = array();
952     foreach($_POST as $name => $value){
953       if(preg_match("/^item_selected_[0-9]*$/",$name)){
954         $id   = preg_replace("/^item_selected_/","",$name);
955         $ids[$id] = $id;
956       }
957     }
958     return($ids);
959   }
962   /* reload list of objects */
963   function reload()
964   {
965     /* Variable initialisation */
966     $str            = "";
967     $Regex          = $this->DivListFai->Regex;
968     $this->objects  = array();
970     /* Get base */
971     $base = $this->fai_base;
972     if($this->fai_release != $this->fai_base){
973       $br = $this->getBranches();
974       if(isset($br[$this->fai_release])){
975         $base = $this->fai_release;
976       }else{
977         $base = $this->fai_base;
978       }
979     }
980     $this->base = $base;
981     $this->set_acl_base($this->base);
983     $this->lock_type = FAI::get_release_tag(FAI::get_release_dn($base));
985     /* Create a new list of FAI object 
986      * Generate List of Partitions,Hooks,Scripts,Templates,Profiles ... 
987      */
988     $ObjectTypes = array(
989         "FAIpartitionTable"  => array("OU"=> get_ou('faipartitionou') , "CHKBOX"=>"ShowPartitions"  ,"ACL" => "faiPartitionTable"),
990         "FAIpackageList"     => array("OU"=> get_ou('faipackageou')   , "CHKBOX"=>"ShowPackages"    ,"ACL" => "faiPackage"),
991         "FAIscript"          => array("OU"=> get_ou('faiscriptou')    , "CHKBOX"=>"ShowScripts"     ,"ACL" => "faiScript"),
992         "FAIvariable"        => array("OU"=> get_ou('faivariableou')  , "CHKBOX"=>"ShowVariables"   ,"ACL" => "faiVariable"),
993         "FAIhook"            => array("OU"=> get_ou('faihookou')      , "CHKBOX"=>"ShowHooks"       ,"ACL" => "faiHook"),
994         "FAIprofile"         => array("OU"=> get_ou('faiprofileou')   , "CHKBOX"=>"ShowProfiles"    ,"ACL" => "faiProfile"),
995         "FAItemplate"        => array("OU"=> get_ou('faitemplateou')  , "CHKBOX"=>"ShowTemplates"   ,"ACL" => "faiTemplate"));
997     $filter = "";
998     foreach($ObjectTypes as $key => $data){
999       if($this->DivListFai->$data['CHKBOX']){
1000         $filter.= "(objectClass=".$key.")";
1001       }
1002     }
1003     $filter = "(&(|".$filter.")(cn=$Regex))";
1004     
1005     /* Get resolved release dependencies */
1006     $tmp = FAI::get_all_objects_for_given_base($base,$filter);
1008     /* Ge listed ldap objects */
1009     $ldap = $this->config->get_ldap_link();
1010     $ldap->cd($this->config->current['BASE']);
1012     /* Get release tag 
1013        If current release is freezed, all objects are freezed to.
1014      */
1015     $ldap->cat($base);
1016     $release_attrs = $ldap->fetch();
1017     $force_freezed = FALSE;
1018     if(isset($release_attrs['FAIstate'][0]) && preg_match("/freeze/i",$release_attrs['FAIstate'][0])){
1019       $force_freezed = TRUE;
1020     }
1022     foreach($tmp as $entry){
1024       /* Get some more informations about the object */ 
1025       $ldap->cat($entry['dn'], array("cn","description","objectClass","FAIclass","FAIstate","objectClass"));
1026       $object  = $ldap->fetch();
1028       /* Walk through possible types */
1029       foreach($ObjectTypes as $type => $rest){  
1031         $acl = $this->ui->get_permissions($object['dn'],"fai/".$rest ['ACL']);
1033         if(in_array($type,$object['objectClass']) && preg_match("/r/",$acl)){
1035           /* Prepare object */
1036           unset($object['objectClass']['count']);
1037           if(!isset($object['description'][0])){
1038             $object['description'][0]="";
1039           }
1041           /* Clean up object informations */
1042           $obj                  = array();
1043           $obj['cn']                          = $object['cn'][0];
1044           $obj['dn']                          = $object['dn'];
1045           $obj['acl']                       = $acl;
1046           $obj['description']   = $object['description'][0];
1047           $obj['objectClass']   = $object['objectClass'];
1049           /* Append type to this string, to be able to check if the selected 
1050            * entry is of type 'freeze' or 'branch'
1051            */
1052           if(!isset($object['FAIstate'])){
1053             $obj['FAIstate'] = $this->lock_type;
1054           }else{
1055             $obj['FAIstate'] = $object['FAIstate'][0]; 
1056           }
1058           if($force_freezed){
1059             $obj['FAIstate'] = "freeze";
1060           }
1062           $this->objects[strtolower($obj['cn']).$obj['cn'].$type] = $obj;
1063           $this->objects[strtolower($obj['cn']).$obj['cn'].$type]['type']=$type;
1064         }
1065                         }
1066                 }
1068                 ksort($this->objects);
1069                 reset ($this->objects);
1070         
1071                 /* use numeric index, thats a bit more secure */        
1072                 $tmp0 = array();
1073                 foreach($this->objects as $obj){
1074                         $tmp0[]= $obj;
1075                 }
1076                 $this->objects = array();
1077                 $this->objects = $tmp0;
1078         }
1080         function remove_lock()
1081         {
1082                 if (isset($this->dn)){
1083                         del_lock ($this->dn);
1084                 }
1085         }
1087         function get_type($array){
1088                 if(in_array("FAIpartitionTable",$array['objectClass'])){
1089                         return(array("tabsPartition","faiPartitionTable","FAIPARTITIONTABS"));
1090                 }
1091                 if(in_array("FAIscript",$array['objectClass'])){
1092                         return(array("tabsScript","faiScript","FAISCRIPTTABS"));
1093                 }
1094                 if(in_array("FAItemplate",$array['objectClass'])){
1095                         return(array("tabsTemplate","faiTemplate","FAITEMPLATETABS"));
1096                 }
1097                 if(in_array("FAIhook",$array['objectClass'])){
1098                         return(array("tabsHook","faiHook","FAIHOOKTABS"));
1099                 }
1100                 if(in_array("FAIvariable",$array['objectClass'])){
1101                         return(array("tabsVariable","faiVariable","FAIVARIABLETABS"));
1102                 }
1103                 if(in_array("FAIprofile",$array['objectClass'])){
1104                         return(array("tabsProfile","faiProfile","FAIPROFILETABS"));
1105                 }
1106                 
1107                 if(in_array("FAIpackageList",$array['objectClass'])){
1108                         return(array("tabsPackage","faiPackage","FAIPACKAGETABS"));
1109                 }
1110         }
1112   function CheckNewBranchName($name,$base)
1113   {
1114     $f = $this->fai_release;
1115     if($name == ""){
1116       return(false);
1117     }elseif(in_array($name,$this->getBranches($f))) {
1118       return(false);
1119     }elseif(tests::is_department_name_reserved($name,$base)){
1120       return(false);
1121     }
1122     return(true);
1123   }
1125   function save_object()
1126   {
1127     $this->DivListFai->save_object();
1129     /* Get posted release */
1130     $r_releases = array_flip($this->getBranches());
1131     if(isset($_POST['fai_release']) && isset($r_releases[get_post('fai_release')])){
1132       $this->fai_release = $r_releases[get_post('fai_release')];
1134       $fai_filter = session::get("fai_filter");
1135       $fai_filter['fai_release'] = $this->fai_release;
1136       session::set("fai_filter",$fai_filter);
1137     }
1139     if(is_object($this->CopyPasteHandler)){
1140       $this->CopyPasteHandler->save_object();
1141     }
1142   }
1145   function copyPasteHandling_from_queue($s_action,$s_entry)
1146   {
1147     /* Check if Copy & Paste is disabled */
1148     if(!is_object($this->CopyPasteHandler)){
1149       return("");
1150     }
1153     /* Add a single entry to queue */
1154     if($s_action == "copy"){
1156       /* Cleanup object queue */
1157       $this->CopyPasteHandler->cleanup_queue();
1158       $entry    = $this->objects[$s_entry];
1159       $a_setup  = $this->get_type($entry);
1160       $dn = $entry['dn'];
1161       $this->CopyPasteHandler->add_to_queue($dn,$s_action,$a_setup[0],$a_setup[2],"fai");//$a_setup[1]);
1162     }
1164     /* Add entries to queue */
1165     if($s_action == "copy_multiple"){
1167       /* Cleanup object queue */
1168       $this->CopyPasteHandler->cleanup_queue();
1170       /* Add new entries to CP queue */
1171       foreach($this->list_get_selected_items() as $id){
1173         /* Cleanup object queue */
1174         $entry    = $this->objects[$id];
1175         $a_setup  = $this->get_type($entry);
1176         $dn = $entry['dn'];
1179         if($s_action == "copy_multiple"){
1180           $this->CopyPasteHandler->add_to_queue($dn,"copy",$a_setup[0],$a_setup[2],"fai");//$a_setup[1]);
1181         }
1182       }
1183     }
1185     /* Start pasting entries */
1186     if($s_action == "editPaste" && !($this->lock_type == "freeze" && !$this->allow_freeze_object_attach)){
1187       $this->start_pasting_copied_objects = TRUE;
1188     }
1190     /* Return C&P dialog */
1191     if($this->start_pasting_copied_objects && $this->CopyPasteHandler->entries_queued()){
1193       /* Get dialog */
1194       $this->CopyPasteHandler->SetVar("parent",&$this);
1195       $data = $this->CopyPasteHandler->execute();
1197       FAI::save_release_changes_now();
1199       /* Return dialog data */
1200       if(!empty($data)){
1201         return($data);
1202       }
1203     }
1205     /* Automatically disable status for pasting */
1206     if(!$this->CopyPasteHandler->entries_queued()){
1207       $this->start_pasting_copied_objects = FALSE;
1208     }
1209     return("");
1210   }
1213   /* Check if the given FAI class is used in this release 
1214    */
1215   static function check_class_name($oc,$name,$dn)
1216   {
1217     $base = FAI::get_release_dn($dn);
1218     $res  = FAI::get_all_objects_for_given_base($base,"(objectClass=".$oc.")",TRUE);
1219     $delete = array();
1220     $used   = array();
1221     foreach($res as $object){
1222       $used[$object['cn'][0]]= $object['cn'][0];
1223     }
1224     return($used);
1225   }
1228   /* Return plugin informations for acl handling */ 
1229   static function plInfo()
1230   {
1231     return (array( 
1232           "plShortName"   => _("FAI releases"),
1233           "plDescription" => _("FAI release management"),
1234           "plSelfModify"  => FALSE,
1235           "plDepends"     => array(),
1236           "plPriority"    => 0,
1237           "plSection"     => array("administration"),           
1238           "plCategory"    => array("fai"=> array("description" => _("FAI"),
1239                                                  "objectClass" => "FAIclass")),
1240           "plProvidedAcls"=> array()));
1241   }
1243 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
1244 ?>