Code

2c553a5d616b71b28ad84b15e4993baba4fbfed5
[gosa.git] / plugins / admin / systems / class_workstationStartup.inc
1 <?php
2 class workstartup extends plugin
3 {
4   /* CLI vars */
5   var $cli_summary= "Manage terminal startup options";
6   var $cli_description= "Some longer text\nfor help";
7   var $cli_parameters= array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
9   /* Generic terminal attributes */
10   var $bootmode             = "G";
11   var $goLdapServerList     = array("default");
12   var $gotoBootKernel       = "default";
13   var $gotoKernelParameters = "";
14   var $gotoLdapServer       = "";
15   var $gotoModules          = array();
16   var $gotoAutoFs           = array();
17   var $gotoFilesystem       = array();
18   var $gotoTerminalPath     = "";
19   var $FAIstatus            = "";
22   /* attribute list for save action */
23   var $attributes     = array("gotoLdapServer", "gotoBootKernel", "gotoKernelParameters", "FAIclass", "FAIstatus", "gotoShare","FAIdebianMirror", "FAIrelease");
24   var $objectclasses  = array("GOhard", "FAIobject");
26   /* Share */
27   var $gotoShares         = array();// Currently Share Option
28   var $gotoShare          = "";     // currently selected Share Option
29   var $gotoShareSelections= array();// Available Shares for this account in Listbox format
30   var $gotoAvailableShares= array();// Available Shares for this account
32   /* Helper */
33   var $customParameters   = "";
34   var $orig_dn            = "";
35   var $ignore_account     = TRUE;
36  
37   /* FAI class selection */ 
38   var $FAIclass           = array();
39   var $FAIclasses         = array();
40   var $FAIclassInfo       = array();
41   var $FAIrelease         = "";
42   var $FAIdebianMirror    = "auto";
44   /* Contains all possible server/release/class settings */
45   var $FAIServRepConfig   = array();
47   function workstartup ($config, $dn= NULL)
48   {
49     plugin::plugin ($config, $dn);
51     /* Creating a list of valid Mirrors 
52      * none will not be saved to ldap.
53      */
54     $ldap   = $this->config->get_ldap_link();
55     $ldap->cd($this->config->current['BASE']);
56     
57     $_SESSION['getAvailableClassesForThisRelease_CACHE'] = array();
58     $_SESSION['getAvailableClassesForThisRelease_CACHED_CLASSES'] = array();
60     /* Search all FAI objects */
61     $ldap->search("(|(objectClass=FAIpackageList)(objectClass=FAItemplate)(objectClass=FAIvariable)(objectClass=FAIscript)(objectClass=FAIhook)(objectClass=FAIprofile)(objectClass=FAIpartitionTable))",array("cn","objectClass","FAIdebianSection"));
62     /* Sort all entries, and attach elementtype.
63      * To be able to show the types in the listbox.
64      */
65     while($attr = $ldap->fetch()){
66       $cn = $attr['cn'][0];
67     
68       $_SESSION['getAvailableClassesForThisRelease_CACHED_CLASSES'][] = $attr;
69  
70       if(in_array('FAIpackageList',$attr['objectClass'])){
71         $tmp2[$cn]['FAIpackageList']['obj']   = 'FAIpackageList'; 
72         $tmp2[$cn]['FAIpackageList']['kzl']   = 'Pl';
73         $tmp2[$cn]['FAIpackageList']['sec']   = $attr['FAIdebianSection'];
74         $this->FAIclasses[$attr['cn'][0]]=$attr['cn'][0];
75       }
76       if(in_array('FAItemplate',$attr['objectClass'])){
77         $tmp2[$cn]['FAItemplate']['obj']      = 'FAItemplate'; 
78         $tmp2[$cn]['FAItemplate']['kzl']      = 'T'; 
79         $this->FAIclasses[$attr['cn'][0]]=$attr['cn'][0];
80       }
81       if(in_array('FAIvariable',$attr['objectClass'])){
82         $tmp2[$cn]['FAIvariable']['obj']      = 'FAIvariable'; 
83         $tmp2[$cn]['FAIvariable']['kzl']      = 'V'; 
84         $this->FAIclasses[$attr['cn'][0]]=$attr['cn'][0];
85       }
86       if(in_array('FAIscript',$attr['objectClass'])){
87         $tmp2[$cn]['FAIscript']['obj']        = 'FAIscript'; 
88         $tmp2[$cn]['FAIscript']['kzl']        = 'S'; 
89         $this->FAIclasses[$attr['cn'][0]]=$attr['cn'][0];
90       }
91       if(in_array('FAIhook',$attr['objectClass'])){
92         $tmp2[$cn]['FAIhook']['obj']          = 'FAIhook'; 
93         $tmp2[$cn]['FAIhook']['kzl']          = 'H'; 
94         $this->FAIclasses[$attr['cn'][0]]=$attr['cn'][0];
95       }
96       if(in_array('FAIpartitionTable',$attr['objectClass'])){
97         $tmp2[$cn]['FAIpartitionTable']['obj']= 'FAIpartitionTable'; 
98         $tmp2[$cn]['FAIpartitionTable']['kzl']= 'Pt'; 
99         $this->FAIclasses[$attr['cn'][0]]=$attr['cn'][0];
100       }
101       if(in_array('FAIprofile',$attr['objectClass'])){
102         $tmp2[$cn]['FAIprofile']['obj']= 'FAIprofile'; 
103         $tmp2[$cn]['FAIprofile']['kzl']= 'P'; 
104         $this->FAIclasses[$attr['cn'][0]]=$attr['cn'][0];
105       }
106     }
107     if(is_array($this->FAIclasses)){
108       natcasesort($this->FAIclasses);
109     }
111     $this->FAIclassInfo = $tmp2;
114     /* Build up an array like this one :
115         [$url]['SERVER'] = 'srv1-002';
116         [$url]['RELEASE']['siga/rc9.0.2']
117                                            ['SECTIONS'][0] "main";
118                                            ['SECTIONS'][1] "non-free";
119         [$url]['RELEASE']['siga/rc9.0.2']
120                                            ['PACKAGES'][0] "pkg1";
121                                            ['PACKAGES'][1] "postfix";
122      */
124     $ldap->search("(&(FAIrepository=*)(objectClass=FAIrepositoryServer))",array("FAIrepository"));
125     $test = array();
126     while($attr = $ldap->fetch()){
127       if(isset($attr['FAIrepository'])){
129         unset($attr['FAIrepository']['count']);
131         foreach($attr['FAIrepository'] as $rep){
132           $tmp = split("\|",$rep);
134           if(count($tmp)==4){
135             $sections = split(",",$tmp[3]);
136             $release  = $tmp[2];
137             $server   = $tmp[1];
138             $url      = $tmp[0];
139            
140             $test[$url]['RELEASE'][$release]['SECTIONS'] = $sections;
141     
142             /* Result will be cached
143              */
144             $test[$url]['RELEASE'][$release]['PACKAGES'] = $this->getAvailableClassesForThisRelease($release);
145             $test[$url]['SERVER'] = $server;
147             /* auto gets all releases/classes 
148              */
149             $test['auto']['RELEASE'][$release]['SECTION'] = $sections;
150             $test['auto']['RELEASE'][$release]['PACKAGES'] = $this->getAvailableClassesForThisRelease($release);
151           }
152         }
153       }
154     }
155     $this->FAIServRepConfig =$test;
157     /* Get arrays */
158     foreach (array("gotoModules", "gotoAutoFs", "gotoFilesystem") as $val){
159       if (isset($this->attrs["$val"]["count"])){
160         for ($i= 0; $i<$this->attrs["count"]; $i++){
161           if (isset($this->attrs["$val"][$i])){
162             array_push($this->$val, $this->attrs["$val"][$i]);
163           }
164         }
165       }
166       sort ($this->$val);
167       $this->$val= array_unique($this->$val);
168     }
170     /* Parse Kernel Parameters to decide what boot mode is enabled */
171     if (preg_match("/ splash=silent/", $this->gotoKernelParameters)){
172       $this->bootmode= "G";
173     } elseif (preg_match("/ debug/", $this->gotoKernelParameters)){
174       $this->bootmode= "D";
175     } elseif ($this->gotoKernelParameters == "") {
176       $this->bootmode= "G";
177     } else {
178       $this->bootmode= "T";
179     }
180     if (preg_match("/ o /", $this->gotoKernelParameters)){
181       $this->customParameters= preg_replace ("/^.* o /", "", $this->gotoKernelParameters);
182     } else {
183       $this->customParameters= "";
184     }
186     /* Prepare Shares */
187     if((isset($this->attrs['gotoShare']))&&(is_array($this->attrs['gotoShare']))){
188       unset($this->attrs['gotoShare']['count']);
189       foreach($this->attrs['gotoShare'] as $share){
190         $tmp = $tmp2 = array();
191         $tmp = split("\|",$share);
192         $tmp2['server']      =$tmp[0];
193         $tmp2['name']        =$tmp[1];
194         $tmp2['mountPoint']  =$tmp[2];
195         $this->gotoShares[$tmp[1]."|".$tmp[0]]=$tmp2;
196       }
197     }
199     $this->gotoShareSelections= $config->getShareList(true);
200     $this->gotoAvailableShares= $config->getShareList(false);
201     $tmp2 = array();
202   
203     if((isset($this->FAIclass))&&(!is_array($this->FAIclass))){
204       $tmp = array();
205       $tmp = split(" ",$this->FAIclass);
206       $tmp2 =array();  
207     
208       foreach($tmp as $class){
209         if( ":" == $class[0] ) {
210           $this->FAIrelease = substr( $class, 1 );
211         }
212         else
213           $tmp2[$class] = $class;
214       }
215       $this->FAIclass = $tmp2;
216     }
218     if(!is_array($this->FAIclass)){
219       $this->FAIclass =array();
220     }
222     $this->orig_dn= $this->dn;
223   }
225   
226   /* This class is called by the contrucktor ONLY.
227    *   It return the available classes for each 
228    *    Server / Release combination ... 
229    *   (Release specifies which classes are available) 
230    */
231   function getAvailableClassesForThisRelease($release)
232   {
233     /* There could be more than one server providing this release,
234         so use cached result if available
235      */ 
236     if(isset($_SESSION['getAvailableClassesForThisRelease_CACHE'][$release]))  {
237       return($_SESSION['getAvailableClassesForThisRelease_CACHE'][$release]);
238     }
240     /* Create cache with all classes 
241      */
242     if((!isset($_SESSION['getAvailableClassesForThisRelease_CACHED_CLASSES'])) ||
243        (!is_array($_SESSION['getAvailableClassesForThisRelease_CACHED_CLASSES'])) ||
244        (count($_SESSION['getAvailableClassesForThisRelease_CACHED_CLASSES']) ==0 )){
246       /* Get ldap connection */
247       $ldap   = $this->config->get_ldap_link();
248       $ldap->cd($this->config->current['BASE']);
250       /* Get possible classes ... 
251          This would be faste with some kind of caching ... 
252        */
253       $ldap->search("(|(objectClass=FAIpackageList)(objectClass=FAItemplate)(objectClass=FAIvariable)(objectClass=FAIscript)(objectClass=FAIhook)(objectClass=FAIprofile)(objectClass=FAIpartitionTable))",array("cn"),true);
254       /* Sort all entries, and attach elementtype.
255        * To be able to show the types in the listbox.
256        */
257       while($attr = $ldap->fetch()){
258         $_SESSION['getAvailableClassesForThisRelease_CACHED_CLASSES'][] = $attr;
259       }  
260     }
262     /* Walk through cache and get out what we need.
263      *   
264      *   Function od : "$this->generateDNSyn($release)"
265      *    It returns an array like this one :
266      *       array("ou=packges,ou=rc0.9.2,ou=siga,", 
267      *            "ou=scripts.. " 
268      *             ...);
269      *   This helps us to select the correct classes for each release. 
270      *   It prevents errors like:  'siga' is selected as release, but all classes
271      *     with ou='siga' in their dn are shown, also ou=rc...,ou=siga...  
272      */
273     $tmp2 = $this->generateDNSyn($release)     ; 
274     $test2 = array();
275     foreach($_SESSION['getAvailableClassesForThisRelease_CACHED_CLASSES'] as $attr){  
276       foreach($tmp2 as $dns){
277         if(preg_match("/".$dns."/",$attr['dn'])){
278           $test2[$attr['cn'][0]] = $attr['cn'][0];
279         }
280       }
281     }
282     $_SESSION['getAvailableClassesForThisRelease_CACHE'][$release] = $test2;
283     return($test2);
284   }
287   /*  Create array to display available classes/profiles in a selectbox 
288    *   This function only displays the available classes.
289    *   If a class is available is defined by these facts : 
290    *     1. Is this class available for the selected release ?
291    *       - if it is available, check if the release is available for the selected server 
292    *         (done by $this->getFAIreleases())
293    *     2. Is this class currently not assigned to $this->FAIclass
294    */
295   function selectFriendlyClasses(){
296     $tmp=array();
298     /* check if the current release exists,
299         else select the first one ..
300      */
301     $tmp2 = $this->getFAIreleases();
302     if(!in_array($this->FAIrelease, $tmp2)){  
303       $this->FAIrelease = key($tmp2);
304     }
305  
306     /* Get all Packages for this server/release combination
307      */
308     if(!isset($this->FAIServRepConfig[$this->FAIdebianMirror]['RELEASE'][$this->FAIrelease]['PACKAGES'])){
309       $pkgs = array();
310       print_red(_("There are packages in your configuration, which can't be resolved with current server/release settings."));
311     }else{
312       $pkgs = $this->FAIServRepConfig[$this->FAIdebianMirror]['RELEASE'][$this->FAIrelease]['PACKAGES'];
313     }
315     /* Check each and every single class name 
316      */
317     foreach($pkgs as $pkg){
318   
319       /* Class already assigned to the classes list ?
320        * If not ... go on
321        */
322       if(!in_array($pkg,$this->FAIclass)){
323         
324         /* Create the displayed list entry value
325             HKLMOP [-Pl P V T-] or something like that 
326          */
327         $str = "";
328         foreach($this->FAIclassInfo[$pkg] as $entry){
329           if(isset($entry['kzl'])){
330             $str .= $entry['kzl']." ";
331           }
332         }
333         
334         /* Append class if everyting was fine
335          */        
336         $tmp[$pkg] = $pkg." [-".trim($str)."-]";
337       }
338     }
339     /* Just sort and return new classes list ...
340        ( possibly we should cache the result ... )
341      */
342     natcasesort ($tmp);
343     return($tmp);
344   }
346   function check()
347   {
348     $messages = array();
349     /* If there are packages selected, but no mirror show error */   
350     if(($this->FAIdebianMirror == "none")&&(count($this->FAIclass)>0)){
351       $messages[]=_("Please select a 'FAI server' or remove the 'FAI classes'.");
352     }
353     return($messages);
354   }
356   function execute()
357   {
358         /* Call parent execute */
359         plugin::execute();
361     /* Do we need to flip is_account state? */
362     if (isset($_POST['modify_state'])){
363       $this->is_account= !$this->is_account;
364     }
366     /* Do we represent a valid terminal? */
367     if (!$this->is_account && $this->parent == NULL){
368       $display= "<img alt=\"\" src=\"images/stop.png\" align=middle>&nbsp;<b>".
369         _("This 'dn' has no terminal features.")."</b>";
370       return ($display);
371     }
373     /* Add module */
374     if (isset ($_POST['add_module'])){
375       if ($_POST['module'] != "" && chkacl ($this->acl, "gotoModule") == ""){
376         $this->add_list ($this->gotoModules, $_POST['module']);
377       }
378     }
380     /* Delete module */
381     if (isset ($_POST['delete_module'])){
382       if (count($_POST['modules_list']) && chkacl ($this->acl, "gotoModule") == ""){
383         $this->del_list ($this->gotoModules, $_POST['modules_list']);
384       }
385     }
387     /* FAI class management */
388     if((isset($_POST['AddClass']))&&(isset($_POST['FAIclassesSel']))){
389       $found = 0 ; 
391       /* If this new class/profile will attach a second partition table
392        * to our list of classes, abort and show a message.
393        */
394       foreach($this->FAIclass as $name){
395         if(isset($this->FAIclassInfo[$name])){
396           foreach($this->FAIclassInfo[$name] as $atr){
397             if(isset($atr['obj'])){
398               if($atr['obj'] == "FAIpartitionTable"){
399                 $found ++ ; 
400               }
401             }
402           }
403         }
404       }
406       if((isset($this->FAIclassInfo[$_POST['FAIclassesSel']]['FAIpartitionTable']))&&($found>0)){
407         print_red(_("There is already a profile in your selection that contain partition table configurations."));
408       }else{
409         $this->FAIclass[$_POST['FAIclassesSel']]=$_POST['FAIclassesSel'];
410       }
411     }
413     $sort = false;
414     foreach($_POST as $name => $val){
415       
416       $sort_type = false;
417       if((preg_match("/sort_up/",$name))&&(!$sort)){
418         $sort_type = "sort_up_";
419       }
420       if((preg_match("/sort_down/",$name))&&(!$sort)){
421         $sort_type = "sort_down_";
422       }
423     
424       if(($sort_type)&&(!$sort)){
425         $value = base64_decode(preg_replace("/_.*$/i","",preg_replace("/".$sort_type."/i","",$name)));
426         $sort = true;
427         
428         $last = -1;
429         $change_down  = -1;
430  
431         /* Create array with numeric index */ 
432         $tmp = array();
433         foreach($this->FAIclass as $class){
434           $tmp [] = $class;
435         }
437         /* Walk trough array */
438         foreach($tmp as $key => $faiName){
439           if($faiName == $value){
440             if($sort_type == "sort_up_"){
441               if($last != -1){
442                  $change_down= $last;
443               }
444             }else{
445               if(isset($tmp[$key+1])){
446                 $change_down = $key;
447               }
448             }
449           }
450           $last = $key;
451         }
452  
453         $tmp2 = array();
454         $skip = false;    
455   
456         foreach($tmp as $ky => $vl){
458           if($ky == $change_down){
459             $skip = $vl;
460           }else{
461             $tmp2[$vl] = $vl;
462           }
463           if(($skip != false)&&($ky != $change_down)){
464             $tmp2[$skip]  = $skip;
465             $skip =false;
466           }
467         }   
468         $this->FAIclass = $tmp2; 
469       }
470   
471       if(preg_match("/fai_remove/i",$name)){
472         $value = base64_decode(preg_replace("/_.*$/i","",preg_replace("/fai_remove_/i","",$name)));
473         unset($this->FAIclass[$value]);
474       }
475     }
477     /* Delete selected class from our list */
478     if((isset($_POST['DelClass']))&&(isset($_POST['FAIclassSel']))){
479       if(isset($this->FAIclass[$_POST['FAIclassSel']])){
480         unset($this->FAIclass[$_POST['FAIclassSel']]);
481       }
482     }
484     /* Show main page */
485     $smarty= get_smarty();
486     $smarty->assign("SelectBoxLdapServer","");
488     /* In this section server shares will be defined
489      * A user can select one of the given shares and a mount point
490      *  and attach this combination to his setup.
491      */
492     $smarty->assign("gotoShareSelections",    $this->gotoShareSelections);
493     $smarty->assign("gotoShareSelectionKeys", array_flip($this->gotoShareSelections));
495     /* if $_POST['gotoShareAdd'] is set, we will try to add a new entry
496      * This entry will be, a combination of mountPoint and sharedefinitions
497      */
498     if(isset($_POST['gotoShareAdd'])){
499       /* We assign a share to this user, if we don't know where to mount the share */
500       if((!isset($_POST['gotoShareMountPoint']))||(empty($_POST['gotoShareMountPoint']))||(preg_match("/[\|]/i",$_POST['gotoShareMountPoint']))){
501         print_red(_("You must specify a valid mount point."));
502       }else{
503         $a_share = $this->gotoAvailableShares[$_POST['gotoShareSelection']];
504         $s_mount = $_POST['gotoShareMountPoint'];
505         /* Preparing the new assignment */
506         $this->gotoShares[$a_share['name']."|".$a_share['server']]=$a_share;
507         $this->gotoShares[$a_share['name']."|".$a_share['server']]['mountPoint']=$s_mount;
508       }
509     }
511     /* if the Post  gotoShareDel is set, someone asked GOsa to delete the selected entry (if there is one selected)
512      * If there is no defined share selected, we will abort the deletion without any message
513      */
514     if((isset($_POST['gotoShareDel']))&&(isset($_POST['gotoShare']))){
515       unset($this->gotoShares[$_POST['gotoShare']]);
516     }
518     $smarty->assign("gotoShares",$this->printOutAssignedShares());
519     $smarty->assign("gotoShareKeys",array_flip($this->printOutAssignedShares()));
521     /* Arrays */
523     $tmp = $this->config->data['SERVERS']['LDAP'];
524     $smarty->assign("ldapserverKeys", $tmp);
526 //    foreach($tmp as $key => $server){
527 //      if(strlen($server)> 51){
528 //        $tmp[$key] = substr($server,0,48)."...";
529 //      }
530 //    }
531     $smarty->assign("ldapservers", $tmp);
532     $smarty->assign("gotoLdapServer_select", $this->gotoLdapServer);
535     $SelectBoxLdapServer = new divSelectBox("LdapServer");
536     $SelectBoxLdapServer->SetHeight(80);
537     $tmp[] = "server2:o=testersrv,dc=de";
538     $tmp[] = "server3:o=testersrv2,dc=de";
539     $tmp[] = "server4:o=testersrv2,dc=de";
540     foreach($tmp as $server){
542       $use ="";
543       if($this->gotoLdapServer == $server) {
544         $use = " checked ";
545       };
547       $SelectBoxLdapServer->AddEntry(
548           array(
549             array("string"=>$server),
550             array("string"=>"<input type='radio' name='gotoLdapServer' value='".$server."' ".$use.">",
551                   "attach"=>"style='border-right:0px;'")
552             ));
553     }    
555     $smarty->assign("SelectBoxLdapServer",$SelectBoxLdapServer->DrawList());
557     $smarty->assign("gotoLdapServerACL", chkacl($this->acl, "gotoLdapServer"));
558     foreach (array("gotoModules", "gotoAutoFs", "gotoFilesystem") as $val){
559       $smarty->assign("$val", $this->$val);
560     }
562     /* Values */
563     foreach(array("gotoBootKernel", "customParameters", "gotoShare","FAIclasses","FAIclass","FAIdebianMirror","FAIrelease") as $val){
564       $smarty->assign($val, $this->$val);
565       $smarty->assign($val."ACL", chkacl($this->acl, $val));
566     }
568     $smarty->assign("FAIdebianMirrors",$this->getFAIdebianMirrors());
569     $smarty->assign("FAIreleases",$this->getFAIreleases());
570     $smarty->assign("FAIrelease",$this->FAIrelease);
571     $smarty->assign("FAIclasses",$this->selectFriendlyClasses());
572     $smarty->assign("FAIclassesKeys",array_flip($this->selectFriendlyClasses()));
573     $smarty->assign("FAIclassKeys",$this->FAIclass);
574     
575     $div = new divSelectBox("WSFAIscriptClasses");
576     $div -> SetHeight("110");
577     $str_up     = " &nbsp;<input type='image' src='images/sort_up.png'    name='sort_up_%s'    value='%s'>";
578     $str_down   = " &nbsp;<input type='image' src='images/sort_down.png'  name='sort_down_%s'  value='%s'>";
579     $str_remove = " &nbsp;<input type='image' src='images/edittrash.png'  name='fai_remove_%s' value='%s'>";
580     $str_empty  = " &nbsp;<img src='images/empty.png' alt=\"\" width='7'>"; 
582     $i = 1;
583     foreach($this->FAIclass as $class){
584       if($i==1){
585         $str = $str_empty.$str_down.$str_remove;
586       }elseif($i == count($this->FAIclass)){
587         $str = $str_up.$str_empty.$str_remove;
588       }else{
589         $str = $str_up.$str_down.$str_remove;
590       }
591       $i ++ ; 
593       $div->AddEntry(array(
594             array("string"=>$class),
595             array("string"=>preg_replace("/\%s/",base64_encode($class),$str),"attach"=>"style='width:50px;border-right:none;'")
596             ));
597     }  
599     $smarty->assign("FAIScriptlist",$div->DrawList()); 
601     /* Radio button group */
602     if (preg_match("/G/", $this->bootmode)) {
603       $smarty->assign("graphicalbootup", "checked");
604     } else {
605       $smarty->assign("graphicalbootup", "");
606     }
607     if (preg_match("/T/", $this->bootmode)) {
608       $smarty->assign("textbootup", "checked");
609     } else {
610       $smarty->assign("textbootup", "");
611     }
612     if (preg_match("/D/", $this->bootmode)) {
613       $smarty->assign("debugbootup", "checked");
614     } else {
615       $smarty->assign("debugbootup", "");
616     }
618     /* ACL's */
619     foreach (array("gotoKernelParameters", "gotoModules", "gotoFilesystem","FAIclass") as $value){
620       $smarty->assign($value."ACL", chkacl($this->acl, "$value"));
621     }
623     /* Show main page */
624     return($smarty->fetch (get_template_path('workstationStartup.tpl', TRUE,dirname(__FILE__))));
625   }
627   function remove_from_parent()
628   {
629     $this->handle_post_events("remove");
630   }
632   function generateDNSyn($release)
633   {
634     $str = "";
635     $tmp = split("\/",$release);
636     $tmp = array_reverse($tmp);
638     $base = ",ou=fai,";   
639  
640     $arr = array("scripts","hooks","disk","variables","templates","profiles","packages");
642     foreach($tmp as $departmentname){
643       
644       $str .= ",ou=".$departmentname;
645     }
646     $ret = array();
647     foreach($arr as $ar){
648       $ret[] = ",ou=".$ar.$str.$base;
649     }
650     return($ret);
651   }
653   function getFAIdebianMirrors()
654   {
655     $ret = array();
656     $ret['auto']=_("automatic");
657     $secs  = array();
659     /* Walk through all available servers 
660         and check if they support the currently selected classes
661         if not, dont't add them to our list
662      */
663     foreach($this->FAIServRepConfig as $mirror => $rest){
665       $use = false;
667       if(count($this->FAIclass) == 0){
668         $use = true;
669       }else{
670         $tmp = $this->getFAIreleases();
671         foreach($tmp as $release){
672           if(isset($rest['RELEASE'][$release])){
673             $use =true;
674           }
675         } 
676       }
678       /* If current server, doesn't support this class
679           remove it from list
680        */
681       if($use){
682         $ret[$mirror] = $mirror;
683       }
684     }
685     return($ret);
686   }
688   function getFAIreleases() 
689   {
690     $ret = array();
692     if(!isset($this->FAIServRepConfig[$this->FAIdebianMirror])){
693       $this->FAIdebianMirror = "auto";
694     }
696     $errorClasses = "";  
697   
698     foreach($this->FAIServRepConfig[$this->FAIdebianMirror]['RELEASE'] as $release => $sections){
699       $use = true;
700       
701       if(!count($this->FAIclass) == 0){
702         foreach($this->FAIclass as $class){
703           if(!in_array($class, $sections['PACKAGES'])){
704             $use = false;
705             $errorClasses[$class] = $class;
706           }else{
707             if(isset($errorClasses[$class])){
708               unset($errorClasses[$class]); 
709             }
710           }
711         }
712       }
713       if($use){
714         $ret[$release]=$release;
715       }
716     } 
717     if((count($ret) == 0 ) && ($this->FAIdebianMirror != "auto")){
719       $eClasses = " ";
720       foreach($errorClasses as $class){
721         $eClasses .= $class." ";
722       }
724       print_red(sprintf(_("Can't resolve one or more of the given FAIclass(es) [%s] in FAI server '%s'. Server was reset to 'auto'."),$eClasses, $this->FAIdebianMirror));
725       $this->FAIdebianMirror = "auto";
726       return($this->getFAIreleases());
727     }elseif((count($ret) == 0 ) && ($this->FAIdebianMirror == "auto")){
729       $eClasses = " ";
730       foreach($errorClasses as $class){
731         $eClasses .= $class." ";
732       }
733       
734       $this->FAIclass= array();
735       print_red(sprintf(_("Can't resolve the given FAIclass(es) [%s] anyway, please check your FAI configurations, possibly some classes where deleted or renamed. !All classes have been removed from this account, press cancel if you don't want this to be saved."),$eClasses));
736     }
737     return($ret);
738   }
740   /* Save data to object */
741   function save_object()
742   {
743     plugin::save_object();
745     /* Save group radio buttons */
746     if (chkacl ($this->acl, "bootmode") == "" && isset($_POST["bootmode"])){
747       $this->bootmode= $_POST["bootmode"];
748     }
750     /* Save kernel parameters */
751     if (chkacl ($this->acl, "gotoKernelParameters") == "" && isset($_POST["customParameters"])){
752       $this->customParameters= $_POST["customParameters"];
753     }
754   }
757   /* Save to LDAP */
758   function save()
759   {
761     /* Depending on the baseobject (Ogroup / WS) we
762      *  use another set of objectClasses
763      * In case of WS itself, we use  "array("GOhard", "FAIobject");"
764      * if we are currently editing from ogroup menu we use (array("gotWorkstationTemplate","GOhard", "FAIobject"))
765      */
766     if(isset($this->parent->by_object['ogroup'])){
767       $this->objectclasses = array("gotoWorkstationTemplate","GOhard", "FAIobject");
768     }elseif(isset($this->parent->by_object['workgeneric'])){
769       $this->objectclasses = array("GOhard", "FAIobject");
770     }else{
771       print "Object Type Configuration : unknown";
772       exit();
773     }
775     /* Find proper terminal path for tftp configuration
776        FIXME: This is suboptimal when the default has changed to
777        another location! */
778     if ($this->gotoTerminalPath == "default"){
779       $ldap= $this->config->get_ldap_link();
781       /* Strip relevant part from dn, keep trailing ',' */
782       $tmp= preg_replace("/^cn=[^,]+,ou=terminals,ou=systems,/i", "", $this->dn);
783       $tmp= preg_replace("/".$this->config->current['BASE']."$/i", "", $tmp);
785       /* Walk from top to base and try to load default values for
786          'gotoTerminalPath'. Abort when an entry is found. */
787       while (TRUE){
788         $tmp= preg_replace ("/^[^,]+,/", "", $tmp);
790         $ldap->cat("cn=default,ou=terminals,ou=systems,$tmp".
791             $this->config->current['BASE']);
792         $attrs= $ldap->fetch();
793         if (isset($attrs['gotoTerminalPath'])){
794           $this->gotoTerminalPath= $attrs['gotoTerminalPath'][0];
795           break;
796         }
798         /* Nothing left? */
799         if ($tmp == ""){
800           break;
801         }
802       }
803     }
805     /* Add semi automatic values */
806     // FIXME: LDAP Server may not be set here...
807     $this->gotoKernelParameters= "root=/dev/nfs nfsroot=".
808       $this->gotoTerminalPath.
809       ",ro,hard,nolock,fg,rsize=8192 ".
810       "ip=::::::dhcp ldap=".base64_encode($this->gotoLdapServer);
812     switch ($this->bootmode){
813       case "D":
814         $this->gotoKernelParameters.= " debug";
815       break;
816       case "G":
817         $this->gotoKernelParameters.= " splash=silent";
818       break;
819     }
820     if ($this->customParameters != ""){
821       $this->gotoKernelParameters.= " o ".$this->customParameters;
822     }
824     plugin::save();
826     unset( $this->attrs['FAIrelease'] );
827     
828     $str = "";
829     foreach($this->FAIclass as $class){
830       $str .= $class." ";
831     }
832     $str .= ":" . $this->FAIrelease;
833     $this->attrs['FAIclass']= "";
834     $this->attrs['FAIclass']= trim($str);
836     if(empty($this->attrs['FAIclass'])){
837       $this->attrs['FAIclass'] = array();
838     }
840     /* Add missing arrays */
841     foreach (array("gotoFilesystem", "gotoAutoFs", "gotoModules") as $val){
842       if (isset ($this->$val) && count ($this->$val) != 0){
843     
844         $this->attrs["$val"]= array_unique($this->$val);
845       }
846       if(!isset($this->attrs["$val"])) $this->attrs["$val"]=array();
847     }
848     /* Strip out 'default' values */
849     if ($this->attrs['gotoLdapServer'] == "default"){
850       unset ($this->attrs['gotoLdapServer']);
851     }
853     /* if mirror == none stop saving this attribute */
854     if($this->FAIdebianMirror == "none"){
855       $this->FAIdebianMirror = "";
856     }
857     
858     if((count($this->attrs['FAIclass'])==0)&&(empty($this->FAIdebianMirror))){
859       $tmp = array();
860       foreach($this->attrs['objectClass'] as $class){
861         if($class != "FAIobject"){
862           $tmp[] = $class;
863         }
864       }
865       $this->attrs['objectClass']     = $tmp;
866       $this->attrs['FAIclass']        = array();
867       $this->attrs['FAIdebianMirror'] = array();
868     }
870     /* prepare share settings */
871     $tmp = array();
872     foreach($this->gotoShares as $name => $settings){
873       $tmp2= split("\|",$name);
874       $name = $tmp2[0];
875       $tmp[] = $settings['server']."|".$name."|".$settings['mountPoint'];
876     }
877     $this->attrs['gotoShare']=$tmp;
879     $ldap= $this->config->get_ldap_link();
880     $ldap->cd($this->dn);
881     $this->cleanup();
882 $ldap->modify ($this->attrs); 
884     show_ldap_error($ldap->get_error());
885     $this->handle_post_events("modify");
886   }
888   /* Add value to array, check if unique */
889   function add_list (&$array, $value)
890   {
891     if ($value != ""){
892       $array[]= $value;
893       sort($array);
894       array_unique ($array);
895     }
896   }
899   /* Delete value to array, check if unique */
900   function del_list (&$array, $list)
901   {
902     $tmp= array();
903     foreach ($array as $mod){
904       if (!in_array($mod, $list)){
905         $tmp[]= $mod;
906       }
907     }
908     $array= $tmp;
909   }
911   /* Generate ListBox frindly output for the defined shares
912    * Possibly Add or remove an attribute here,
913    */
914   function printOutAssignedShares()
915   {
916     $a_return = array();
917     if(is_array($this->gotoShares)){
918       foreach($this->gotoShares as $share){
919         $a_return[$share['name']."|".$share['server']]= $share['name']." [".$share['server']."]";
920       }
921     }
922     return($a_return);
923   }
927 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
928 ?>