Code

* Fix inheritance of kernel cmdline
[gosa.git] / trunk / gosa-plugins / goto / admin / systems / goto / class_workstationStartup.inc
1 <?php
2 class workstartup extends plugin
3 {
4   /* Ldap server list */
5   var $gotoLdapServers    = array();
6   var $gotoLdapServerList = array();
7   var $gotoLdap_inherit   = FALSE;
9   /* Generic terminal attributes */
10   var $gotoBootKernel       = "default-inherited";
11   var $gotoKernelParameters = "";
12   var $gotoLdapServer       = "default-inherited";
13   var $gotoModules          = array();
14   var $gotoAutoFs           = array();
15   var $gotoFilesystem       = array();
16   var $gotoTerminalPath     = "";
17   var $gotoBootKernels      = array();
19   /* attribute list for save action */
20   var $attributes           = array("gotoLdapServer", "gotoBootKernel", "gotoKernelParameters", 
21                                     "FAIclass", "FAIstate", "FAIstatus", "gotoShare","FAIdebianMirror", "FAIrelease");
22   var $objectclasses        = array("GOhard", "FAIobject");
24   /* Share */
25   var $gotoShares         = array();// Currently Share Option
26   var $gotoShare          = "";     // currently selected Share Option
27   var $gotoShareSelections= array();// Available Shares for this account in Listbox format
28   var $gotoAvailableShares= array();// Available Shares for this account
30   /* Helper */
31   var $orig_dn            = "";
32   var $ignore_account     = TRUE;
33  
34   /* FAI class selection */ 
35   var $FAIclass           = array();  // The currently selected classes 
36   var $FAIrelease           = "";
37   var $FAIdebianMirror      = "auto";
38   var $FAIstate             = "";
39   var $si_active            = FALSE;
40   var $si_fai_action_failed = FALSE;
42   var $cache              = array(); // Used as cache in fai mehtods
44   var $FAIstatus          = "";
45   var $FAIclasses         = array();
47   var $view_logged        = FALSE;
48   
49   /* FAI class selection */
50   var $InheritedFAIclass       = array();
51   var $InheritedFAIrelease     = "";
52   var $InheritedFAIdebianMirror= "auto";
54   var $CopyPasteVars    = array("gotoModules","gotoShares");
55   var $fai_activated    = FALSE;
56   var $o_group_dn       = "";
57   var $member_of_ogroup = FALSE;
59   function workstartup (&$config, $dn= NULL, $parent= NULL)
60   {
61     /* Check if FAI is active */
62     $tmp= $config->search("faiManagement", "CLASS",array('menu','tabs'));
63     if(!empty($tmp) && class_available("faiManagement")){
64       $this->fai_activated = TRUE;
65     }else{
66       $this->attributes = array("gotoLdapServer", "gotoBootKernel", "gotoKernelParameters", "gotoShare");
67       $this->objectclasses  = array("GOhard");
68     }
70     plugin::plugin ($config, $dn, $parent);
72     /* Check for si daemon */
73     $this->si_active = $this->config->get_cfg_value("gosaSupportURI") != "";
75     /* Check object group membership */
76     if(!isset($this->parent->by_object['ogroup'])){
77       $ldap = $this->config->get_ldap_link();
78       $ldap->cd ($this->config->current['BASE']);
79       $ldap->search("(&(objectClass=gotoWorkstationTemplate)(member=".LDAP::prepare4filter($this->dn)."))",array("cn","dn"));
80       if($ldap->count()){
81         $this->member_of_ogroup = TRUE;
82         $attrs = $ldap->fetch();
83         $this->o_group_dn = $attrs['dn'];
84       }
85     }
87     /* Creating a list of valid Mirrors 
88      * none will not be saved to ldap.
89      */
90     $ldap   = $this->config->get_ldap_link();
91     $ldap->cd($this->config->current['BASE']);
92     $ui = get_userinfo();
93     foreach($this->config->data['SERVERS']['LDAP'] as $dn => $data){
94       if($ui->get_category_permissions($data['dn'],"server",TRUE)){
95         for($i = 0; $i < $data['goLdapBase']['count']; $i ++){
96           $name = $data["cn"][0].":".$data["goLdapBase"][$i];
97           $this->gotoLdapServerList[]= $name; 
98         }
99       }
100     }
102     /* Get list of assigned ldap servers 
103      */ 
104     if(isset($this->attrs['gotoLdapServer'])){
105       unset($this->attrs['gotoLdapServer']['count']);
106       sort($this->attrs['gotoLdapServer']);
107       foreach($this->attrs['gotoLdapServer'] as $value){
108         $this->gotoLdapServers[] = preg_replace("/^[0-9]*:/","",$value);
109       }
110     } 
111     natcasesort($this->gotoLdapServerList);
113     if(!count($this->gotoLdapServers) && $this->member_of_ogroup){ 
114       $this->gotoLdap_inherit = TRUE;
115     }
117     /* FAI Initialization
118        Skip this if FAI is not activated 
119      */
120     if($this->fai_activated) {
122       /* Parse used FAIclasses (stored as string).
123        * The single classes are seperated by ' '.
124        * There is also the release type given, after first
125        *  occurrence of ':'.
126        */
127       $this->FAIclass =array();
128       if(isset($this->attrs['FAIclass'][0])){
129         $tmp = split(" ",$this->attrs['FAIclass'][0]);
130         $tmp2 =array();  
132         foreach($tmp as $class){
133           if( ":" == $class[0] ) {
134             $this->FAIrelease = trim(substr($class, 1));
135           }else{
136             $tmp2[$class] = $class;
137           }
138         }
139         $this->FAIclass = $tmp2;
140       }
141     }
143     /* Get arrays */
144     foreach (array("gotoModules", "gotoAutoFs", "gotoFilesystem") as $val){
145       if (isset($this->attrs["$val"]["count"])){
146         for ($i= 0; $i<$this->attrs["count"]; $i++){
147           if (isset($this->attrs["$val"][$i])){
148             array_push($this->$val, $this->attrs["$val"][$i]);
149           }
150         }
151       }
152       sort ($this->$val);
153       $this->$val= array_unique($this->$val);
154     }
156     /* Prepare Shares */
157     if((isset($this->attrs['gotoShare']))&&(is_array($this->attrs['gotoShare']))){
158       unset($this->attrs['gotoShare']['count']);
159       foreach($this->attrs['gotoShare'] as $share){
160         $tmp = $tmp2 = array();
161         $tmp = split("\|",$share);
162         $tmp2['server']      =$tmp[0];
163         $tmp2['name']        =$tmp[1];
164         $tmp2['mountPoint']  =$tmp[2];
165         $this->gotoShares[$tmp[1]."|".$tmp[0]]=$tmp2;
166       }
167     }
169     $this->gotoShareSelections= $config->getShareList(true);
170     $this->gotoAvailableShares= $config->getShareList(false);
171     $tmp2 = array();
172   
174     $this->orig_dn= $this->dn;
176     /* Handle inheritance value "default" */
177     if ($this->member_of_ogroup){
178       $this->gotoBootKernels= array("default-inherited" => '['._("inherited").']'); 
179     }
181     /* If we are member in an object group,
182      *  we have to handle inherited values.
183      * So you can see what is inherited.
184      */
185     if ($this->member_of_ogroup){
187       if(count($this->FAIclass)==0 && $this->FAIrelease == ""){
188         $this->FAIdebianMirror = "inherited";
189       }
191       if($this->fai_activated){
192         $map= array("gotoBootKernel","FAIclass","FAIdebianMirror");
193       }else{
194         $map= array("gotoBootKernel");
195       }
197       $ldap = $this->config->get_ldap_link();
198       $ldap->cat($this->o_group_dn);
199       $attrs= $ldap->fetch();
201       foreach ($map as $name){
202         if (!isset($attrs[$name][0])){
203           continue;
204         }
206         switch ($name){
207           case 'gotoBootKernel':
208             $this->gotoBootKernels['default-inherited']=  _("inherited").' ['.$attrs[$name][0].']' ;
209             break;
211           case 'FAIclass':
212             $str = split(":",$attrs[$name][0]);
213             $this->InheritedFAIclass    = split("\ ",trim($str[0]));
214             $this->InheritedFAIrelease  = trim($str[1]);
215             break;
217           case 'FAIdebianMirror':
218             $this->InheritedFAIdebianMirror = $attrs[$name][0];
219             break;
220         }
221       }
222     }
224     $this->update_fai_cache();
226     if($this->fai_activated && !$this->si_fai_action_failed && $this->si_active){
228       /* Check if the current mirror is available 
229        */
230       if(!isset($this->cache['SERVERS'][$this->FAIdebianMirror])){
231         if(count($this->FAIclass)){
232           msg_dialog::display(_("Error"), sprintf(_("FAI mirror '%s' is not available - setting to mirror 'auto'!"), $this->FAIdebianMirror), ERROR_DIALOG);
233         }
234         $this->FAIdebianMirror = "auto";
235         $this->FAIrelease = key($this->cache['SERVERS'][$this->FAIdebianMirror]);
236         $this->cache['CLASSES'] = array();
237         $this->update_fai_cache();
238       }
239   
240       /* Check if the current mirror is available 
241        */
242       if(!isset($this->cache['SERVERS'][$this->FAIdebianMirror][$this->FAIrelease])){
243         $new_release = key($this->cache['SERVERS'][$this->FAIdebianMirror]); 
244         if(count($this->FAIclass)){
245           msg_dialog::display(_("Error"), sprintf(_("FAI release '%s' is not available on mirror '%s' - setting to release '%s'!"), $this->FAIrelease, $this->FAIdebianMirror,$new_release), ERROR_DIALOG);
246         }
247         $this->FAIrelease = $new_release;
248         $this->cache['CLASSES'] = array();
249         $this->update_fai_cache();
250       }
251     }
252   }
254   
255   function check()
256   {
257     $messages = array();
258     
259     /* Call common method to give check the hook */
260     $messages= plugin::check();
262     /* If there are packages selected, but no mirror show error */   
263     if(($this->FAIdebianMirror == "none")&&(count($this->FAIclass)>0)){
264       $messages[]=_("Please select a 'FAI server' or remove the 'FAI classes'.");
265     }
267     return($messages);
268   }
270   function execute()
271   {
272         /* Call parent execute */
273         plugin::execute();
275     if($this->is_account && !$this->view_logged){
276       $this->view_logged = TRUE;
277       new log("view","workstation/".get_class($this),$this->dn);
278     }
280     /* Do we represent a valid terminal? */
281     if (!$this->is_account && $this->parent === NULL){
282       $display= "<img alt=\"\" src=\"images/small-error.png\" align=middle>&nbsp;<b>".
283         msgPool::noValidExtension(_("workstation"))."</b>";
284       return ($display);
285     }
287     /* Add module */
288     if (isset ($_POST['add_module'])){
289       if ($_POST['module'] != "" && $this->acl_is_writeable("gotoModules")){
290         $this->add_list ($this->gotoModules, $_POST['module']);
291       }
292     }
294     /* Delete module */
295     if (isset ($_POST['delete_module'])){
296       if (count($_POST['modules_list']) && $this->acl_is_writeable("gotoModules")){
297         $this->del_list ($this->gotoModules, $_POST['modules_list']);
298       }
299     }
301     /* FAI class management */
302     if($this->fai_activated){
303       if(((isset($_POST['AddClass']))&&(isset($_POST['FAIclassesSel']))) && ($this->acl_is_writeable("FAIclass"))){
304         $found = 0 ; 
306         /* If this new class/profile will attach a second partition table
307          * to our list of classes, abort and show a message.
308          */
309         foreach($this->FAIclass as $name){
310           # FIXME: Where does FAIclassInfo come from??
311           if(isset($this->FAIclassInfo[$name])){
312             foreach($this->FAIclassInfo[$name] as $atr){
313               if(isset($atr['obj'])){
314                 if($atr['obj'] == "FAIpartitionTable"){
315                   $found ++ ; 
316                 }
317               }
318             }
319           }
320         }
322         if((isset($this->FAIclassInfo[$_POST['FAIclassesSel']]['FAIpartitionTable']))&&($found>0)){
323           msg_dialog::display(_("Error"), _("There is already a profile containing a partition table in your configuration!") , ERROR_DIALOG);
324         }else{
325           $this->FAIclass[$_POST['FAIclassesSel']]=$_POST['FAIclassesSel'];
326         }
327       }
329       $sort = false;
331       /* Move one used class class one position up or down */
332       if($this->acl_is_writeable("FAIclass")){
333         foreach($_POST as $name => $val){
335           $sort_type = false;
336           if((preg_match("/sort_up/",$name))&&(!$sort)){
337             $sort_type = "sort_up_";
338           }
339           if((preg_match("/sort_down/",$name))&&(!$sort)){
340             $sort_type = "sort_down_";
341           }
343           if(($sort_type)&&(!$sort)){
344             $value = base64_decode(preg_replace("/_.*$/i","",preg_replace("/".$sort_type."/i","",$name)));
345             $sort = true;
347             $last = -1;
348             $change_down  = -1;
350             /* Create array with numeric index */ 
351             $tmp = array();
352             foreach($this->FAIclass as $class){
353               $tmp [] = $class;
354             }
356             /* Walk trough array */
357             foreach($tmp as $key => $faiName){
358               if($faiName == $value){
359                 if($sort_type == "sort_up_"){
360                   if($last != -1){
361                     $change_down= $last;
362                   }
363                 }else{
364                   if(isset($tmp[$key+1])){
365                     $change_down = $key;
366                   }
367                 }
368               }
369               $last = $key;
370             }
372             $tmp2 = array();
373             $skip = false;    
375             foreach($tmp as $ky => $vl){
377               if($ky == $change_down){
378                 $skip = $vl;
379               }else{
380                 $tmp2[$vl] = $vl;
381               }
382               if(($skip != false)&&($ky != $change_down)){
383                 $tmp2[$skip]  = $skip;
384                 $skip =false;
385               }
386             }   
387             $this->FAIclass = $tmp2; 
388           }
390           if(preg_match("/fai_remove/i",$name)){
391             $value = base64_decode(preg_replace("/_.*$/i","",preg_replace("/fai_remove_/i","",$name)));
392             unset($this->FAIclass[$value]);
393             if($this->FAIclass == array()){
394               /* class list is emtpy. Check whether the system is part of an object group and set
395               the FAI mirror to "inherited" in this case. */
396               if ($this->member_of_ogroup){
397                 $this->FAIdebianMirror = "inherited";
398               } 
399             }
400           }
401         }
402       }
404       /* Delete selected class from our list */
405       if($this->acl_is_writeable("FAIclass")){
406         if((isset($_POST['DelClass']))&&(isset($_POST['FAIclassSel']))){
407           if(isset($this->FAIclass[$_POST['FAIclassSel']])){
408             unset($this->FAIclass[$_POST['FAIclassSel']]);
409           }
410         }
411       }
412     }// END fai handling
414     /* Show main page */
415     $smarty= get_smarty();
417     /* Assign ACLs to smarty */
418     $tmp = $this->plInfo();
419     foreach($tmp['plProvidedAcls'] as $name => $translation){
420       $smarty->assign($name."ACL",$this->getacl($name));
421     } 
423     $smarty->assign("member_of_ogroup",$this->member_of_ogroup);
425     /* In this section server shares will be defined
426      * A user can select one of the given shares and a mount point
427      *  and attach this combination to his setup.
428      */
429     $smarty->assign("gotoShareSelections",    $this->gotoShareSelections);
430     $smarty->assign("gotoShareSelectionKeys", array_flip($this->gotoShareSelections));
432     /* if $_POST['gotoShareAdd'] is set, we will try to add a new entry
433      * This entry will be, a combination of mountPoint and sharedefinitions
434      */
435     if((isset($_POST['gotoShareAdd'])) && isset($_POST['gotoShareSelection']) && ($this->acl_is_writeable("gotoShare"))) {
436       /* We assign a share to this user, if we don't know where to mount the share */
437       if((!isset($_POST['gotoShareMountPoint']))||(empty($_POST['gotoShareMountPoint']))||(preg_match("/[\|]/i",$_POST['gotoShareMountPoint']))){
438         msg_dialog::display(_("Error"), msgPool::required(_("Mount point")), ERROR_DIALOG);
439       }else{
440     
441         if(isset($this->gotoAvailableShares[$_POST['gotoShareSelection']])){
442           $a_share = $this->gotoAvailableShares[$_POST['gotoShareSelection']];
443           $s_mount = $_POST['gotoShareMountPoint'];
444           /* Preparing the new assignment */
445           $this->gotoShares[$a_share['name']."|".$a_share['server']]=$a_share;
446           $this->gotoShares[$a_share['name']."|".$a_share['server']]['mountPoint']=$s_mount;
447         }
448       }
449     }
451     /* if the Post  gotoShareDel is set, someone asked GOsa to delete the selected entry (if there is one selected)
452      * If there is no defined share selected, we will abort the deletion without any message
453      */
454     if(($this->acl_is_writeable("gotoShare"))&& (isset($_POST['gotoShareDel']))&&(isset($_POST['gotoShare']))){
455       unset($this->gotoShares[$_POST['gotoShare']]);
456     }
458     $smarty->assign("gotoShares",$this->printOutAssignedShares());
459     $smarty->assign("gotoSharesCount",count($this->printOutAssignedShares()));
460     $smarty->assign("gotoShareKeys",array_flip($this->printOutAssignedShares()));
461     $smarty->assign("gotoBootKernels",$this->gotoBootKernels);
463     /* Create divSelectBox for ldap server selection
464      */
465     $SelectBoxLdapServer = new divSelectBox("LdapServer");
466     $SelectBoxLdapServer->SetHeight(130);
468     /* Add new ldap server to the list */
469     if($this->acl_is_writeable("gotoLdapServer") && 
470         !$this->gotoLdap_inherit && 
471         isset($_POST['add_ldap_server']) && 
472         isset($_POST['ldap_server_to_add'])){
473       if(isset($this->gotoLdapServerList[$_POST['ldap_server_to_add']])){
474         $to_add = $this->gotoLdapServerList[$_POST['ldap_server_to_add']];
475         if(!in_array($to_add,$this->gotoLdapServers)){
476           $this->gotoLdapServers[] = $to_add;
477         }
478       }
479     }
480     
481     /* Move ldap servers up and down */
482     if(!$this->gotoLdap_inherit && $this->acl_is_writeable("gotoLdapServer")){
483       foreach($_POST as $name => $value){
484         if(preg_match("/sort_ldap_up_/",$name)){
485           $id = preg_replace("/^sort_ldap_up_([0-9]*)_(x|y)$/","\\1",$name);
486           $from =  $id;  
487           $to   =  $id -1;
488           $tmp = $this->array_switch_item($this->gotoLdapServers,$from,$to);
489           if($tmp){
490             $this->gotoLdapServers = $tmp;
491           }
492           break;
493         }
494         if(preg_match("/sort_ldap_down_/",$name)){
495           $id = preg_replace("/^sort_ldap_down_([0-9]*)_(x|y)$/","\\1",$name);
496           $from =  $id;  
497           $to   =  $id +1;
498           $tmp = $this->array_switch_item($this->gotoLdapServers,$from,$to);
499           if($tmp){
500             $this->gotoLdapServers = $tmp;
501           }
502           break;
503         }
504         if(preg_match("/gotoLdapRemove_/",$name)){
505           $id = preg_replace("/^gotoLdapRemove_([0-9]*)_(x|y)$/","\\1",$name);
506           $value = $this->gotoLdapServers[$id];
507           $this->gotoLdapServers = array_remove_entries(array($value),$this->gotoLdapServers);
508           break;
509         }
510       } 
511     }
512   
513     /* Add Entries */
514     if($this->acl_is_readable("gotoLdapServer")){
516       foreach($this->gotoLdapServers as $key => $server){
518         /* Announce missing entries */
519         if(!in_array($server,$this->gotoLdapServerList)){
520           $server = $server."&nbsp;<font style='color:red'>(missing)</font>";
521         }
523         /* Convert old style entry */
524         if (!preg_match('%:ldaps?://%', $server)){
525           $server= "ldap://".preg_replace('/^([^:]+):/', '\1/', $server);
527         /* Beautify new style entries */
528       } else {
529         $server= preg_replace("/^[^:]+:/", "", $server);
530       }
532       $SelectBoxLdapServer->AddEntry(
533           array(array("string" => $server),
534             array("string" => 
535               "<input class='center' type='image' src='images/lists/sort-up.png' name='sort_ldap_up_".$key."'>&nbsp;".
536               "<input class='center' type='image' src='images/lists/sort-down.png' name='sort_ldap_down_".$key."'>&nbsp;".
537               "<input class='center' type='image' src='images/lists/trash.png' name='gotoLdapRemove_".$key."'>",
538               "attach" => "style='text-align:right;width:40px;border-right:0px;'")));
539       }    
540     }    
542     if($this->gotoLdap_inherit){
543       $smarty->assign("gotoLdapServerACL_inherit", preg_replace("/w/","",$this->getacl("gotoLdapServer")));;
544     }else{
545       $smarty->assign("gotoLdapServerACL_inherit", $this->getacl("gotoLdapServer"));
546     }
547     
548     $list = array();
549     foreach($this->gotoLdapServerList as $key => $entry){
550       if(!in_array($entry,$this->gotoLdapServers)){
552         /* Convert old style entry */
553         if (!preg_match('%:ldap[s]*://%', $entry)){
554           $entry= "ldap://".preg_replace('/^([^:]+):/', '\1/', $entry);
556         /* Beautify new style entries */
557         } else {
558           $entry= preg_replace("/^[^:]+:/", "", $entry);
559         }
561         $list[$key] = $entry;
562       }
563     }
564     $smarty->assign("gotoLdapServers",    $SelectBoxLdapServer->DrawList());
565     $smarty->assign("gotoLdapServerList", $list);
566     $smarty->assign("gotoLdap_inherit",   $this->gotoLdap_inherit);
567     $smarty->assign("JS",  session::get('js'));
569     foreach (array("gotoModules", "gotoAutoFs", "gotoFilesystem") as $val){
570       $smarty->assign("$val", $this->$val);
571     }
573     /* Values */
574     foreach(array("gotoBootKernel","gotoShare","FAIclasses","FAIclass","FAIdebianMirror","FAIrelease") as $val){
575       $smarty->assign($val, $this->$val);
576     }
578     $smarty->assign("fai_activated",$this->fai_activated);
580     /* Create FAI output */
581     $this->update_fai_cache();
582     $smarty->assign("si_fai_action_failed",$this->si_fai_action_failed);
583     $smarty->assign("si_active",$this->si_active);
585     $div = new divSelectBox("WSFAIscriptClasses");
586     $div -> SetHeight("110");
587   
588     if(!$this->si_fai_action_failed && $this->si_active && $this->fai_activated){
590       $smarty->assign("FAIservers"  , $this->cache['SERVERS']);
591       $smarty->assign("FAIdebianMirror",$this->FAIdebianMirror);
592       $smarty->assign("FAIrelease"  , $this->FAIrelease);
593       $smarty->assign("FAIclasses"  , $this->selectable_classes());
595       /* Get classes for release from cache.
596        * Or build cache
597        */
598       if($this->FAIdebianMirror == "inherited"){
599         $release = $this->InheritedFAIrelease;
600       }else{
601         $release = $this->FAIrelease;
602       }
604       $smarty->assign("gotoBootKernels",$this->cache['KERNELS'][$release]);
605       $smarty->assign("InheritedFAIrelease",$this->InheritedFAIrelease);
607       $str_empty  = " &nbsp;<img src='images/empty.png' alt=\"\" width='7'>"; 
608       if($this->acl_is_writeable("FAIclass")){
609         $str_up     = " &nbsp;<input type='image' src='images/lists/sort-up.png'    name='sort_up_%s'    value='%s'>";
610         $str_down   = " &nbsp;<input type='image' src='images/lists/sort-down.png'  name='sort_down_%s'  value='%s'>";
611         $str_remove = " &nbsp;<input type='image' src='images/lists/trash.png'  name='fai_remove_%s' value='%s'>";
612       }else{
613         $str_up=$str_down=$str_remove=$str_empty;
614       }
616       /* Get classes */
617       if($this->FAIdebianMirror == "inherited"){
618         $tmp = $this->InheritedFAIclass;
619       }else{
620         $tmp = $this->FAIclass;
621       }
623       /* Get invalid classes */
624       $invalid = $this->get_invalid_classes($tmp);
626       /* Draw every single entry */
627       $i = 1;
628       if($this->acl_is_readable("FAIclass")){
629         foreach($tmp as $class){
630           /* Mark invalid classes. (Not in selected release)
631            */
632           $marker = "";
633           if(in_array_ics($class,$invalid)){
634             $marker = "&nbsp;<font color='red'>("._("Not available in current setup").")</font>";
635           }
637           /* Create up/down priority icons  
638            * Skip this, if we have inherited the FAI classes.
639            */
640           if($this->FAIdebianMirror == "inherited"){
641             $str = "";
642           }else{
643             if($i==1){
644               $str = $str_empty.$str_down.$str_remove;
645             }elseif($i == count($this->FAIclass)){
646               $str = $str_up.$str_empty.$str_remove;
647             }else{
648               $str = $str_up.$str_down.$str_remove;
649             }
650           }
651           $i ++ ; 
653           /*  Get used FAI types from the class 
654            */ 
655           if(!$marker) {
656             $types = $this->get_fai_types_string($class, true);
657           }
658           else {
659             $types = "";
660           }
662           $div->AddEntry(array(
663             array("string"=>$class.$marker),
664             array("string"=>$types),
665                 array("string"=>preg_replace("/\%s/",base64_encode($class),$str),"attach"=>"style='width:50px;border-right:none;'")
666                 ));
667         }  
668       }// END FAI output generation 
669     }// END FAI output generation 
670     $smarty->assign("FAIScriptlist",$div->DrawList()); 
672     /* Show main page */
673     $smarty->assign("gotoKernelParameters",$this->gotoKernelParameters);
674     return($smarty->fetch (get_template_path('workstationStartup.tpl', TRUE,dirname(__FILE__))));
675   }
678   function remove_from_parent()
679   {
680     /* Cancel if there's nothing to do here */
681     if ((!$this->acl_is_removeable())){
682       return;
683     }
685     /* Remove and write to LDAP */
686     plugin::remove_from_parent();
687     $ldap = $this->config->get_ldap_link();
688     $ldap->cd($this->dn);
689     $this->cleanup();
690     $this->attrs['gotoModules'] = array();
691     $ldap->modify($this->attrs);
692     $this->handle_post_events("remove");
693     new log("remove","workstation/".get_class($this),$this->dn);
694   }
697   /* Save data to object */
698   function save_object()
699   {
700     $old_mirror  = $this->FAIdebianMirror;
701     plugin::save_object();
703     /* Update release */
704     if($old_mirror != $this->FAIdebianMirror){
705       if(!isset($this->cache['SERVERS'][$this->FAIdebianMirror][$this->FAIrelease])){
706         $this->FAIrelease      = key($this->cache['SERVERS'][$this->FAIdebianMirror]);
707       }
708     }
710     /* Clear FAI class list if FAI mirror has been set to inherited */
711     if($this->FAIdebianMirror == "inherited"){
712       $this->FAIclass =array();
713     }
715     if(isset($_POST['WorkstationStarttabPosted'])){
716       if(isset($_POST['gotoLdap_inherit'])){
717         $this->gotoLdap_inherit = TRUE;
718       }else{
719         $this->gotoLdap_inherit = FALSE;
720       }
721     }
722   }
725   /* Save to LDAP */
726   function save()
727   {
729     /* Depending on the baseobject (Ogroup / WS) we
730      *  use another set of objectClasses
731      * In case of WS itself, we use  "array("GOhard", "FAIobject");"
732      * if we are currently editing from ogroup menu we use (array("gotWorkstationTemplate","GOhard", "FAIobject"))
733      */
734     if(isset($this->parent->by_object['ogroup'])){
735       $this->objectclasses = array("gotoWorkstationTemplate");
736     }elseif(isset($this->parent->by_object['workgeneric'])){
737       $this->objectclasses = array("GOhard");
738     }elseif(isset($this->parent->by_object['servgeneric'])){
739       $this->objectclasses = array("GOhard","gotoWorkstationTemplate");
740     }else{
741       msg_dialog::display(_("Fatal error"),
742           "Object Type Configuration is unknown. Please contact the GOsa developers.",
743           FATAL_ERROR_DIALOG);
744       exit();
745     }
747     /* Append FAI class */
748     if($this->fai_activated){
749       $this->objectclasses[]  = "FAIobject";
750     }
752     /* Find proper terminal path for tftp configuration
753        FIXME: This is suboptimal when the default has changed to
754        another location! */
755     if (($this->gotoTerminalPath == "default")){
756       $ldap= $this->config->get_ldap_link();
758       /* Strip relevant part from dn, keep trailing ',' */
759       $tmp= preg_replace("/^cn=[^,]+,".get_ou('terminalRDN')."/i", "", $this->dn);
760       $tmp= preg_replace("/".$this->config->current['BASE']."$/i", "", $tmp);
762       /* Walk from top to base and try to load default values for
763          'gotoTerminalPath'. Abort when an entry is found. */
764       while (TRUE){
765         $tmp= preg_replace ("/^[^,]+,/", "", $tmp);
767         $ldap->cat("cn=default,".get_ou('terminalRDN').$tmp.
768             $this->config->current['BASE'], array('gotoTerminalPath'));
769         $attrs= $ldap->fetch();
770         if (isset($attrs['gotoTerminalPath'])){
771           $this->gotoTerminalPath= $attrs['gotoTerminalPath'][0];
772           break;
773         }
775         /* Nothing left? */
776         if ($tmp == ""){
777           break;
778         }
779       }
780     }
782     plugin::save();
784     unset( $this->attrs['FAIrelease'] );
785     $str = "";
787     /* Skip FAI attribute handling if not necessary */
788     if($this->fai_activated && !$this->si_fai_action_failed){
789       if($this->FAIdebianMirror == "inherited"){
790         $this->attrs['FAIclass'] = $this->attrs['FAIrelease'] =  $this->attrs['FAIdebianMirror'] = array();
791       }else{
792         foreach($this->FAIclass as $class){
793           $str .= $class." ";
794         }
795         $str = trim($str);
796         if(empty($this->attrs['FAIclass'])){
797           $this->attrs['FAIclass'] = array();
798         }else{
799           $this->attrs['FAIclass']= $str." :".$this->FAIrelease;
800         }
801       }
802     }
804     /* Add missing arrays */
805     foreach (array("gotoFilesystem", "gotoAutoFs", "gotoModules") as $val){
806       if (isset ($this->$val) && count ($this->$val) != 0){
807     
808         $this->attrs["$val"]= array_unique($this->$val);
809       }
810       if(!isset($this->attrs["$val"])) $this->attrs["$val"]=array();
811     }
813     /* Prepare list of ldap servers */
814     $this->attrs['gotoLdapServer'] = array();
815     if(!$this->gotoLdap_inherit){
816       $i = 0;
817       foreach($this->gotoLdapServers as $server){
818         $i ++;
819         $this->attrs['gotoLdapServer'][] = $i.":".$server;
820       }
821     }
823     if ($this->gotoBootKernel == "default-inherited"){
824       $this->attrs['gotoBootKernel']= array();
825     }
827     /* if mirror == none stop saving this attribute */
828     if($this->FAIdebianMirror == "none"){
829       $this->FAIdebianMirror = "";
830     }
831    
832     /* Get FAIstate from object, the generic tab could have changed it during execute */
833     $ldap= $this->config->get_ldap_link();
834     $ldap->cd($this->dn);
837     /* Skip FAI attribute handling if not necessary */
838     if($this->fai_activated && !$this->si_fai_action_failed && $this->si_active){
839       $ldap->cat($this->dn,array("FAIstate"));
840       $checkFAIstate = $ldap->fetch();
842       /* Remove FAI objects if no FAI class is selected */ 
843       if((count($this->FAIclass)==0) && (!isset($checkFAIstate['FAIstate']))){
844         $this->attrs['FAIclass']        = array();
845         $this->attrs['FAIdebianMirror'] = array();
846       }
847     }else{
849       /* Don't touch FAI objects if something went wrong with the si daemon.
850        */
851       if(isset($this->attrs['FAIclass'])) unset($this->attrs['FAIclass']);
852       if(isset($this->attrs['FAIdebianMirror'])) unset($this->attrs['FAIdebianMirror']);
853     }
855     /* prepare share settings */
856     $tmp = array();
857     foreach($this->gotoShares as $name => $settings){
858       $tmp2= split("\|",$name);
859       $name = $tmp2[0];
860       $tmp[] = $settings['server']."|".$name."|".$settings['mountPoint'];
861     }
862     $this->attrs['gotoShare']=$tmp;
863     $this->cleanup();
864     $ldap->modify ($this->attrs); 
865     new log("modify","workstation/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
867     if (!$ldap->success()){
868       msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_MOD, get_class()));
869     }
870     $this->handle_post_events("modify");
872     /* Check if LDAP server has changed */
873     if ((isset($this->attrs['gotoLdapServer']) && class_available("DaemonEvent")) || $this->gotoLdap_inherit){
874       $events = DaemonEvent::get_event_types(SYSTEM_EVENT | HIDDEN_EVENT);
875       $o_queue = new gosaSupportDaemon();
876       if(isset($events['TRIGGERED']['DaemonEvent_reload_ldap_config'])){
877         $evt = $events['TRIGGERED']['DaemonEvent_reload_ldap_config'];
878         $macs = array();
879     
880         /* Get list of macAddresses 
881          */
882         if(isset($this->parent->by_object['ogroup'])){
883         
884           /* If we are an object group, add all member macs 
885            */
886           $p = $this->parent->by_object['ogroup'];
887           foreach($p->memberList as $dn => $obj){
888             if(isset($p->objcache[$dn]['macAddress']) && !empty($p->objcache[$dn]['macAddress'])){
889               $macs[] = $p->objcache[$dn]['macAddress'];
890             }
891           }
892         }elseif(isset($this->parent->by_object['workgeneric']->netConfigDNS->macAddress)){
894           /* We are a workstation. Add current mac.
895            */
896           $mac = $this->parent->by_object['workgeneric']->netConfigDNS->macAddress;
897           if(!empty($mac)){
898             $macs[] = $mac;
899           }          
900         }elseif(isset($this->parent->by_object['servgeneric']->netConfigDNS->macAddress)){
902           /* We are a server. Add current mac.
903            */
904           $mac = $this->parent->by_object['servgeneric']->netConfigDNS->macAddress;
905           if(!empty($mac)){
906             $macs[] = $mac;
907           }          
908         }
910         /* Trigger event for all member objects 
911          */
912         foreach($macs as $mac){
913           $tmp = new $evt['CLASS_NAME']($this->config);
914           $tmp->set_type(TRIGGERED_EVENT);
915           $tmp->add_targets(array($mac));
916           if(!$o_queue->append($tmp)){
917             msg_dialog::display(_("Service infrastructure"),msgPool::siError($o_queue->get_error()),ERROR_DIALOG);
918           }
919         }
920       }
921     }
922   }
925   /* Add value to array, check if unique */
926   function add_list (&$array, $value)
927   {
928     if ($value != ""){
929       $array[]= $value;
930       sort($array);
931       array_unique ($array);
932     }
933   }
936   /* Delete value to array, check if unique */
937   function del_list (&$array, $list)
938   {
939     $tmp= array();
940     foreach ($array as $mod){
941       if (!in_array($mod, $list)){
942         $tmp[]= $mod;
943       }
944     }
945     $array= $tmp;
946   }
948   /* Generate ListBox frindly output for the defined shares
949    * Possibly Add or remove an attribute here,
950    */
951   function printOutAssignedShares()
952   {
953     $a_return = array();
954     if(is_array($this->gotoShares)){
955       foreach($this->gotoShares as $share){
956         $a_return[$share['name']."|".$share['server']]= $share['name']." [".$share['server']."]";
957       }
958     }
959     return($a_return);
960   }
964   function PrepareForCopyPaste($source)
965   {
966     plugin::PrepareForCopyPaste($source);    
968     $source_o = new workstartup ($this->config, $source['dn']);
969     foreach(array("FAIclass","gotoModules", "gotoAutoFs", "gotoFilesystem",
970           "FAIstate", "FAIrelease", "gotoKernelParameters","gotoShares",
971           "gotoLdapServers", "gotoLdap_inherit") as $attr){
972       $this->$attr = $source_o->$attr;
973     }
974     if (isset($source['FAIstate'])) {
975       $this->attrs['FAIstate'] = $source['FAIstate'];
976     }
977   }
979   
980   function array_switch_item($ar,$from,$to)
981   {
982     if(!is_array($ar)){
983       return(false);
984     }
985     if(!isset($ar[$from])){
986       return(false);
987     }
988     if(!isset($ar[$to])){
989       return(false);
990     }
992     $tmp = $ar[$from];
993     $ar[$from] = $ar[$to];    
994     $ar[$to] = $tmp;    
995     return($ar);
996   }
999   /* Return plugin informations for acl handling */ 
1000   static function plInfo()
1001   {
1002     return (array( 
1003           "plShortName"   => _("Startup"),
1004           "plDescription" => _("System startup"),
1005           "plSelfModify"  => FALSE,
1006           "plDepends"     => array(),
1007           "plPriority"    => 9,
1008           "plSection"     => array("administration"),           
1009           "plCategory"    => array("workstation","server","ogroups"),
1011           "plProvidedAcls"=> array(
1012             "gotoLdapServer"        => _("Ldap server"),
1013             "gotoBootKernel"        => _("Boot kernel"),
1014             "gotoKernelParameters"  => _("Kernel parameter"),
1016             "gotoModules"           => _("Kernel modules"),
1017             "gotoShare"             => _("Shares"),
1019             "FAIclass"              => _("FAI classes"),
1020             "FAIdebianMirror"       => _("Debian mirror"),
1021             "FAIrelease"            => _("Debian release"),
1023             "FAIstatus"             => _("FAI status flag")) // #FIXME is this acl realy necessary ?
1024           ));
1025   }
1027   /* Function to find bad classes */
1028   function update_bad_classes($release)
1029   {
1031     if(!isset($this->cache['BAD_CLASSES'][$release])) {
1032       /* Find "bad" classes */
1033       $ui = get_userinfo();
1034       $ldap = $this->config->get_ldap_link();
1036       /* Convert release name to a valid ldap uri component */
1037       $release_components = split('/', $release);
1038       $release_components = array_reverse($release_components);
1039       for($i=0;$i<sizeof($release_components);$i++) {
1040         $release_components[$i] = "ou=" . $release_components[$i];
1041       }
1042       $release_dn_part = join(',', $release_components);
1044       /* Limit the base to the release in the faiBase */
1045       $base = sprintf("%s,%s%s", $release_dn_part, get_ou('faiBaseRDN'), $this->config->current['BASE']);
1047       /* Build a list of all fai classes, that don't have the unittag of the user
1048        * and are not freezed or removed. The classes will be filtered by this
1049        * list. Its needed to specify each objectClass (FAIpackageList etc.) because
1050        * FAIClass would match sub-objects, too, which would lead to an array that
1051        * is much bigger then needed */
1052       $filter = sprintf('(&(|(objectClass=FAItemplate)(objectClass=FAIpackageList)(objectClass=FAIprofile)(objectClass=FAIscript)(objectClass=FAIpartitionTable)(objectClass=FAIHook)(objectClass=FAIvariable)(objectClass=FAItemplate))(&(!(gosaUnitTag=%s))(&(!(FAIstate=*removed*))(!(FAIstate=*freeze*)))))', $ui->gosaUnitTag);
1053       $ldap->cd($base);
1054       $ldap->search(sprintf("$filter", $ui->gosaUnitTag));
1055         
1056       $this->cache['BAD_CLASSES'][$release] = array(); 
1057       while ($entry = $ldap->fetch()) {
1058         $classname = $entry['cn'][0];
1059         if (!in_array($classname, $this->cache['BAD_CLASSES'][$release])) {
1060           array_push($this->cache['BAD_CLASSES'][$release], $classname);
1061         }
1062       }
1063     } 
1064    }
1066   /* Updates release dns 
1067    *  and reads all classes for the current release, 
1068    *  if not already done ($this->cache).
1069    */
1070   function update_fai_cache($first_call = FALSE)
1071   {
1072     $force = FALSE;
1073     if(!$this->si_active) return; 
1074     $start = microtime(TRUE);  
1076     if($this->si_fai_action_failed && !isset($_POST['fai_si_retry'])) return;
1078     $this->si_fai_action_failed = FALSE;
1080     /* Get the list of available servers and their releases. 
1081      */
1082     if($force || !isset($this->cache['SERVERS'])){
1084       $o_queue = new gosaSupportDaemon();
1085       $servers = $o_queue->FAI_get_server();
1086       if($o_queue->is_error()){
1087         msg_dialog::display(_("Service infrastructure"),msgPool::siError($o_queue->get_error()),ERROR_DIALOG);
1088         $this->si_fai_action_failed = TRUE;
1089         $this->cache = array();
1090         return;
1091       }else{
1093         $base = $this->config->current['BASE'];
1094         $ldap = $this->config->get_ldap_link();
1095         foreach($servers as $server){
1096           /* Dont show servers that have a different unittag as the user*/
1097           $ui = get_userinfo();
1098           if ($ui->gosaUnitTag != $server['TAG']) {
1099             continue;
1100           }
1101         
1102           $rel = $server['FAI_RELEASE'];
1103           $this->cache['SERVERS']['auto'][$rel] = $rel;
1104           $this->cache['SERVERS'][$server['SERVER']][$rel] = $rel;
1105           uksort($this->cache['SERVERS']['auto'], 'strnatcasecmp');
1106           uksort($this->cache['SERVERS'][$server['SERVER']], 'strnatcasecmp');
1107         }
1108       }
1109     }
1111     /* Ensure that our selection is valid, else we get several PHP warnings 
1112         if there is no FAI configuration at all.
1113      */
1114     if(!isset($this->cache['SERVERS'][$this->FAIdebianMirror])){
1115       $this->cache['SERVERS'][$this->FAIdebianMirror][''] ='';
1116     }
1118     /* Build up arrays, without checks */
1119     if(!$first_call){
1121       /* Check if the selected mirror is available */
1122       if(!isset($this->cache['SERVERS'][$this->FAIdebianMirror])){
1123         $this->FAIdebianMirror = "auto";
1124         $this->FAIrelease      = key($this->cache['SERVERS'][$this->FAIdebianMirror]);
1125         trigger_error("There was a problem with the selected FAIdebianMirror. This mirror ('".$this->FAIdebianMirror."') is not available");
1126       }
1128       /* Check if the selected release is available */
1129       if($this->FAIdebianMirror != "inherited" && !isset($this->cache['SERVERS'][$this->FAIdebianMirror][$this->FAIrelease])){
1131         if($this->FAIrelease != ""){
1132           trigger_error("There was a problem with the selected FAIrelease. This release ('".$this->FAIrelease."') is not available");
1133         }
1134         $this->FAIrelease = key($this->cache['SERVERS'][$this->FAIdebianMirror]);
1135       }
1136     }
1138     /* Get classes for release from cache. 
1139      * Or build cache
1140      */
1141     if($this->FAIdebianMirror == "inherited"){
1142       $release = $this->InheritedFAIrelease;
1143     }else{
1144       $release = $this->FAIrelease;
1145     }
1147     if($force || !isset($this->cache['CLASSES'][$release]) && $release != ""){
1149       /* Get the list of available servers and their releases.
1150        */
1151       $o_queue = new gosaSupportDaemon();
1152       $classes = $o_queue->FAI_get_classes($release);
1153       $this->cache['CLASSES'][$release] = array();
1154       if($o_queue->is_error()){
1155         msg_dialog::display(_("Service infrastructure"),msgPool::siError($o_queue->get_error()),ERROR_DIALOG);
1156         $this->si_fai_action_failed = TRUE;
1157         $this->cache=array();
1158         return;
1159       }else{
1160         foreach($classes as $class){
1161           $classname = $class['CLASS'];
1162           $this->update_bad_classes($release);
1163           if(isset($this->cache['BAD_CLASSES'][$release])){
1164             /* Skip classes that are in the array of bad classes */
1165             if (in_array($classname, $this->cache['BAD_CLASSES'][$release])) {
1166               continue;
1167             }
1168           }
1169           if (!isset($this->cache['CLASSES'][$release][$classname])) {
1170             $this->cache['CLASSES'][$release][$classname] = array();
1171           }
1172           array_push($this->cache['CLASSES'][$release][$classname], $this->analyse_fai_object($class));
1173         }
1174       }
1176       /* Add object caught from external hook
1177        */
1178       $lines= $this->GetHookElements();
1179       foreach ($lines as $hline){
1180         $entries= split(";", $hline);
1181         $server = $entries['0'];
1182         $url    = $entries['1'];
1183         if (!empty($url)){
1185           /* Split releases */
1186           if (isset($entries[2])){
1187             $releases= split(",", $entries[2]);
1189             foreach ($releases as $release_data){
1190               $release_c  = preg_replace('/:.*$/', '', $release_data);
1191               $sections_c = split(':', preg_replace('/^[^:]+:([^|]+)|.*$/', '\1', $release_data));
1192               $classes_c  = split('\|', preg_replace('/^[^|]+\|(.*)$/', '\1', $release_data));
1194               if($release_c == $release){
1195                 $this->cache['SERVERS'][$url][$release_c]=$release_c;
1196                 $this->cache['SERVERS']['auto'][$release_c]=$release_c; 
1197                 foreach ($classes_c as $class){
1198                   if ($class != ""){
1199                     $this->cache['CLASSES'][$release_c][$class]= array();
1200                   }
1201                 }
1202               }
1203             }
1204           }
1205         }
1206       }
1207       uksort($this->cache['SERVERS'], 'strnatcasecmp');
1209       /* Only add inherit option, if we are part in an object group
1210        */
1211       if($this->member_of_ogroup){
1212         $this->cache['SERVERS'] = array_merge(array('inherited' => array()),$this->cache['SERVERS']);
1213       }
1214     }
1216     /* Get list of available kernel for this release 
1217      */
1218     if(!isset($this->cache['KERNELS'])) $this->cache['KERNELS'] = array();
1220     if($force || !isset($this->cache['KERNELS'][$release])){
1221       $o_queue = new gosaSupportDaemon();
1222       $tmp = $o_queue->FAI_get_kernels($release);
1223       $this->cache['KERNELS'][$release] = array();
1224       foreach($this->gotoBootKernels as $name => $default){
1225         $this->cache['KERNELS'][$release][$name] = $default;
1226       }
1227       foreach($tmp as $kernel){
1228         if(empty($kernel)) continue;
1229         $this->cache['KERNELS'][$release][$kernel]=$kernel;
1230       }
1231       ksort($this->cache['KERNELS'][$release]);
1232     }
1233   }
1235   /* Detect the release and get all classes for it */
1236   function get_classes() {
1237     $this->update_fai_cache();
1239     if($this->FAIdebianMirror == "inherited" && isset($this->cache['CLASSES'][$this->InheritedFAIrelease])){
1240       $classes = $this->cache['CLASSES'][$this->InheritedFAIrelease];
1241     }elseif(isset($this->cache['CLASSES'][$this->FAIrelease])){
1242       $classes = $this->cache['CLASSES'][$this->FAIrelease];
1243     }else{
1244       $classes = array();
1245     }
1247     return $classes;
1248   }
1250   /* This function return an array containing all 
1251    *  invalid classes for the selected server/release
1252    */
1253   function get_invalid_classes($classes)
1254   {
1255     $release_classes = $this->get_classes();
1257     /* Detect all classes that are not valid 
1258      *  for the selected release 
1259      */
1260     $NA = array();
1261     foreach($classes as $class){
1262       if(!isset($release_classes[$class])){
1263         $NA[] = $class;
1264       }
1265     }
1266     return($NA);
1267   }  
1269   function get_fai_types_string($class_name, $image=FALSE) {
1270     $classes = $this->get_classes();
1272     $result = array();
1274     if ($image) {        
1275       # Pre-fill the array fields with an empty image so that
1276       # everything looks fine if the type in this position
1277       # doesn't exist in that class
1278       for ($i=0; $i<6; $i++) {
1279         $result[$i] = "<img src='images/empty.png' width='17'>&nbsp;";
1280       }
1281     }
1283     foreach($classes[$class_name] as $type) {
1284       $index = $type['index'];
1285       if ($image) {
1286         $string = "<img src='".$type['img']."' width='17' title='".$type['desc']."'>&nbsp;";
1287       }
1288       else {
1289         $string = $type['Abbr'];
1290       }
1291       
1292       $result[$index] = $string;
1293     }
1294     return join(' ', $result);
1296   }
1298   /* Get all selectable classes for the ui select box
1299    */
1300   function selectable_classes()
1301   {
1302     $classes = $this->get_classes();
1304     $ret= array();
1305     foreach($classes as $class_name => $class_types) {
1306       if (!in_array($class_name, $this->FAIclass)) {
1307         $ret[$class_name] = $this->get_fai_types_string($class_name);
1308       }
1309     }
1310     uksort($ret, 'strnatcasecmp');
1311     return($ret);
1312   }
1315   /* Analyse FAI object and return an array with usefull informations like 
1316    *  FAIobject type.
1317    */
1318   function analyse_fai_object($attr)
1319   {
1320     $result = array();
1321     switch($attr['TYPE']){
1322       case 'FAIpartitionTable':
1323         $result["Type"]= 'FAIpartitionTable'; 
1324         $result["Abbr"]= 'Pt';
1325         $result["img"]= 'plugins/fai/images/fai_partitionTable.png';
1326         $result["desc"] = _('Partition table');
1327         $result["index"]= 0;
1328         break;
1329       case 'FAIpackageList':
1330         $result["Type"]= 'FAIpackageList';
1331         $result["Abbr"]= 'Pl';
1332         $result["img"] = 'plugins/fai/images/fai_packages.png';
1333         $result["desc"] = _('Package list');
1334         $result["index"] = 1;
1335         break;
1336       case 'FAIscript':
1337         $result["Type"]= 'FAIscript'; 
1338         $result["Abbr"]= 'S'; 
1339         $result["img"]= 'plugins/fai/images/fai_script.png';
1340         $result["desc"] = _('Scripts');
1341         $result["index"] = 2;
1342         break;
1343       case 'FAIvariable':
1344         $result["Type"]= 'FAIvariable'; 
1345         $result["Abbr"]= 'V';
1346         $result["img"]= 'plugins/fai/images/fai_variable.png'; 
1347         $result["desc"] = _('Variables');
1348         $result["index"]= 3;
1349         break;
1350       case 'FAIhook':
1351         $result["Type"]= 'FAIhook'; 
1352         $result["Abbr"]= 'H'; 
1353         $result["img"]= 'plugins/fai/images/fai_hook.png';
1354         $result["desc"] = _('Hooks');
1355         $result["index"]= 4;
1356         break;
1357       case 'FAIprofile':
1358         $result["Type"]= 'FAIprofile'; 
1359         $result["Abbr"]= 'P';
1360         $result["img"]= 'plugins/fai/images/fai_profile.png';
1361         $result["desc"]= _('Profile');
1362         $result["index"] = 5;
1363         break;
1364       case 'FAItemplate': 
1365         $result["Type"]= 'FAItemplate'; 
1366         $result["Abbr"]= 'T';
1367         $result["img"] = 'plugins/fai/images/fai_template.png'; 
1368         $result["desc"]= _('Templates');
1369         $result["index"] = 6;
1370         break;
1371       default: trigger_error("Unknown FAI object type!");;
1372     }
1373     return($result);
1374   }
1377   /* Return repository hook output, if possible.
1378    */
1379   function GetHookElements()
1380   {
1381     $ret = array();
1382     $cmd= $this->config->search("servrepository", "repositoryBranchHook",array('tabs'));
1383     if(!empty($cmd)){
1384       $res = shell_exec($cmd);
1385       $res2 = trim($res);
1386       if((!$res)){
1387         msg_dialog::display(_("Configuration error"), msgPool::cmdexecfailed("repositoryBranchHook", $cmd), ERROR_DIALOG);
1388       }elseif(empty($res2)){
1389         msg_dialog::display(_("Configuration error"), _("'repositoryBranchHook' returned no result!"), ERROR_DIALOG);
1390       }else{
1391         $tmp = split("\n",$res);
1392         foreach($tmp as $line){
1393           if(empty($line)) continue;
1394           $ret[]= $line;
1395         }
1396       }
1397     }
1398     return($ret);
1399   }
1402   /* This function creates the release name out of a dn 
1403    *  e.g. "ou=1.0rc2,ou=siga,ou=fai,..." => "siga/1.0rc2"
1404    */
1405   function dn_to_release_name($dn)
1406   {
1407     $relevant = preg_replace("/,".preg_quote(get_ou("faiBaseRDN"), '/').".*$/","",$dn);
1408     $parts    = array_reverse(split("\,",$relevant));
1409     $str ="";
1410     foreach($parts as $part){
1411       $str .= preg_replace("/^ou=/","",$part)."/";
1412     }
1413     return(preg_replace("/\/$/","",$str)); 
1414   }
1417 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
1418 ?>