Code

f0bcda8eedc8c5e2e0d01a63c12b690dbb1a5f33
[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           $ldap->cd(preg_replace('/,'.normalizePreg(get_ou('faiou')).'/', ','.get_ou('mimetypeou'), $bb));
499           $ldap->recursive_remove();
500           $this->fai_release = $this->fai_base;
502           /* Post remove */
503           $this->lock_name   = $name;
504           $this->lock_dn     = $bb;
505           $this->postremove();
507           new log("remove","fai/".get_class($this),$br[$bb],array(),"Release removed");
508         }
509       }
510     }
513     /****************
514       Create a new branch "insert Name"
515      ****************/
517     if((isset($_POST['UseBranchName']))&&(($this->dispNewBranch)||($this->dispNewFreeze))){
518       session::set('LASTPOST',$_POST);
520       if($this->dispNewBranch){
521         $type = "branch";
522       }else{
523         $type = "freeze";
524       }
526       /* Check branch name */
527       $name = $_POST['BranchName'];
528       $is_ok = true;
529       $smarty->assign("BranchName",$name);
530       $base= $this->fai_base;
532       /* Check used characters */
533       if(!preg_match("/^[0-9a-z \ö\ä\ü\.\-_:,]*$/i",$name)){
534         msg_dialog::display(_("Error"), msgPool::invalid(_("Name"),$name,"/[0-9a-z \ö\ä\ü\.\-_:,]/i"), ERROR_DIALOG);
535         $is_ok = false;
536       }
538       /* Check if this name is already in use */
539       if(!$this->CheckNewBranchName($_POST['BranchName'],$this->fai_release)){
540         msg_dialog::display(_("Error"), msgPool::duplicated(_("Name")), ERROR_DIALOG);
541         $is_ok = false;
542       }
544       if($is_ok){
546         if(session::is_set('LASTPOST')){
547           $LASTPOST = session::get('LASTPOST');
548         }else{
549           $LASTPOST = array();
550         }
551         $LASTPOST['base'] = $base;
552         $LASTPOST['type'] = $type;
553         session::set('LASTPOST',$LASTPOST);
554         $smarty->assign("iframe", true);
555         $smarty->assign("plugID", $_GET['plug']);
556         $display        = $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
557         return($display);
558       }
559     }
562     /****************
563       Create a new branch 
564      ****************/
566     if(isset($_GET['PerformBranch'])){
567     
568       if(!$this->acl_is_createable()){
569         msg_dialog::display(_("Permission error"), msgPool::permCreate(_("Branch")), ERROR_DIALOG);
570       }else{
572         /* Create it know */
573         $this->dispNewBranch = false;
574         $this->dispNewFreeze = false;
576         $LASTPOST = session::get('LASTPOST');
577         $base = $LASTPOST['base'];
578         $_POST  = session::get('LASTPOST');      
579         $name = $_POST['BranchName'];
581         $type = $LASTPOST['type'];
582         $ldap = $this->config->get_ldap_link();
584         $baseToUse = $base;
585         if($this->fai_release !=  $this->fai_base){
586           $baseToUse = $this->fai_release;
587         }
589         /* Create new Release name to be able to set faidebianRelease for FAIpackageList */
591         $CurrentReleases  = $this->getBranches();
592         $NewReleaseName   = $name;
593         if(isset($CurrentReleases[$this->fai_release])) {
594           if($this->fai_release != $this->fai_base){
595             $NewReleaseName = $CurrentReleases[$this->fai_release]."/".$name;
596             $NewReleaseName = preg_replace("#\/#","/",$NewReleaseName); 
597           }else{
598             $NewReleaseName   = $name;
599           }
600         }
602         $appsrc = preg_replace("/".normalizePreg(get_ou('faiou'))."/",get_ou('applicationou'),$baseToUse); 
603         $appdst = preg_replace("/".normalizePreg(get_ou('faiou'))."/",get_ou('applicationou'),"ou=".$name.",".$baseToUse) ; 
605         $mimesrc = preg_replace("/".normalizePreg(get_ou('faiou'))."/",get_ou('mimetypeou'),$baseToUse); 
606         $mimedst = preg_replace("/".normalizePreg(get_ou('faiou'))."/",get_ou('mimetypeou'),"ou=".$name.",".$baseToUse) ; 
608         /* Check if source depeartments exist */
609         foreach(array($baseToUse,$appsrc,$mimesrc) as $dep){
610           $ldap->cd($this->config->current['BASE']);
611           $ldap->cat($dep);
612           if(!$ldap->count()){
613             $ldap->create_missing_trees($dep);
614           }
615         }
617         /* Print header to have styles included */
618         echo '  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
619           <html>
620           <head>
621           <title></title>
622           <style type="text/css">@import url("themes/default/style.css");</style>
623           <script language="javascript" src="include/focus.js" type="text/javascript"></script>
624           </head>
625           <body style="background: none;margin:3px;color:black">
626           ';
628         new log("create","fai/".get_class($this),$NewReleaseName,array(),"New $type created");
630         /* Duplicate group application releases 
631          */
632         FAI::copy_FAI_group_releases($CurrentReleases[$this->fai_release],$name,$type);
634         /* Duplicate applications 
635          */
636         $ldap->cat($appsrc,array("dn")) ;
637         if($ldap->count()){
638           $ldap->cd ($appdst);
639           $ldap->recursive_remove();
640           FAI::copy_FAI_resource_recursive($appsrc,$appdst,$NewReleaseName,$type,true);
641         }
643         /* Duplicate mime types 
644          */
645         $ldap->cat($mimesrc,array("dn")) ;
646         if($ldap->count()){
647           $ldap->cd ($mimedst);
648           $ldap->recursive_remove();
649           FAI::copy_FAI_resource_recursive($mimesrc,$mimedst,$NewReleaseName,$type,true);
650         }
652         $attr = array();
653         $attr['objectClass'] = array("organizationalUnit","FAIbranch");
654         $attr['ou']       = $name;
655         $attr['FAIstate'] = $type;
656         $ldap->cd($this->config->current['BASE']);
657         $ldap->cd("ou=".$name.",".$baseToUse);
658         $ldap->cat("ou=".$name.",".$baseToUse);
659         if($ldap->count()){
660           $ldap->modify($attr);
661         }else{
662           $ldap->add($attr);
663         }
665         /* Duplicate fai objects 
666          */
667         //      $ldap->cd ("ou=".$name.",".$baseToUse);
668         //      $ldap->recursive_remove();
669         //      FAI::copy_FAI_resource_recursive($baseToUse,"ou=".$name.",".$baseToUse,$NewReleaseName,$type,true);
671         echo "<div style='width:100%;text-align:right;'><form name='form' method='post' action='?plug=".$_GET['plug']."' target='_parent'>
672           <br><input type='submit' name='CloseIFrame' value='"._("Continue")."'>
673           </form></div>";
675         echo "<script language=\"javascript\" type=\"text/javascript\">scrollDown2();</script>" ;
677         /* Print footer to have valid html */
678         echo "</body></html>";
680         $this->dispNewFreeze = false; 
682         /* Postcreate */ 
684         /* Assign possible attributes */
685         $this->lock_type  = $type; 
686         $this->lock_name  = $name; 
687         $this->lock_dn    = $baseToUse;
688         $this->postcreate();
689         exit();
690       }
691     }
693     /****************
694       Display dialog to enter new Branch name
695      ****************/
697     /* Check if we have a post create method configured
698      *  else skip this operation. (Skip:Button in the ui should be disabled in this case too)
699      */
700     if("" != $this->config->search("faiManagement", "POSTCREATE",array('menu','tabs'))){
701       if(($s_action == "branch_branch")||($this->dispNewBranch)){
702         if(!$this->acl_is_createable()){
703         msg_dialog::display(_("Permission error"), msgPool::permCreate(_("Branch")), ERROR_DIALOG);
704         }else{
705           $this->dispNewBranch=true;
706           $smarty->assign("iframe",false);
707           $display      .= $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
708           return($display);
709         }
710       } 
711     }
713  
714     /****************
715       Display dialog to enter new Freeze name
716      ****************/
718     /* Check if we have a post create method configured
719      *  else skip this operation. (Skip:Button in the ui should be disabled in this case too)
720      */
721     if("" != $this->config->search("faiManagement", "POSTCREATE",array('menu','tabs'))){
722       if(($s_action == "freeze_branch")||($this->dispNewFreeze)){
723         if(!$this->acl_is_createable()){
724           msg_dialog::display(_("Permission error"), msgPool::permCreate(_("Branch")), ERROR_DIALOG);
725         }else{
726           $this->dispNewFreeze = true;
727           $smarty->assign("iframe",false);
728           $display      .= $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
729           return($display);
730         }
731       }
732     }
735     /****************
736       Create a new object 
737      ****************/
739     $types = array( "new_partition"     =>  "FAIpartitionTable",
740                     "new_script"        =>  "FAIscript",
741                     "new_hook"          =>  "FAIhook",
742                     "new_variable"      =>  "FAIvariable",
743                     "new_template"      =>  "FAItemplate",
744                     "new_package"       =>  "FAIpackageList");
745     $types_i18n = array( "new_partition"     =>  _("partition table"),
746                     "new_script"        =>  _("script"),
747                     "new_hook"          =>  _("hook"),
748                     "new_variable"      =>  _("variable"),
749                     "new_template"      =>  _("template"),
750                     "new_package"       =>  _("package list"));
752     if(isset($types[$s_action])){
753       $acl = $this->ui->get_permissions($this->fai_base,"fai/".$type_acl_mapping[$types[$s_action]]);
754       if(preg_match("/c/",$acl)){
755         $this->dialog = new askClassName($this->config,$this->dn,$this->ui,$types[$s_action]);
756         $this->dialog->parent = &$this;
757       }else{
758         msg_dialog::display(_("Permission error"), sprintf(_("You have no permission to create a new %s!"), $types_i18n[$s_action]), ERROR_DIALOG);
759       }
760     }
762     /* New Profile */
763     if($s_action == "new_profile"){
764       $this->dn = "new" ;
766       $acl = $this->ui->get_permissions($this->fai_base,"fai/faiProfile");
767       if(preg_match("/c/",$acl)){
768         $a_setup= $this->get_type(array("objectClass"=>array("FAIprofile")));
769         $this->dialog = new $a_setup[0]($this->config,$this->config->data['TABS'][$a_setup[2]],$this->dn,"fai");
770         $this->dialog->set_acl_base($this->base);
771         $this->dialog->parent = &$this;
773         $this->is_dialog = false;
774       }else{
775         msg_dialog::display(_("Permission error"), sprintf(_("You have no permission to create a new %s!"), _("profile")), ERROR_DIALOG);
776       }
777     }
780     /****************
781       Get from ask class name dialog 
782      ****************/
784     if($s_action == "select_class_name_finished"){
785       $this->dialog->save_object();
786       if(count($this->dialog->check())!=0){
787         foreach($this->dialog->check() as $msg){
788           msg_dialog::display(_("Error"), $msg, ERROR_DIALOG);
789         }               
790       }elseif(isset($this->dialog->objectClass)){
791         $this->dn = "new" ;
792         $a_setup= $this->get_type(array("objectClass"=>array($this->dialog->objectClass)));
793         $name = $this->dialog->save();
795         if(class_exists($a_setup[0])){
796           $this->dialog = new $a_setup[0]($this->config,$this->config->data['TABS'][$a_setup[2]],$this->dn,"fai");
797           $this->dialog->set_acl_base($this->base);
798           $this->dialog->by_object[$a_setup[1]]->cn = $name;
799           $this->dialog->parent = &$this;
800           $this->is_dialog = true;
801         }
802       }         
803     }   
806     /****************
807      Cancel dialogs 
808      ****************/
810                 if(isset($_POST['edit_cancel'])){
811                         unset($this->dialog);
812                         $this->dialog=FALSE;
813                         $this->is_dialog = false;
814                         session::un_set('objectinfo');
815                         del_lock ($this->dn);
816                 }
819     /****************
820       Save sub dialogs 
821      ****************/
823                 /* This check if the given tab could be saved 
824                  * If it was possible to save it, remove dialog object. 
825                  * If it wasn't possible, show errors and keep dialog.
826                  */
827                 if((isset($_POST['edit_finish']) || isset($_POST['edit_apply'])) && (isset($this->dialog->config))){
828                         $this->dialog->save_object();
829       $msgs= $this->dialog->check();
830                         if(count($msgs)!=0){
831                                 foreach($msgs as $msg){
832           msg_dialog::display(_("Error"), $msg, ERROR_DIALOG);
833                                 }
834                         }else{
835                                 $this->dialog->save();
836         FAI::save_release_changes_now();
837         if (!isset($_POST['edit_apply'])){
838           del_lock ($this->dn);
839           unset($this->dialog);
840           $this->dialog=FALSE;
841           $this->is_dialog=false;
842           session::un_set('objectinfo');
843         }
844                         }
845                 }
848     /****************
849       Display currently open dialog 
850      ****************/
852                 /* If dialog is set, but $this->is_dialog==false, then 
853                  *  only the "abort" button is shown, this are dialogs that must not be saved.  
854                  * If is_dialog == true, we are currently editing tab objects.
855                  *  Here we need both, save and cancel
856                  */ 
858                 if(is_object($this->dialog)){
859                         $display .= $this->dialog->execute();
860                         /* Don't show buttons if tab dialog requests this */
862       if(isset($this->dialog->current)){
864         $obj = $this->dialog->by_object[$this->dialog->current];
866         if((isset($obj->is_dialog) && (!$obj->is_dialog)) || (isset($obj->dialog) && (!$obj->dialog))){
868           $display.= "<p style=\"text-align:right\">\n";
869           if(!$this->no_save){
870             $display.= "<input type=\"submit\" name=\"edit_finish\" style=\"width:80px\" value=\"".msgPool::okButton()."\">\n";
871             $display.= "&nbsp;\n";
872             if ($this->dn != "new"){
873               $display.= "<input type=submit name=\"edit_apply\" value=\"".msgPool::applyButton()."\">\n";
874               $display.= "&nbsp;\n";
875             }
876           }
877           $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\"".msgPool::cancelButton()."\">\n";
878           $display.= "</p>";
879         }elseif(!isset($this->dialog->current)){
880           $display.= "<p style=\"text-align:right\">\n";
881           $display.= "<input type=\"submit\" name=\"edit_continue\" value=\""._("Continue")."\">&nbsp;";
882           $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\"".msgPool::cancelButton()."\">\n";
883           $display.= "</p>";
884         }
885       }else{
886         $display.= "<p style=\"text-align:right\">\n";
887         $display.= "<input type=\"submit\" name=\"edit_continue\" value=\""._("Continue")."\">&nbsp;";
888         $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\"".msgPool::cancelButton()."\">\n";
889         $display.= "</p>";
891       }
892       return($display);
893                 }
894                 
896     /****************
897       Dialog display
898      ****************/
900     /* Check if there is a snapshot dialog open */
901     $base = $this->fai_base;
902     if($str = $this->showSnapshotDialog($base,$this->get_used_snapshot_bases())){
903       return($str);
904     }
906     /* Display dialog with system list */
907     $this->reload();
908     $this->DivListFai->parent = &$this;
909     $this->DivListFai->execute();
910     $this->DivListFai->setEntries($this->objects);
911     return($this->DivListFai->Draw());
912         }
915   /* Return departments, that will be included within snapshot detection */
916   function get_used_snapshot_bases()
917   {
918     $tmp = array();
919     $types = array("faipartitionou","faiscriptou","faitemplateou","faihookou","faiprofileou","faivariableou","faipackageou");
920     foreach($types as $type){
921       $tmp[] = get_ou($type).$this->fai_release;
922     }
923     return($tmp);
924   }
927   /* Get available branches for current base */
928   function getBranches($base = false,$prefix = "")
929   {
930     $ret = array("/"=>$this->fai_base);
931     $ldap = $this->config->get_ldap_link();
932     if(!$base){
933       $base = $this->fai_base;
934     }
935     $tmp = FAI::get_all_releases_from_base($base,true);
936     foreach($tmp as $dn => $name){
937       $ret[$name]=$dn;
938     }
939     ksort($ret);
940     $ret = array_flip($ret);
942     /* Ensure that we have a valid release selected */
943     if(!isset($ret[$this->fai_release])){
944       $this->fai_release = $this->fai_base;
945     }
947     return ($ret);
948   }
949   
951   function list_get_selected_items()
952   {
953     $ids = array();
954     foreach($_POST as $name => $value){
955       if(preg_match("/^item_selected_[0-9]*$/",$name)){
956         $id   = preg_replace("/^item_selected_/","",$name);
957         $ids[$id] = $id;
958       }
959     }
960     return($ids);
961   }
964   /* reload list of objects */
965   function reload()
966   {
967     /* Variable initialisation */
968     $str            = "";
969     $Regex          = $this->DivListFai->Regex;
970     $this->objects  = array();
972     /* Get base */
973     $base = $this->fai_base;
974     if($this->fai_release != $this->fai_base){
975       $br = $this->getBranches();
976       if(isset($br[$this->fai_release])){
977         $base = $this->fai_release;
978       }else{
979         $base = $this->fai_base;
980       }
981     }
982     $this->base = $base;
983     $this->set_acl_base($this->base);
985     $this->lock_type = FAI::get_release_tag(FAI::get_release_dn($base));
987     /* Create a new list of FAI object 
988      * Generate List of Partitions,Hooks,Scripts,Templates,Profiles ... 
989      */
990     $ObjectTypes = array(
991         "FAIpartitionTable"  => array("OU"=> get_ou('faipartitionou') , "CHKBOX"=>"ShowPartitions"  ,"ACL" => "faiPartitionTable"),
992         "FAIpackageList"     => array("OU"=> get_ou('faipackageou')   , "CHKBOX"=>"ShowPackages"    ,"ACL" => "faiPackage"),
993         "FAIscript"          => array("OU"=> get_ou('faiscriptou')    , "CHKBOX"=>"ShowScripts"     ,"ACL" => "faiScript"),
994         "FAIvariable"        => array("OU"=> get_ou('faivariableou')  , "CHKBOX"=>"ShowVariables"   ,"ACL" => "faiVariable"),
995         "FAIhook"            => array("OU"=> get_ou('faihookou')      , "CHKBOX"=>"ShowHooks"       ,"ACL" => "faiHook"),
996         "FAIprofile"         => array("OU"=> get_ou('faiprofileou')   , "CHKBOX"=>"ShowProfiles"    ,"ACL" => "faiProfile"),
997         "FAItemplate"        => array("OU"=> get_ou('faitemplateou')  , "CHKBOX"=>"ShowTemplates"   ,"ACL" => "faiTemplate"));
999     $filter = "";
1000     foreach($ObjectTypes as $key => $data){
1001       if($this->DivListFai->$data['CHKBOX']){
1002         $filter.= "(objectClass=".$key.")";
1003       }
1004     }
1005     $filter = "(&(|".$filter.")(cn=$Regex))";
1006     
1007     /* Get resolved release dependencies */
1008     $tmp = FAI::get_all_objects_for_given_base($base,$filter);
1010     /* Ge listed ldap objects */
1011     $ldap = $this->config->get_ldap_link();
1012     $ldap->cd($this->config->current['BASE']);
1014     /* Get release tag 
1015        If current release is freezed, all objects are freezed to.
1016      */
1017     $ldap->cat($base);
1018     $release_attrs = $ldap->fetch();
1019     $force_freezed = FALSE;
1020     if(isset($release_attrs['FAIstate'][0]) && preg_match("/freeze/i",$release_attrs['FAIstate'][0])){
1021       $force_freezed = TRUE;
1022     }
1024     foreach($tmp as $entry){
1026       /* Get some more informations about the object */ 
1027       $ldap->cat($entry['dn'], array("cn","description","objectClass","FAIclass","FAIstate","objectClass"));
1028       $object  = $ldap->fetch();
1030       /* Walk through possible types */
1031       foreach($ObjectTypes as $type => $rest){  
1033         $acl = $this->ui->get_permissions($object['dn'],"fai/".$rest ['ACL']);
1035         if(in_array($type,$object['objectClass']) && preg_match("/r/",$acl)){
1037           /* Prepare object */
1038           unset($object['objectClass']['count']);
1039           if(!isset($object['description'][0])){
1040             $object['description'][0]="";
1041           }
1043           /* Clean up object informations */
1044           $obj                  = array();
1045           $obj['cn']                          = $object['cn'][0];
1046           $obj['dn']                          = $object['dn'];
1047           $obj['acl']                       = $acl;
1048           $obj['description']   = $object['description'][0];
1049           $obj['objectClass']   = $object['objectClass'];
1051           /* Append type to this string, to be able to check if the selected 
1052            * entry is of type 'freeze' or 'branch'
1053            */
1054           if(!isset($object['FAIstate'])){
1055             $obj['FAIstate'] = $this->lock_type;
1056           }else{
1057             $obj['FAIstate'] = $object['FAIstate'][0]; 
1058           }
1060           if($force_freezed){
1061             $obj['FAIstate'] = "freeze";
1062           }
1064           $this->objects[strtolower($obj['cn']).$obj['cn'].$type] = $obj;
1065           $this->objects[strtolower($obj['cn']).$obj['cn'].$type]['type']=$type;
1066         }
1067                         }
1068                 }
1070                 ksort($this->objects);
1071                 reset ($this->objects);
1072         
1073                 /* use numeric index, thats a bit more secure */        
1074                 $tmp0 = array();
1075                 foreach($this->objects as $obj){
1076                         $tmp0[]= $obj;
1077                 }
1078                 $this->objects = array();
1079                 $this->objects = $tmp0;
1080         }
1082         function remove_lock()
1083         {
1084                 if (isset($this->dn)){
1085                         del_lock ($this->dn);
1086                 }
1087         }
1089         function get_type($array){
1090                 if(in_array("FAIpartitionTable",$array['objectClass'])){
1091                         return(array("tabsPartition","faiPartitionTable","FAIPARTITIONTABS"));
1092                 }
1093                 if(in_array("FAIscript",$array['objectClass'])){
1094                         return(array("tabsScript","faiScript","FAISCRIPTTABS"));
1095                 }
1096                 if(in_array("FAItemplate",$array['objectClass'])){
1097                         return(array("tabsTemplate","faiTemplate","FAITEMPLATETABS"));
1098                 }
1099                 if(in_array("FAIhook",$array['objectClass'])){
1100                         return(array("tabsHook","faiHook","FAIHOOKTABS"));
1101                 }
1102                 if(in_array("FAIvariable",$array['objectClass'])){
1103                         return(array("tabsVariable","faiVariable","FAIVARIABLETABS"));
1104                 }
1105                 if(in_array("FAIprofile",$array['objectClass'])){
1106                         return(array("tabsProfile","faiProfile","FAIPROFILETABS"));
1107                 }
1108                 
1109                 if(in_array("FAIpackageList",$array['objectClass'])){
1110                         return(array("tabsPackage","faiPackage","FAIPACKAGETABS"));
1111                 }
1112         }
1114   function CheckNewBranchName($name,$base)
1115   {
1116     $f = $this->fai_release;
1117     if($name == ""){
1118       return(false);
1119     }elseif(in_array($name,$this->getBranches($f))) {
1120       return(false);
1121     }elseif(tests::is_department_name_reserved($name,$base)){
1122       return(false);
1123     }
1124     return(true);
1125   }
1127   function save_object()
1128   {
1129     $this->DivListFai->save_object();
1131     /* Get posted release */
1132     $r_releases = array_flip($this->getBranches());
1133     if(isset($_POST['fai_release']) && isset($r_releases[get_post('fai_release')])){
1134       $this->fai_release = $r_releases[get_post('fai_release')];
1136       $fai_filter = session::get("fai_filter");
1137       $fai_filter['fai_release'] = $this->fai_release;
1138       session::set("fai_filter",$fai_filter);
1139     }
1141     if(is_object($this->CopyPasteHandler)){
1142       $this->CopyPasteHandler->save_object();
1143     }
1144   }
1147   function copyPasteHandling_from_queue($s_action,$s_entry)
1148   {
1149     /* Check if Copy & Paste is disabled */
1150     if(!is_object($this->CopyPasteHandler)){
1151       return("");
1152     }
1155     /* Add a single entry to queue */
1156     if($s_action == "copy"){
1158       /* Cleanup object queue */
1159       $this->CopyPasteHandler->cleanup_queue();
1160       $entry    = $this->objects[$s_entry];
1161       $a_setup  = $this->get_type($entry);
1162       $dn = $entry['dn'];
1163       $this->CopyPasteHandler->add_to_queue($dn,$s_action,$a_setup[0],$a_setup[2],"fai");//$a_setup[1]);
1164     }
1166     /* Add entries to queue */
1167     if($s_action == "copy_multiple"){
1169       /* Cleanup object queue */
1170       $this->CopyPasteHandler->cleanup_queue();
1172       /* Add new entries to CP queue */
1173       foreach($this->list_get_selected_items() as $id){
1175         /* Cleanup object queue */
1176         $entry    = $this->objects[$id];
1177         $a_setup  = $this->get_type($entry);
1178         $dn = $entry['dn'];
1181         if($s_action == "copy_multiple"){
1182           $this->CopyPasteHandler->add_to_queue($dn,"copy",$a_setup[0],$a_setup[2],"fai");//$a_setup[1]);
1183         }
1184       }
1185     }
1187     /* Start pasting entries */
1188     if($s_action == "editPaste" && !($this->lock_type == "freeze" && !$this->allow_freeze_object_attach)){
1189       $this->start_pasting_copied_objects = TRUE;
1190     }
1192     /* Return C&P dialog */
1193     if($this->start_pasting_copied_objects && $this->CopyPasteHandler->entries_queued()){
1195       /* Get dialog */
1196       $this->CopyPasteHandler->SetVar("parent",&$this);
1197       $data = $this->CopyPasteHandler->execute();
1199       FAI::save_release_changes_now();
1201       /* Return dialog data */
1202       if(!empty($data)){
1203         return($data);
1204       }
1205     }
1207     /* Automatically disable status for pasting */
1208     if(!$this->CopyPasteHandler->entries_queued()){
1209       $this->start_pasting_copied_objects = FALSE;
1210     }
1211     return("");
1212   }
1215   /* Check if the given FAI class is used in this release 
1216    */
1217   static function check_class_name($oc,$name,$dn)
1218   {
1219     $base = FAI::get_release_dn($dn);
1220     $res  = FAI::get_all_objects_for_given_base($base,"(objectClass=".$oc.")",TRUE);
1221     $delete = array();
1222     $used   = array();
1223     foreach($res as $object){
1224       $used[$object['cn'][0]]= $object['cn'][0];
1225     }
1226     return($used);
1227   }
1230   /* Return plugin informations for acl handling */ 
1231   static function plInfo()
1232   {
1233     return (array( 
1234           "plShortName"   => _("FAI releases"),
1235           "plDescription" => _("FAI release management"),
1236           "plSelfModify"  => FALSE,
1237           "plDepends"     => array(),
1238           "plPriority"    => 0,
1239           "plSection"     => array("administration"),           
1240           "plCategory"    => array("fai"=> array("description" => _("FAI"),
1241                                                  "objectClass" => "FAIclass")),
1242           "plProvidedAcls"=> array()));
1243   }
1245 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
1246 ?>