Code

c43f70d4709fd8ff0ecb51d22afad7307e1eb10a
[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     
350     /* Call common method to give check the hook */
351     $messages= plugin::check();
353     /* If there are packages selected, but no mirror show error */   
354     if(($this->FAIdebianMirror == "none")&&(count($this->FAIclass)>0)){
355       $messages[]=_("Please select a 'FAI server' or remove the 'FAI classes'.");
356     }
358     return($messages);
359   }
361   function execute()
362   {
363         /* Call parent execute */
364         plugin::execute();
366     /* Do we need to flip is_account state? */
367     if (isset($_POST['modify_state'])){
368       $this->is_account= !$this->is_account;
369     }
371     /* Do we represent a valid terminal? */
372     if (!$this->is_account && $this->parent == NULL){
373       $display= "<img alt=\"\" src=\"images/stop.png\" align=middle>&nbsp;<b>".
374         _("This 'dn' has no terminal features.")."</b>";
375       return ($display);
376     }
378     /* Add module */
379     if (isset ($_POST['add_module'])){
380       if ($_POST['module'] != "" && chkacl ($this->acl, "gotoModule") == ""){
381         $this->add_list ($this->gotoModules, $_POST['module']);
382       }
383     }
385     /* Delete module */
386     if (isset ($_POST['delete_module'])){
387       if (count($_POST['modules_list']) && chkacl ($this->acl, "gotoModule") == ""){
388         $this->del_list ($this->gotoModules, $_POST['modules_list']);
389       }
390     }
392     /* FAI class management */
393     if((isset($_POST['AddClass']))&&(isset($_POST['FAIclassesSel']))){
394       $found = 0 ; 
396       /* If this new class/profile will attach a second partition table
397        * to our list of classes, abort and show a message.
398        */
399       foreach($this->FAIclass as $name){
400         if(isset($this->FAIclassInfo[$name])){
401           foreach($this->FAIclassInfo[$name] as $atr){
402             if(isset($atr['obj'])){
403               if($atr['obj'] == "FAIpartitionTable"){
404                 $found ++ ; 
405               }
406             }
407           }
408         }
409       }
411       if((isset($this->FAIclassInfo[$_POST['FAIclassesSel']]['FAIpartitionTable']))&&($found>0)){
412         print_red(_("There is already a profile in your selection that contain partition table configurations."));
413       }else{
414         $this->FAIclass[$_POST['FAIclassesSel']]=$_POST['FAIclassesSel'];
415       }
416     }
418     $sort = false;
419     foreach($_POST as $name => $val){
420       
421       $sort_type = false;
422       if((preg_match("/sort_up/",$name))&&(!$sort)){
423         $sort_type = "sort_up_";
424       }
425       if((preg_match("/sort_down/",$name))&&(!$sort)){
426         $sort_type = "sort_down_";
427       }
428     
429       if(($sort_type)&&(!$sort)){
430         $value = base64_decode(preg_replace("/_.*$/i","",preg_replace("/".$sort_type."/i","",$name)));
431         $sort = true;
432         
433         $last = -1;
434         $change_down  = -1;
435  
436         /* Create array with numeric index */ 
437         $tmp = array();
438         foreach($this->FAIclass as $class){
439           $tmp [] = $class;
440         }
442         /* Walk trough array */
443         foreach($tmp as $key => $faiName){
444           if($faiName == $value){
445             if($sort_type == "sort_up_"){
446               if($last != -1){
447                  $change_down= $last;
448               }
449             }else{
450               if(isset($tmp[$key+1])){
451                 $change_down = $key;
452               }
453             }
454           }
455           $last = $key;
456         }
457  
458         $tmp2 = array();
459         $skip = false;    
460   
461         foreach($tmp as $ky => $vl){
463           if($ky == $change_down){
464             $skip = $vl;
465           }else{
466             $tmp2[$vl] = $vl;
467           }
468           if(($skip != false)&&($ky != $change_down)){
469             $tmp2[$skip]  = $skip;
470             $skip =false;
471           }
472         }   
473         $this->FAIclass = $tmp2; 
474       }
475   
476       if(preg_match("/fai_remove/i",$name)){
477         $value = base64_decode(preg_replace("/_.*$/i","",preg_replace("/fai_remove_/i","",$name)));
478         unset($this->FAIclass[$value]);
479       }
480     }
482     /* Delete selected class from our list */
483     if((isset($_POST['DelClass']))&&(isset($_POST['FAIclassSel']))){
484       if(isset($this->FAIclass[$_POST['FAIclassSel']])){
485         unset($this->FAIclass[$_POST['FAIclassSel']]);
486       }
487     }
489     /* Show main page */
490     $smarty= get_smarty();
491     $smarty->assign("SelectBoxLdapServer","");
493     /* In this section server shares will be defined
494      * A user can select one of the given shares and a mount point
495      *  and attach this combination to his setup.
496      */
497     $smarty->assign("gotoShareSelections",    $this->gotoShareSelections);
498     $smarty->assign("gotoShareSelectionKeys", array_flip($this->gotoShareSelections));
500     /* if $_POST['gotoShareAdd'] is set, we will try to add a new entry
501      * This entry will be, a combination of mountPoint and sharedefinitions
502      */
503     if(isset($_POST['gotoShareAdd'])){
504       /* We assign a share to this user, if we don't know where to mount the share */
505       if((!isset($_POST['gotoShareMountPoint']))||(empty($_POST['gotoShareMountPoint']))||(preg_match("/[\|]/i",$_POST['gotoShareMountPoint']))){
506         print_red(_("You must specify a valid mount point."));
507       }else{
508         $a_share = $this->gotoAvailableShares[$_POST['gotoShareSelection']];
509         $s_mount = $_POST['gotoShareMountPoint'];
510         /* Preparing the new assignment */
511         $this->gotoShares[$a_share['name']."|".$a_share['server']]=$a_share;
512         $this->gotoShares[$a_share['name']."|".$a_share['server']]['mountPoint']=$s_mount;
513       }
514     }
516     /* if the Post  gotoShareDel is set, someone asked GOsa to delete the selected entry (if there is one selected)
517      * If there is no defined share selected, we will abort the deletion without any message
518      */
519     if((isset($_POST['gotoShareDel']))&&(isset($_POST['gotoShare']))){
520       unset($this->gotoShares[$_POST['gotoShare']]);
521     }
523     $smarty->assign("gotoShares",$this->printOutAssignedShares());
524     $smarty->assign("gotoShareKeys",array_flip($this->printOutAssignedShares()));
526     /* Arrays */
527     $tmp = $this->config->data['SERVERS']['LDAP'];
529     /* Create divSelectBox for ldap server selection
530      */
531     $SelectBoxLdapServer = new divSelectBox("LdapServer");
532     $SelectBoxLdapServer->SetHeight(80);
534     /* Set first entry as selected, if $this->gotoLdapServer is empty
535      *  or given entry is no longer available ... 
536      */
537     $found = false;
538     foreach($tmp as $server){
539       if($this->gotoLdapServer==$server){
540         $found = true;
541       }
542     }
544     /* Add Entries 
545      */
546     foreach($tmp as $server){
547       $use ="";
548       if(($this->gotoLdapServer == $server) || ($found == false)) {
549         $found = true;
550         $use = " checked ";
551       };
553       $SelectBoxLdapServer->AddEntry(
554           array(
555             array("string"=>$server),
556             array("string"=>"<input type='radio' name='gotoLdapServer' value='".$server."' ".$use.">",
557                   "attach"=>"style='border-right:0px;'")
558             ));
559     }    
561     $smarty->assign("SelectBoxLdapServer",$SelectBoxLdapServer->DrawList());
563     $smarty->assign("gotoLdapServerACL", chkacl($this->acl, "gotoLdapServer"));
564     foreach (array("gotoModules", "gotoAutoFs", "gotoFilesystem") as $val){
565       $smarty->assign("$val", $this->$val);
566     }
568     /* Values */
569     foreach(array("gotoBootKernel", "customParameters", "gotoShare","FAIclasses","FAIclass","FAIdebianMirror","FAIrelease") as $val){
570       $smarty->assign($val, $this->$val);
571       $smarty->assign($val."ACL", chkacl($this->acl, $val));
572     }
574     $smarty->assign("FAIdebianMirrors",$this->getFAIdebianMirrors());
575     $smarty->assign("FAIreleases",$this->getFAIreleases());
576     $smarty->assign("FAIrelease",$this->FAIrelease);
577     $smarty->assign("FAIclasses",$this->selectFriendlyClasses());
578     $smarty->assign("FAIclassesKeys",array_flip($this->selectFriendlyClasses()));
579     $smarty->assign("FAIclassKeys",$this->FAIclass);
580     
581     $div = new divSelectBox("WSFAIscriptClasses");
582     $div -> SetHeight("110");
583     $str_up     = " &nbsp;<input type='image' src='images/sort_up.png'    name='sort_up_%s'    value='%s'>";
584     $str_down   = " &nbsp;<input type='image' src='images/sort_down.png'  name='sort_down_%s'  value='%s'>";
585     $str_remove = " &nbsp;<input type='image' src='images/edittrash.png'  name='fai_remove_%s' value='%s'>";
586     $str_empty  = " &nbsp;<img src='images/empty.png' alt=\"\" width='7'>"; 
588     $i = 1;
589     foreach($this->FAIclass as $class){
590       if($i==1){
591         $str = $str_empty.$str_down.$str_remove;
592       }elseif($i == count($this->FAIclass)){
593         $str = $str_up.$str_empty.$str_remove;
594       }else{
595         $str = $str_up.$str_down.$str_remove;
596       }
597       $i ++ ; 
599       $div->AddEntry(array(
600             array("string"=>$class),
601             array("string"=>preg_replace("/\%s/",base64_encode($class),$str),"attach"=>"style='width:50px;border-right:none;'")
602             ));
603     }  
605     $smarty->assign("FAIScriptlist",$div->DrawList()); 
607     /* Radio button group */
608     if (preg_match("/G/", $this->bootmode)) {
609       $smarty->assign("graphicalbootup", "checked");
610     } else {
611       $smarty->assign("graphicalbootup", "");
612     }
613     if (preg_match("/T/", $this->bootmode)) {
614       $smarty->assign("textbootup", "checked");
615     } else {
616       $smarty->assign("textbootup", "");
617     }
618     if (preg_match("/D/", $this->bootmode)) {
619       $smarty->assign("debugbootup", "checked");
620     } else {
621       $smarty->assign("debugbootup", "");
622     }
624     /* ACL's */
625     foreach (array("gotoKernelParameters", "gotoModules", "gotoFilesystem","FAIclass") as $value){
626       $smarty->assign($value."ACL", chkacl($this->acl, "$value"));
627     }
629     /* Show main page */
630     return($smarty->fetch (get_template_path('workstationStartup.tpl', TRUE,dirname(__FILE__))));
631   }
633   function remove_from_parent()
634   {
635     $this->handle_post_events("remove");
636   }
638   function generateDNSyn($release)
639   {
640     $str = "";
641     $tmp = split("\/",$release);
642     $tmp = array_reverse($tmp);
644     $base = ",ou=fai,";   
645  
646     $arr = array("scripts","hooks","disk","variables","templates","profiles","packages");
648     foreach($tmp as $departmentname){
649       
650       $str .= ",ou=".$departmentname;
651     }
652     $ret = array();
653     foreach($arr as $ar){
654       $ret[] = ",ou=".$ar.$str.$base;
655     }
656     return($ret);
657   }
659   function getFAIdebianMirrors()
660   {
661     $ret = array();
662     $ret['auto']=_("automatic");
663     $secs  = array();
665     /* Walk through all available servers 
666         and check if they support the currently selected classes
667         if not, dont't add them to our list
668      */
669     foreach($this->FAIServRepConfig as $mirror => $rest){
671       $use = false;
673       if(count($this->FAIclass) == 0){
674         $use = true;
675       }else{
676         $tmp = $this->getFAIreleases();
677         foreach($tmp as $release){
678           if(isset($rest['RELEASE'][$release])){
679             $use =true;
680           }
681         } 
682       }
684       /* If current server, doesn't support this class
685           remove it from list
686        */
687       if($use){
688         $ret[$mirror] = $mirror;
689       }
690     }
691     return($ret);
692   }
694   function getFAIreleases() 
695   {
696     $ret = array();
698     if(!isset($this->FAIServRepConfig[$this->FAIdebianMirror])){
699       $this->FAIdebianMirror = "auto";
700     }
702     $errorClasses = "";  
703   
704     foreach($this->FAIServRepConfig[$this->FAIdebianMirror]['RELEASE'] as $release => $sections){
705       $use = true;
706       
707       if(!count($this->FAIclass) == 0){
708         foreach($this->FAIclass as $class){
709           if(!in_array($class, $sections['PACKAGES'])){
710             $use = false;
711             $errorClasses[$class] = $class;
712           }else{
713             if(isset($errorClasses[$class])){
714               unset($errorClasses[$class]); 
715             }
716           }
717         }
718       }
719       if($use){
720         $ret[$release]=$release;
721       }
722     } 
723     if((count($ret) == 0 ) && ($this->FAIdebianMirror != "auto")){
725       $eClasses = " ";
726       foreach($errorClasses as $class){
727         $eClasses .= $class." ";
728       }
730       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));
731       $this->FAIdebianMirror = "auto";
732       return($this->getFAIreleases());
733     }elseif((count($ret) == 0 ) && ($this->FAIdebianMirror == "auto")){
735       $eClasses = " ";
736       foreach($errorClasses as $class){
737         $eClasses .= $class." ";
738       }
739       
740       $this->FAIclass= array();
741       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));
742     }
743     return($ret);
744   }
746   /* Save data to object */
747   function save_object()
748   {
749     plugin::save_object();
751     /* Save group radio buttons */
752     if (chkacl ($this->acl, "bootmode") == "" && isset($_POST["bootmode"])){
753       $this->bootmode= $_POST["bootmode"];
754     }
756     /* Save kernel parameters */
757     if (chkacl ($this->acl, "gotoKernelParameters") == "" && isset($_POST["customParameters"])){
758       $this->customParameters= $_POST["customParameters"];
759     }
760   }
763   /* Save to LDAP */
764   function save()
765   {
767     /* Depending on the baseobject (Ogroup / WS) we
768      *  use another set of objectClasses
769      * In case of WS itself, we use  "array("GOhard", "FAIobject");"
770      * if we are currently editing from ogroup menu we use (array("gotWorkstationTemplate","GOhard", "FAIobject"))
771      */
772     if(isset($this->parent->by_object['ogroup'])){
773       $this->objectclasses = array("gotoWorkstationTemplate","GOhard", "FAIobject");
774     }elseif(isset($this->parent->by_object['workgeneric'])){
775       $this->objectclasses = array("GOhard", "FAIobject");
776     }else{
777       print "Object Type Configuration : unknown";
778       exit();
779     }
781     /* Find proper terminal path for tftp configuration
782        FIXME: This is suboptimal when the default has changed to
783        another location! */
784     if ($this->gotoTerminalPath == "default"){
785       $ldap= $this->config->get_ldap_link();
787       /* Strip relevant part from dn, keep trailing ',' */
788       $tmp= preg_replace("/^cn=[^,]+,ou=terminals,ou=systems,/i", "", $this->dn);
789       $tmp= preg_replace("/".$this->config->current['BASE']."$/i", "", $tmp);
791       /* Walk from top to base and try to load default values for
792          'gotoTerminalPath'. Abort when an entry is found. */
793       while (TRUE){
794         $tmp= preg_replace ("/^[^,]+,/", "", $tmp);
796         $ldap->cat("cn=default,ou=terminals,ou=systems,$tmp".
797             $this->config->current['BASE']);
798         $attrs= $ldap->fetch();
799         if (isset($attrs['gotoTerminalPath'])){
800           $this->gotoTerminalPath= $attrs['gotoTerminalPath'][0];
801           break;
802         }
804         /* Nothing left? */
805         if ($tmp == ""){
806           break;
807         }
808       }
809     }
811     /* Add semi automatic values */
812     // FIXME: LDAP Server may not be set here...
813     $this->gotoKernelParameters= "root=/dev/nfs nfsroot=".
814       $this->gotoTerminalPath.
815       ",ro,hard,nolock,fg,rsize=8192 ".
816       "ip=::::::dhcp ldap=".base64_encode($this->gotoLdapServer);
818     switch ($this->bootmode){
819       case "D":
820         $this->gotoKernelParameters.= " debug";
821       break;
822       case "G":
823         $this->gotoKernelParameters.= " splash=silent";
824       break;
825     }
826     if ($this->customParameters != ""){
827       $this->gotoKernelParameters.= " o ".$this->customParameters;
828     }
830     plugin::save();
832     unset( $this->attrs['FAIrelease'] );
833     
834     $str = "";
835     foreach($this->FAIclass as $class){
836       $str .= $class." ";
837     }
838     $str .= ":" . $this->FAIrelease;
839     $this->attrs['FAIclass']= "";
840     $this->attrs['FAIclass']= trim($str);
842     if(empty($this->attrs['FAIclass'])){
843       $this->attrs['FAIclass'] = array();
844     }
846     /* Add missing arrays */
847     foreach (array("gotoFilesystem", "gotoAutoFs", "gotoModules") as $val){
848       if (isset ($this->$val) && count ($this->$val) != 0){
849     
850         $this->attrs["$val"]= array_unique($this->$val);
851       }
852       if(!isset($this->attrs["$val"])) $this->attrs["$val"]=array();
853     }
854     /* Strip out 'default' values */
855     if ($this->attrs['gotoLdapServer'] == "default"){
856       unset ($this->attrs['gotoLdapServer']);
857     }
859     /* if mirror == none stop saving this attribute */
860     if($this->FAIdebianMirror == "none"){
861       $this->FAIdebianMirror = "";
862     }
863     
864     if((count($this->attrs['FAIclass'])==0)&&(empty($this->FAIdebianMirror))){
865       $tmp = array();
866       foreach($this->attrs['objectClass'] as $class){
867         if($class != "FAIobject"){
868           $tmp[] = $class;
869         }
870       }
871       $this->attrs['objectClass']     = $tmp;
872       $this->attrs['FAIclass']        = array();
873       $this->attrs['FAIdebianMirror'] = array();
874     }
876     /* prepare share settings */
877     $tmp = array();
878     foreach($this->gotoShares as $name => $settings){
879       $tmp2= split("\|",$name);
880       $name = $tmp2[0];
881       $tmp[] = $settings['server']."|".$name."|".$settings['mountPoint'];
882     }
883     $this->attrs['gotoShare']=$tmp;
885     $ldap= $this->config->get_ldap_link();
886     $ldap->cd($this->dn);
887     $this->cleanup();
888 $ldap->modify ($this->attrs); 
890     show_ldap_error($ldap->get_error());
891     $this->handle_post_events("modify");
892   }
894   /* Add value to array, check if unique */
895   function add_list (&$array, $value)
896   {
897     if ($value != ""){
898       $array[]= $value;
899       sort($array);
900       array_unique ($array);
901     }
902   }
905   /* Delete value to array, check if unique */
906   function del_list (&$array, $list)
907   {
908     $tmp= array();
909     foreach ($array as $mod){
910       if (!in_array($mod, $list)){
911         $tmp[]= $mod;
912       }
913     }
914     $array= $tmp;
915   }
917   /* Generate ListBox frindly output for the defined shares
918    * Possibly Add or remove an attribute here,
919    */
920   function printOutAssignedShares()
921   {
922     $a_return = array();
923     if(is_array($this->gotoShares)){
924       foreach($this->gotoShares as $share){
925         $a_return[$share['name']."|".$share['server']]= $share['name']." [".$share['server']."]";
926       }
927     }
928     return($a_return);
929   }
933 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
934 ?>