Code

Updated management classes to re-initialize after apply was pressed.
[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()){
464           $smarty->assign("release_hidden",base64_encode($this->fai_release));
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         if(!isset($_POST['release_hidden']) || base64_decode($_POST['release_hidden']) != $this->fai_release){
486           msg_dialog::display(_("Warning"),_("Release remove aborted, release name check failed."));
487         }else{
489           $bb =  $this->fai_release;
490           if(!isset($ldap)){
491             $ldap = $this->config->get_ldap_link();
492           }
494           $br = $this->getBranches();
496           if(isset($br[$bb]) && $this->acl_is_removeable()){
497             $name = $br[$bb];
499             $ldap->cd($bb);
500             $ldap->recursive_remove();
501             $ldap->cd(preg_replace('/,'.normalizePreg(get_ou('faiou')).'/', ','.get_ou('applicationou'), $bb));
502             $ldap->recursive_remove();
503             $ldap->cd(preg_replace('/,'.normalizePreg(get_ou('faiou')).'/', ','.get_ou('mimetypeou'), $bb));
504             $ldap->recursive_remove();
506             /* Search for all groups with configured application menus.
507               - First search all groups, to ensure that we only remove entries form whithin groups. 
508               - The search für menu configuration for the specified release and collect all those dns.
509               - Remove entries
510              */
511             $release_ou = preg_replace("/".normalizePreg(get_ou("faiou")).".*$/","",$bb);
512             $ldap->cd($this->config->current['BASE']);
513             $ldap->search("(objectClass=posixGroup)",array("dn"));
514           
515             /* Collect all group dns 
516              */
517             $groups = array();
518             while($attrs = $ldap->fetch()){
519               $groups[] = $attrs['dn'];
520             }
522             /* Collect all group menu release dns that match the release we have removed 
523              */
524             $dns = array();
525             foreach($groups as $dn){
526               $ldap->cd($dn);
527               $ldap->search("(objectClass=FAIbranch)",array("dn"));
528               while($attrs = $ldap->fetch()){
529                 if(preg_match("/^".normalizePreg($release_ou)."/",$attrs['dn'])){
530                   $dns[] = $attrs['dn'];
531                 }
532               }
533             }
534             
535             /* Finally remove collected release dns 
536              */
537             foreach($dns as $dn){
538               $ldap->cd($dn);
539               $ldap->recursive_remove();
540             }
542             /* Post remove */
543             $this->fai_release = $this->fai_base;
544             $this->lock_name   = $name;
545             $this->lock_dn     = $bb;
546             $this->postremove();
548             new log("remove","fai/".get_class($this),$br[$bb],array(),"Release removed");
549           }
550         }
551       }
552     }
555     /****************
556       Create a new branch "insert Name"
557      ****************/
559     if((isset($_POST['UseBranchName']))&&(($this->dispNewBranch)||($this->dispNewFreeze))){
560       session::set('LASTPOST',$_POST);
562       if($this->dispNewBranch){
563         $type = "branch";
564       }else{
565         $type = "freeze";
566       }
568       /* Check branch name */
569       $name = $_POST['BranchName'];
570       $is_ok = true;
571       $smarty->assign("BranchName",$name);
572       $base= $this->fai_base;
574       /* Check used characters */
575       if(!preg_match("/^[0-9a-z \ö\ä\ü\.\-_:,]*$/i",$name)){
576         msg_dialog::display(_("Error"), msgPool::invalid(_("Name"),$name,"/[0-9a-z \ö\ä\ü\.\-_:,]/i"), ERROR_DIALOG);
577         $is_ok = false;
578       }
580       /* Check if this name is already in use */
581       if(!$this->CheckNewBranchName($_POST['BranchName'],$this->fai_release)){
582         msg_dialog::display(_("Error"), msgPool::duplicated(_("Name")), ERROR_DIALOG);
583         $is_ok = false;
584       }
586       if($is_ok){
588         if(session::is_set('LASTPOST')){
589           $LASTPOST = session::get('LASTPOST');
590         }else{
591           $LASTPOST = array();
592         }
593         $LASTPOST['base'] = $base;
594         $LASTPOST['type'] = $type;
595         session::set('LASTPOST',$LASTPOST);
596         $smarty->assign("iframe", true);
597         $smarty->assign("plugID", $_GET['plug']);
598         $display        = $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
599         return($display);
600       }
601     }
604     /****************
605       Create a new branch 
606      ****************/
608     if(isset($_GET['PerformBranch'])){
609     
610       if(!$this->acl_is_createable()){
611         msg_dialog::display(_("Permission error"), msgPool::permCreate(_("Branch")), ERROR_DIALOG);
612       }else{
614         /* Create it know */
615         $this->dispNewBranch = false;
616         $this->dispNewFreeze = false;
618         $LASTPOST = session::get('LASTPOST');
619         $base = $LASTPOST['base'];
620         $_POST  = session::get('LASTPOST');      
621         $name = $_POST['BranchName'];
623         $type = $LASTPOST['type'];
624         $ldap = $this->config->get_ldap_link();
626         $baseToUse = $base;
627         if($this->fai_release !=  $this->fai_base){
628           $baseToUse = $this->fai_release;
629         }
631         /* Create new Release name to be able to set faidebianRelease for FAIpackageList */
633         $CurrentReleases  = $this->getBranches();
634         $NewReleaseName   = $name;
635         if(isset($CurrentReleases[$this->fai_release])) {
636           if($this->fai_release != $this->fai_base){
637             $NewReleaseName = $CurrentReleases[$this->fai_release]."/".$name;
638             $NewReleaseName = preg_replace("#\/#","/",$NewReleaseName); 
639           }else{
640             $NewReleaseName   = $name;
641           }
642         }
644         $appsrc = preg_replace("/".normalizePreg(get_ou('faiou'))."/",get_ou('applicationou'),$baseToUse); 
645         $appdst = preg_replace("/".normalizePreg(get_ou('faiou'))."/",get_ou('applicationou'),"ou=".$name.",".$baseToUse) ; 
647         $mimesrc = preg_replace("/".normalizePreg(get_ou('faiou'))."/",get_ou('mimetypeou'),$baseToUse); 
648         $mimedst = preg_replace("/".normalizePreg(get_ou('faiou'))."/",get_ou('mimetypeou'),"ou=".$name.",".$baseToUse) ; 
650         /* Check if source depeartments exist */
651         foreach(array($baseToUse,$appsrc,$mimesrc) as $dep){
652           $ldap->cd($this->config->current['BASE']);
653           $ldap->cat($dep);
654           if(!$ldap->count()){
655             $ldap->create_missing_trees($dep);
656           }
657         }
659         /* Print header to have styles included */
660         echo '  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
661           <html>
662           <head>
663           <title></title>
664           <style type="text/css">@import url("themes/default/style.css");</style>
665           <script language="javascript" src="include/focus.js" type="text/javascript"></script>
666           </head>
667           <body style="background: none;margin:3px;color:black">
668           ';
670         new log("create","fai/".get_class($this),$NewReleaseName,array(),"New $type created");
672         /* Duplicate group application releases 
673          */
674         FAI::copy_FAI_group_releases($CurrentReleases[$this->fai_release],$name,$type);
676         /* Duplicate applications 
677          */
678         $ldap->cat($appsrc,array("dn")) ;
679         if($ldap->count()){
680           $ldap->cd ($appdst);
681           $ldap->recursive_remove();
682           FAI::copy_FAI_resource_recursive($appsrc,$appdst,$NewReleaseName,$type,true);
683         }
685         /* Duplicate mime types 
686          */
687         $ldap->cat($mimesrc,array("dn")) ;
688         if($ldap->count()){
689           $ldap->cd ($mimedst);
690           $ldap->recursive_remove();
691           FAI::copy_FAI_resource_recursive($mimesrc,$mimedst,$NewReleaseName,$type,true);
692         }
694         $attr = array();
695         $attr['objectClass'] = array("organizationalUnit","FAIbranch");
696         $attr['ou']       = $name;
697         $attr['FAIstate'] = $type;
698         $ldap->cd($this->config->current['BASE']);
699         $ldap->cd("ou=".$name.",".$baseToUse);
700         $ldap->cat("ou=".$name.",".$baseToUse);
701         if($ldap->count()){
702           $ldap->modify($attr);
703         }else{
704           $ldap->add($attr);
705         }
707         /* Duplicate fai objects 
708          */
709         //      $ldap->cd ("ou=".$name.",".$baseToUse);
710         //      $ldap->recursive_remove();
711         //      FAI::copy_FAI_resource_recursive($baseToUse,"ou=".$name.",".$baseToUse,$NewReleaseName,$type,true);
713         echo "<div style='width:100%;text-align:right;'><form name='form' method='post' action='?plug=".$_GET['plug']."' target='_parent'>
714           <br><input type='submit' name='CloseIFrame' value='"._("Continue")."'>
715           </form></div>";
717         echo "<script language=\"javascript\" type=\"text/javascript\">scrollDown2();</script>" ;
719         /* Print footer to have valid html */
720         echo "</body></html>";
722         $this->dispNewFreeze = false; 
724         /* Postcreate */ 
726         /* Assign possible attributes */
727         $this->lock_type  = $type; 
728         $this->lock_name  = $name; 
729         $this->lock_dn    = $baseToUse;
730         $this->postcreate();
731         exit();
732       }
733     }
735     /****************
736       Display dialog to enter new Branch name
737      ****************/
739     /* Check if we have a post create method configured
740      *  else skip this operation. (Skip:Button in the ui should be disabled in this case too)
741      */
742     if("" != $this->config->search("faiManagement", "POSTCREATE",array('menu','tabs'))){
743       if(($s_action == "branch_branch")||($this->dispNewBranch)){
744         if(!$this->acl_is_createable()){
745         msg_dialog::display(_("Permission error"), msgPool::permCreate(_("Branch")), ERROR_DIALOG);
746         }else{
747           $this->dispNewBranch=true;
748           $smarty->assign("iframe",false);
749           $display      .= $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
750           return($display);
751         }
752       } 
753     }
755  
756     /****************
757       Display dialog to enter new Freeze name
758      ****************/
760     /* Check if we have a post create method configured
761      *  else skip this operation. (Skip:Button in the ui should be disabled in this case too)
762      */
763     if("" != $this->config->search("faiManagement", "POSTCREATE",array('menu','tabs'))){
764       if(($s_action == "freeze_branch")||($this->dispNewFreeze)){
765         if(!$this->acl_is_createable()){
766           msg_dialog::display(_("Permission error"), msgPool::permCreate(_("Branch")), ERROR_DIALOG);
767         }else{
768           $this->dispNewFreeze = true;
769           $smarty->assign("iframe",false);
770           $display      .= $smarty->fetch(get_template_path('faiNewBranch.tpl', TRUE, dirname(__FILE__)));
771           return($display);
772         }
773       }
774     }
777     /****************
778       Create a new object 
779      ****************/
781     $types = array( "new_partition"     =>  "FAIpartitionTable",
782                     "new_script"        =>  "FAIscript",
783                     "new_hook"          =>  "FAIhook",
784                     "new_variable"      =>  "FAIvariable",
785                     "new_template"      =>  "FAItemplate",
786                     "new_package"       =>  "FAIpackageList");
787     $types_i18n = array( "new_partition"     =>  _("partition table"),
788                     "new_script"        =>  _("script"),
789                     "new_hook"          =>  _("hook"),
790                     "new_variable"      =>  _("variable"),
791                     "new_template"      =>  _("template"),
792                     "new_package"       =>  _("package list"));
794     if(isset($types[$s_action])){
795       $acl = $this->ui->get_permissions($this->fai_base,"fai/".$type_acl_mapping[$types[$s_action]]);
796       if(preg_match("/c/",$acl)){
797         $this->dialog = new askClassName($this->config,$this->dn,$this->ui,$types[$s_action]);
798         $this->dialog->parent = &$this;
799       }else{
800         msg_dialog::display(_("Permission error"), sprintf(_("You have no permission to create a new %s!"), $types_i18n[$s_action]), ERROR_DIALOG);
801       }
802     }
804     /* New Profile */
805     if($s_action == "new_profile"){
806       $this->dn = "new" ;
808       $acl = $this->ui->get_permissions($this->fai_base,"fai/faiProfile");
809       if(preg_match("/c/",$acl)){
810         $a_setup= $this->get_type(array("objectClass"=>array("FAIprofile")));
811         $this->dialog = new $a_setup[0]($this->config,$this->config->data['TABS'][$a_setup[2]],$this->dn,"fai");
812         $this->dialog->set_acl_base($this->base);
813         $this->dialog->parent = &$this;
815         $this->is_dialog = false;
816       }else{
817         msg_dialog::display(_("Permission error"), sprintf(_("You have no permission to create a new %s!"), _("profile")), ERROR_DIALOG);
818       }
819     }
822     /****************
823       Get from ask class name dialog 
824      ****************/
826     if($s_action == "select_class_name_finished"){
827       $this->dialog->save_object();
828       if(count($this->dialog->check())!=0){
829         foreach($this->dialog->check() as $msg){
830           msg_dialog::display(_("Error"), $msg, ERROR_DIALOG);
831         }               
832       }elseif(isset($this->dialog->objectClass)){
833         $this->dn = "new" ;
834         $a_setup= $this->get_type(array("objectClass"=>array($this->dialog->objectClass)));
835         $name = $this->dialog->save();
837         if(class_exists($a_setup[0])){
838           $this->dialog = new $a_setup[0]($this->config,$this->config->data['TABS'][$a_setup[2]],$this->dn,"fai");
839           $this->dialog->set_acl_base($this->base);
840           $this->dialog->by_object[$a_setup[1]]->cn = $name;
841           $this->dialog->parent = &$this;
842           $this->is_dialog = true;
843         }
844       }         
845     }   
848     /****************
849      Cancel dialogs 
850      ****************/
852                 if(isset($_POST['edit_cancel'])){
853                         unset($this->dialog);
854                         $this->dialog=FALSE;
855                         $this->is_dialog = false;
856                         session::un_set('objectinfo');
857                         del_lock ($this->dn);
858                 }
861     /****************
862       Save sub dialogs 
863      ****************/
865                 /* This check if the given tab could be saved 
866                  * If it was possible to save it, remove dialog object. 
867                  * If it wasn't possible, show errors and keep dialog.
868                  */
869                 if((isset($_POST['edit_finish']) || isset($_POST['edit_apply'])) && (isset($this->dialog->config))){
870                         $this->dialog->save_object();
871       $msgs= $this->dialog->check();
872                         if(count($msgs)!=0){
873                                 foreach($msgs as $msg){
874           msg_dialog::display(_("Error"), $msg, ERROR_DIALOG);
875                                 }
876                         }else{
877                                 $this->dialog->save();
878         FAI::save_release_changes_now();
879         if (!isset($_POST['edit_apply'])){
880           del_lock ($this->dn);
881           unset($this->dialog);
882           $this->dialog=FALSE;
883           $this->is_dialog=false;
884           session::un_set('objectinfo');
885         }else{
887           /* Reinitialize tab */
888           if($this->dialog instanceof tabs){
889             $this->dialog->re_init();
890           }
891         }
892                         }
893                 }
896     /****************
897       Display currently open dialog 
898      ****************/
900                 /* If dialog is set, but $this->is_dialog==false, then 
901                  *  only the "abort" button is shown, this are dialogs that must not be saved.  
902                  * If is_dialog == true, we are currently editing tab objects.
903                  *  Here we need both, save and cancel
904                  */ 
906                 if(is_object($this->dialog)){
907                         $display .= $this->dialog->execute();
908                         /* Don't show buttons if tab dialog requests this */
910       if(isset($this->dialog->current)){
912         $obj = $this->dialog->by_object[$this->dialog->current];
914         if((isset($obj->is_dialog) && (!$obj->is_dialog)) || (isset($obj->dialog) && (!$obj->dialog))){
916           $display.= "<p style=\"text-align:right\">\n";
917           if(!$this->no_save){
918             $display.= "<input type=\"submit\" name=\"edit_finish\" style=\"width:80px\" value=\"".msgPool::okButton()."\">\n";
919             $display.= "&nbsp;\n";
920             if ($this->dn != "new"){
921               $display.= "<input type=submit name=\"edit_apply\" value=\"".msgPool::applyButton()."\">\n";
922               $display.= "&nbsp;\n";
923             }
924           }
925           $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\"".msgPool::cancelButton()."\">\n";
926           $display.= "</p>";
927         }elseif(!isset($this->dialog->current)){
928           $display.= "<p style=\"text-align:right\">\n";
929           $display.= "<input type=\"submit\" name=\"edit_continue\" value=\""._("Continue")."\">&nbsp;";
930           $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\"".msgPool::cancelButton()."\">\n";
931           $display.= "</p>";
932         }
933       }else{
934         $display.= "<p style=\"text-align:right\">\n";
935         $display.= "<input type=\"submit\" name=\"edit_continue\" value=\""._("Continue")."\">&nbsp;";
936         $display.= "<input type=\"submit\" name=\"edit_cancel\" value=\"".msgPool::cancelButton()."\">\n";
937         $display.= "</p>";
939       }
940       return($display);
941                 }
942                 
944     /****************
945       Dialog display
946      ****************/
948     /* Check if there is a snapshot dialog open */
949     $base = $this->fai_base;
950     if($str = $this->showSnapshotDialog($base,$this->get_used_snapshot_bases())){
951       return($str);
952     }
954     /* Display dialog with system list */
955     $this->reload();
956     $this->DivListFai->parent = &$this;
957     $this->DivListFai->execute();
958     $this->DivListFai->setEntries($this->objects);
959     return($this->DivListFai->Draw());
960         }
963   /* Return departments, that will be included within snapshot detection */
964   function get_used_snapshot_bases()
965   {
966     $tmp = array();
967     $types = array("faipartitionou","faiscriptou","faitemplateou","faihookou","faiprofileou","faivariableou","faipackageou");
968     foreach($types as $type){
969       $tmp[] = get_ou($type).$this->fai_release;
970     }
971     return($tmp);
972   }
975   /* Get available branches for current base */
976   function getBranches($base = false,$prefix = "")
977   {
978     $ret = array("/"=>$this->fai_base);
979     $ldap = $this->config->get_ldap_link();
980     if(!$base){
981       $base = $this->fai_base;
982     }
983     $tmp = FAI::get_all_releases_from_base($base,true);
984     foreach($tmp as $dn => $name){
985       $ret[$name]=$dn;
986     }
987     ksort($ret);
988     $ret = array_flip($ret);
990     return ($ret);
991   }
992   
994   function list_get_selected_items()
995   {
996     $ids = array();
997     foreach($_POST as $name => $value){
998       if(preg_match("/^item_selected_[0-9]*$/",$name)){
999         $id   = preg_replace("/^item_selected_/","",$name);
1000         $ids[$id] = $id;
1001       }
1002     }
1003     return($ids);
1004   }
1007   /* reload list of objects */
1008   function reload()
1009   {
1010     /* Variable initialisation */
1011     $str            = "";
1012     $Regex          = $this->DivListFai->Regex;
1013     $this->objects  = array();
1015     /* Get base */
1016     $base = $this->fai_base;
1017     if($this->fai_release != $this->fai_base){
1018       $br = $this->getBranches();
1019       if(isset($br[$this->fai_release])){
1020         $base = $this->fai_release;
1021       }else{
1022         $base = $this->fai_base;
1023       }
1024     }
1025     $this->base = $base;
1026     $this->set_acl_base($this->base);
1028     $this->lock_type = FAI::get_release_tag(FAI::get_release_dn($base));
1030     /* Create a new list of FAI object 
1031      * Generate List of Partitions,Hooks,Scripts,Templates,Profiles ... 
1032      */
1033     $ObjectTypes = array(
1034         "FAIpartitionTable"  => array("OU"=> get_ou('faipartitionou') , "CHKBOX"=>"ShowPartitions"  ,"ACL" => "faiPartitionTable"),
1035         "FAIpackageList"     => array("OU"=> get_ou('faipackageou')   , "CHKBOX"=>"ShowPackages"    ,"ACL" => "faiPackage"),
1036         "FAIscript"          => array("OU"=> get_ou('faiscriptou')    , "CHKBOX"=>"ShowScripts"     ,"ACL" => "faiScript"),
1037         "FAIvariable"        => array("OU"=> get_ou('faivariableou')  , "CHKBOX"=>"ShowVariables"   ,"ACL" => "faiVariable"),
1038         "FAIhook"            => array("OU"=> get_ou('faihookou')      , "CHKBOX"=>"ShowHooks"       ,"ACL" => "faiHook"),
1039         "FAIprofile"         => array("OU"=> get_ou('faiprofileou')   , "CHKBOX"=>"ShowProfiles"    ,"ACL" => "faiProfile"),
1040         "FAItemplate"        => array("OU"=> get_ou('faitemplateou')  , "CHKBOX"=>"ShowTemplates"   ,"ACL" => "faiTemplate"));
1042     $filter = "";
1043     foreach($ObjectTypes as $key => $data){
1044       if($this->DivListFai->$data['CHKBOX']){
1045         $filter.= "(objectClass=".$key.")";
1046       }
1047     }
1048     $filter = "(&(|".$filter.")(cn=$Regex))";
1049     
1050     /* Get resolved release dependencies */
1051     $tmp = FAI::get_all_objects_for_given_base($base,$filter);
1053     /* Ge listed ldap objects */
1054     $ldap = $this->config->get_ldap_link();
1055     $ldap->cd($this->config->current['BASE']);
1057     /* Get release tag 
1058        If current release is freezed, all objects are freezed to.
1059      */
1060     $ldap->cat($base);
1061     $release_attrs = $ldap->fetch();
1062     $force_freezed = FALSE;
1063     if(isset($release_attrs['FAIstate'][0]) && preg_match("/freeze/i",$release_attrs['FAIstate'][0])){
1064       $force_freezed = TRUE;
1065     }
1067     foreach($tmp as $entry){
1069       /* Get some more informations about the object */ 
1070       $ldap->cat($entry['dn'], array("cn","description","objectClass","FAIclass","FAIstate","objectClass"));
1071       $object  = $ldap->fetch();
1073       /* Walk through possible types */
1074       foreach($ObjectTypes as $type => $rest){  
1076         $acl = $this->ui->get_permissions($object['dn'],"fai/".$rest ['ACL']);
1078         if(in_array($type,$object['objectClass']) && preg_match("/r/",$acl)){
1080           /* Prepare object */
1081           unset($object['objectClass']['count']);
1082           if(!isset($object['description'][0])){
1083             $object['description'][0]="";
1084           }
1086           /* Clean up object informations */
1087           $obj                  = array();
1088           $obj['cn']                          = $object['cn'][0];
1089           $obj['dn']                          = $object['dn'];
1090           $obj['acl']                       = $acl;
1091           $obj['description']   = $object['description'][0];
1092           $obj['objectClass']   = $object['objectClass'];
1094           /* Append type to this string, to be able to check if the selected 
1095            * entry is of type 'freeze' or 'branch'
1096            */
1097           if(!isset($object['FAIstate'])){
1098             $obj['FAIstate'] = $this->lock_type;
1099           }else{
1100             $obj['FAIstate'] = $object['FAIstate'][0]; 
1101           }
1103           if($force_freezed){
1104             $obj['FAIstate'] = "freeze";
1105           }
1107           $this->objects[strtolower($obj['cn']).$obj['cn'].$type] = $obj;
1108           $this->objects[strtolower($obj['cn']).$obj['cn'].$type]['type']=$type;
1109         }
1110                         }
1111                 }
1113                 ksort($this->objects);
1114                 reset ($this->objects);
1115         
1116                 /* use numeric index, thats a bit more secure */        
1117                 $tmp0 = array();
1118                 foreach($this->objects as $obj){
1119                         $tmp0[]= $obj;
1120                 }
1121                 $this->objects = array();
1122                 $this->objects = $tmp0;
1123         }
1125         function remove_lock()
1126         {
1127                 if (isset($this->dn)){
1128                         del_lock ($this->dn);
1129                 }
1130         }
1132         function get_type($array){
1133                 if(in_array("FAIpartitionTable",$array['objectClass'])){
1134                         return(array("tabsPartition","faiPartitionTable","FAIPARTITIONTABS"));
1135                 }
1136                 if(in_array("FAIscript",$array['objectClass'])){
1137                         return(array("tabsScript","faiScript","FAISCRIPTTABS"));
1138                 }
1139                 if(in_array("FAItemplate",$array['objectClass'])){
1140                         return(array("tabsTemplate","faiTemplate","FAITEMPLATETABS"));
1141                 }
1142                 if(in_array("FAIhook",$array['objectClass'])){
1143                         return(array("tabsHook","faiHook","FAIHOOKTABS"));
1144                 }
1145                 if(in_array("FAIvariable",$array['objectClass'])){
1146                         return(array("tabsVariable","faiVariable","FAIVARIABLETABS"));
1147                 }
1148                 if(in_array("FAIprofile",$array['objectClass'])){
1149                         return(array("tabsProfile","faiProfile","FAIPROFILETABS"));
1150                 }
1151                 
1152                 if(in_array("FAIpackageList",$array['objectClass'])){
1153                         return(array("tabsPackage","faiPackage","FAIPACKAGETABS"));
1154                 }
1155         }
1157   function CheckNewBranchName($name,$base)
1158   {
1159     $f = $this->fai_release;
1160     if($name == ""){
1161       return(false);
1162     }elseif(in_array($name,$this->getBranches($f))) {
1163       return(false);
1164     }elseif(tests::is_department_name_reserved($name,$base)){
1165       return(false);
1166     }
1167     return(true);
1168   }
1170   function save_object()
1171   {
1172     $this->DivListFai->save_object();
1174     /* Get posted release */
1175     $r_releases = array_flip($this->getBranches());
1176     if(isset($_POST['fai_release']) && isset($r_releases[get_post('fai_release')])){
1178       /* Ensure that we have a valid release selected */
1179       if(!isset($r_releases[get_post('fai_release')])){
1180         msg_dialog::display(_("Warning"),_("The selected release is not available anymore. All triggered actions are skipped."));
1181         $_POST = array();
1182         $plug =$_GET['plug'];
1183         $_GET  = array("plug" => $plug);
1184         $this->fai_release = $this->fai_base;
1185       }else{
1186         $this->fai_release = $r_releases[get_post('fai_release')];
1187       }
1189       $fai_filter = session::get("fai_filter");
1190       $fai_filter['fai_release'] = $this->fai_release;
1191       session::set("fai_filter",$fai_filter);
1192     }
1194     if(is_object($this->CopyPasteHandler)){
1195       $this->CopyPasteHandler->save_object();
1196     }
1197   }
1200   function copyPasteHandling_from_queue($s_action,$s_entry)
1201   {
1202     /* Check if Copy & Paste is disabled */
1203     if(!is_object($this->CopyPasteHandler)){
1204       return("");
1205     }
1208     /* Add a single entry to queue */
1209     if($s_action == "copy"){
1211       /* Cleanup object queue */
1212       $this->CopyPasteHandler->cleanup_queue();
1213       $entry    = $this->objects[$s_entry];
1214       $a_setup  = $this->get_type($entry);
1215       $dn = $entry['dn'];
1216       $this->CopyPasteHandler->add_to_queue($dn,$s_action,$a_setup[0],$a_setup[2],"fai");//$a_setup[1]);
1217     }
1219     /* Add entries to queue */
1220     if($s_action == "copy_multiple"){
1222       /* Cleanup object queue */
1223       $this->CopyPasteHandler->cleanup_queue();
1225       /* Add new entries to CP queue */
1226       foreach($this->list_get_selected_items() as $id){
1228         /* Cleanup object queue */
1229         $entry    = $this->objects[$id];
1230         $a_setup  = $this->get_type($entry);
1231         $dn = $entry['dn'];
1234         if($s_action == "copy_multiple"){
1235           $this->CopyPasteHandler->add_to_queue($dn,"copy",$a_setup[0],$a_setup[2],"fai");//$a_setup[1]);
1236         }
1237       }
1238     }
1240     /* Start pasting entries */
1241     if($s_action == "editPaste" && !($this->lock_type == "freeze" && !$this->allow_freeze_object_attach)){
1242       $this->start_pasting_copied_objects = TRUE;
1243     }
1245     /* Return C&P dialog */
1246     if($this->start_pasting_copied_objects && $this->CopyPasteHandler->entries_queued()){
1248       /* Get dialog */
1249       $this->CopyPasteHandler->SetVar("parent",$this);
1250       $data = $this->CopyPasteHandler->execute();
1252       FAI::save_release_changes_now();
1254       /* Return dialog data */
1255       if(!empty($data)){
1256         return($data);
1257       }
1258     }
1260     /* Automatically disable status for pasting */
1261     if(!$this->CopyPasteHandler->entries_queued()){
1262       $this->start_pasting_copied_objects = FALSE;
1263     }
1264     return("");
1265   }
1268   /* Check if the given FAI class is used in this release 
1269    */
1270   static function check_class_name($oc,$name,$dn)
1271   {
1272     $base = FAI::get_release_dn($dn);
1273     $res  = FAI::get_all_objects_for_given_base($base,"(objectClass=".$oc.")",TRUE);
1274     $delete = array();
1275     $used   = array();
1276     foreach($res as $object){
1277       $used[$object['cn'][0]]= $object['cn'][0];
1278     }
1279     return($used);
1280   }
1283   /* Return plugin informations for acl handling */ 
1284   static function plInfo()
1285   {
1286     return (array( 
1287           "plShortName"   => _("FAI releases"),
1288           "plDescription" => _("FAI release management"),
1289           "plSelfModify"  => FALSE,
1290           "plDepends"     => array(),
1291           "plPriority"    => 0,
1292           "plSection"     => array("administration"),           
1293           "plCategory"    => array("fai"=> array("description" => _("FAI"),
1294                                                  "objectClass" => "FAIclass")),
1295           "plProvidedAcls"=> array()));
1296   }
1298 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
1299 ?>