Code

Added Profiles to selection box for ppd classes
[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            = "";
20   var $FAIclass             = array();
21   var $FAIclasses           = array();
22   var $FAIclassInfo         = array();
23   var $FAIdebianMirror      = array();
26   /* attribute list for save action */
27   var $attributes     = array("gotoLdapServer", "gotoBootKernel", "gotoKernelParameters", "FAIclass", "FAIstatus", "gotoShare","FAIdebianMirror");
28   var $objectclasses  = array("GOhard", "FAIobject");
30   /* Share */
31   var $gotoShares         = array();// Currently Share Option
32   var $gotoShare          = "";     // currently selected Share Option
33   var $gotoShareSelections= array();// Available Shares for this account in Listbox format
34   var $gotoAvailableShares= array();// Available Shares for this account
36   /* Helper */
37   var $customParameters   = "";
38   var $orig_dn            = "";
39   var $ignore_account     = TRUE;
40   var $FAIdebianMirrors   = array();
42   function workstartup ($config, $dn= NULL)
43   {
44     plugin::plugin ($config, $dn);
46     /* Creating a list of valid Mirrors 
47      * none will not be saved to ldap.
48      */
49     $this->FAIdebianMirrors   = array("none"=>_("none"));
50     $ldap   = $this->config->get_ldap_link();
51     $ldap->cd($this->config->current['BASE']);
52     $ldap->search("(objectClass=FAIrepository)",array("FAIdebianMirror"));
53     
54     /* attach all attributes with "index => cn" to avoid multiple entries */
55     while($attr = $ldap->fetch()){
56       if(isset($attr['FAIdebianMirror'])){
57         $this->FAIdebianMirrors[$attr['FAIdebianMirror'][0]]=$attr['FAIdebianMirror'][0];
58       }
59     } 
60  
61     /* Get arrays */
62     foreach (array("gotoModules", "gotoAutoFs", "gotoFilesystem") as $val){
63       if (isset($this->attrs["$val"]["count"])){
64         for ($i= 0; $i<$this->attrs["count"]; $i++){
65           if (isset($this->attrs["$val"][$i])){
66             array_push($this->$val, $this->attrs["$val"][$i]);
67           }
68         }
69       }
70       sort ($this->$val);
71       $this->$val= array_unique($this->$val);
72     }
74     /* Parse Kernel Parameters to decide what boot mode is enabled */
75     if (preg_match("/ splash=silent/", $this->gotoKernelParameters)){
76       $this->bootmode= "G";
77     } elseif (preg_match("/ debug/", $this->gotoKernelParameters)){
78       $this->bootmode= "D";
79     } elseif ($this->gotoKernelParameters == "") {
80       $this->bootmode= "G";
81     } else {
82       $this->bootmode= "T";
83     }
84     if (preg_match("/ o /", $this->gotoKernelParameters)){
85       $this->customParameters= preg_replace ("/^.* o /", "", $this->gotoKernelParameters);
86     } else {
87       $this->customParameters= "";
88     }
90     /* Prepare Shares */
91     if((isset($this->attrs['gotoShare']))&&(is_array($this->attrs['gotoShare']))){
92       unset($this->attrs['gotoShare']['count']);
93       foreach($this->attrs['gotoShare'] as $share){
94         $tmp = $tmp2 = array();
95         $tmp = split("\|",$share);
96         $tmp2['server']      =$tmp[0];
97         $tmp2['name']        =$tmp[1];
98         $tmp2['mountPoint']  =$tmp[2];
99         $this->gotoShares[$tmp[1]."|".$tmp[0]]=$tmp2;
100       }
101     }
103     $this->gotoShareSelections= $config->getShareList(true);
104     $this->gotoAvailableShares= $config->getShareList(false);
105     $tmp2 = array();
106   
107     $ldap   = $this->config->get_ldap_link();
108     $ldap->cd($this->config->current['BASE']);
110     /* Search all FAI objects */
111     $ldap->search("(| (objectClass=FAIpackageList)(objectClass=FAItemplate)
112                       (objectClass=FAIvariable)(objectClass=FAIscript')(objectClass=FAIhook)(objectClass=FAIprofile)
113                       (objectClass=FAIpartitionTable))",array("objectClass","cn"),true);
114     /* Sort all entries, and attach elementtype.
115      * To be able to show the types in the listbox.
116      */
117     while($attr = $ldap->fetch()){
118       $cn = $attr['cn'][0];
119       if(in_array('FAIpackageList',$attr['objectClass'])){
120         $tmp2[$cn]['FAIpackageList']['obj']   = 'FAIpackageList'; 
121         $tmp2[$cn]['FAIpackageList']['kzl']   = 'Pl';
122         $this->FAIclasses[$attr['cn'][0]]=$attr['cn'][0];
123       }
124       if(in_array('FAItemplate',$attr['objectClass'])){
125         $tmp2[$cn]['FAItemplate']['obj']      = 'FAItemplate'; 
126         $tmp2[$cn]['FAItemplate']['kzl']      = 'T'; 
127         $this->FAIclasses[$attr['cn'][0]]=$attr['cn'][0];
128       }
129       if(in_array('FAIvariable',$attr['objectClass'])){
130         $tmp2[$cn]['FAIvariable']['obj']      = 'FAIvariable'; 
131         $tmp2[$cn]['FAIvariable']['kzl']      = 'V'; 
132         $this->FAIclasses[$attr['cn'][0]]=$attr['cn'][0];
133       }
134       if(in_array('FAIscript',$attr['objectClass'])){
135         $tmp2[$cn]['FAIscript']['obj']        = 'FAIscript'; 
136         $tmp2[$cn]['FAIscript']['kzl']        = 'S'; 
137         $this->FAIclasses[$attr['cn'][0]]=$attr['cn'][0];
138       }
139       if(in_array('FAIhook',$attr['objectClass'])){
140         $tmp2[$cn]['FAIhook']['obj']          = 'FAIhook'; 
141         $tmp2[$cn]['FAIhook']['kzl']          = 'H'; 
142         $this->FAIclasses[$attr['cn'][0]]=$attr['cn'][0];
143       }
144       if(in_array('FAIpartitionTable',$attr['objectClass'])){
145         $tmp2[$cn]['FAIpartitionTable']['obj']= 'FAIpartitionTable'; 
146         $tmp2[$cn]['FAIpartitionTable']['kzl']= 'Pt'; 
147         $this->FAIclasses[$attr['cn'][0]]=$attr['cn'][0];
148       }
149       if(in_array('FAIprofile',$attr['objectClass'])){
150         $tmp2[$cn]['FAIprofile']['obj']= 'FAIprofile'; 
151         $tmp2[$cn]['FAIprofile']['kzl']= 'P'; 
152         $this->FAIclasses[$attr['cn'][0]]=$attr['cn'][0];
153       }
154     }
156     $this->FAIclassInfo = $tmp2;
158     if(isset($this->attrs['FAIclass'])){
159       $tmp = array();
160       $tmp2 = $this->attrs['FAIclass'];
161       unset($tmp2['count']);
162       foreach($tmp2 as $class){
163         $tmp[$class] = $class;
164       }
165       $this->FAIclass = $tmp;
166     }
168     if(!is_array($this->FAIclass)){
169       $this->FAIclass = array();
170     }
173     $this->orig_dn= $this->dn;
174   }
176   /* Create array to display available classes/profiles in a selectbox */
177   function selectFriendlyClasses(){
178     $tmp=array();
179     foreach($this->FAIclasses as $class){
180       $str    = "";
181       $skip = false;
182       if(isset($this->FAIclassInfo[$class])){
183         foreach($this->FAIclassInfo[$class] as $objs){
184           $str .= $objs['kzl']." "; 
185         }
186       }
187       $tmp[$class] = $class."&nbsp; [".$str."]";
188     }
189     return($tmp);
190   }
192   function check()
193   {
194     $messages = array();
195     /* If there are packages selected, but no mirror show error */   
196     if(($this->FAIdebianMirror == "none")&&(count($this->FAIclass)>0)){
197       $messages[]=_("Please select a 'FAI server' or remove the 'FAI classes'.");
198     }
199     return($messages);
200   }
202   function execute()
203   {
204     /* Do we need to flip is_account state? */
205     if (isset($_POST['modify_state'])){
206       $this->is_account= !$this->is_account;
207     }
209     /* Do we represent a valid terminal? */
210     if (!$this->is_account && $this->parent == NULL){
211       $display= "<img alt=\"\" src=\"images/stop.png\" align=middle>&nbsp;<b>".
212         _("This 'dn' has no terminal features.")."</b>";
213       return ($display);
214     }
216     /* Add module */
217     if (isset ($_POST['add_module'])){
218       if ($_POST['module'] != "" && chkacl ($this->acl, "gotoModule") == ""){
219         $this->add_list ($this->gotoModules, $_POST['module']);
220       }
221     }
223     /* Delete module */
224     if (isset ($_POST['delete_module'])){
225       if (count($_POST['modules_list']) && chkacl ($this->acl, "gotoModule") == ""){
226         $this->del_list ($this->gotoModules, $_POST['modules_list']);
227       }
228     }
230     /* FAI class management */
231     if((isset($_POST['AddClass']))&&(isset($_POST['FAIclassesSel']))){
232       $found = 0 ; 
234       /* If this new class/profile will attach a second partition table
235        * to our list of classes, abort and show a message.
236        */
237       foreach($this->FAIclass as $name){
238         if(isset($this->FAIclassInfo[$name])){
239           foreach($this->FAIclassInfo[$name] as $atr){
240             if($atr['obj'] == "FAIpartitionTable"){
241               $found ++ ; 
242             }
243           }
244         }
245       }
247       if((isset($this->FAIclassInfo[$_POST['FAIclassesSel']]['FAIpackageList']))&&($found>0)){
248         print_red(_("There is already a profile in your selection that contain partition table configuratons."));
249       }else{
250         $this->FAIclass[$_POST['FAIclassesSel']]=$_POST['FAIclassesSel'];
251       }
252     }
254     /* Delete selected class from our list */
255     if((isset($_POST['DelClass']))&&(isset($_POST['FAIclassSel']))){
256       if(isset($this->FAIclass[$_POST['FAIclassSel']])){
257         unset($this->FAIclass[$_POST['FAIclassSel']]);
258       }
259     }
261     /* Show main page */
262     $smarty= get_smarty();
264     /* In this section server shares will be defined
265      * A user can select one of the given shares and a mount point
266      *  and attach this combination to his setup.
267      */
268     $smarty->assign("gotoShareSelections",    $this->gotoShareSelections);
269     $smarty->assign("gotoShareSelectionKeys", array_flip($this->gotoShareSelections));
271     /* if $_POST['gotoShareAdd'] is set, we will try to add a new entry
272      * This entry will be, a combination of mountPoint and sharedefinitions
273      */
274     if(isset($_POST['gotoShareAdd'])){
275       /* We assign a share to this user, if we don't know where to mount the share */
276       if((!isset($_POST['gotoShareMountPoint']))||(empty($_POST['gotoShareMountPoint']))||(preg_match("/[\|]/i",$_POST['gotoShareMountPoint']))){
277         print_red(_("You must specify a valid mount point."));
278       }else{
279         $a_share = $this->gotoAvailableShares[$_POST['gotoShareSelection']];
280         $s_mount = $_POST['gotoShareMountPoint'];
281         /* Preparing the new assignment */
282         $this->gotoShares[$a_share['name']."|".$a_share['server']]=$a_share;
283         $this->gotoShares[$a_share['name']."|".$a_share['server']]['mountPoint']=$s_mount;
284       }
285     }
287     /* if the Post  gotoShareDel is set, someone asked GOsa to delete the selected entry (if there is one selected)
288      * If there is no defined share selected, we will abort the deletion without any message
289      */
290     if((isset($_POST['gotoShareDel']))&&(isset($_POST['gotoShare']))){
291       unset($this->gotoShares[$_POST['gotoShare']]);
292     }
294     $smarty->assign("gotoShares",$this->printOutAssignedShares());
295     $smarty->assign("gotoShareKeys",array_flip($this->printOutAssignedShares()));
297     /* Arrays */
298     $smarty->assign("ldapservers", $this->config->data['SERVERS']['LDAP']);
299     $smarty->assign("gotoLdapServer_select", $this->gotoLdapServer);
300     $smarty->assign("gotoLdapServerACL", chkacl($this->acl, "gotoLdapServer"));
301     foreach (array("gotoModules", "gotoAutoFs", "gotoFilesystem") as $val){
302       $smarty->assign("$val", $this->$val);
303     }
305     /* Values */
306     foreach(array("gotoBootKernel", "customParameters", "gotoShare","FAIclasses","FAIclass","FAIdebianMirror") as $val){
307       $smarty->assign($val, $this->$val);
308       $smarty->assign($val."ACL", chkacl($this->acl, $val));
309     }
310   
311     $smarty->assign("FAIdebianMirrors",$this->FAIdebianMirrors);
312     $smarty->assign("FAIclasses",$this->selectFriendlyClasses());
313     $smarty->assign("FAIclassesKeys",array_flip($this->selectFriendlyClasses()));
314     $smarty->assign("FAIclassKeys",$this->FAIclass);
316     /* Radio button group */
317     if (preg_match("/G/", $this->bootmode)) {
318       $smarty->assign("graphicalbootup", "checked");
319     } else {
320       $smarty->assign("graphicalbootup", "");
321     }
322     if (preg_match("/T/", $this->bootmode)) {
323       $smarty->assign("textbootup", "checked");
324     } else {
325       $smarty->assign("textbootup", "");
326     }
327     if (preg_match("/D/", $this->bootmode)) {
328       $smarty->assign("debugbootup", "checked");
329     } else {
330       $smarty->assign("debugbootup", "");
331     }
333     /* ACL's */
334     foreach (array("gotoKernelParameters", "gotoModules", "gotoFilesystem","FAIclass") as $value){
335       $smarty->assign($value."ACL", chkacl($this->acl, "$value"));
336     }
338     /* Show main page */
339     return($smarty->fetch (get_template_path('workstationStartup.tpl', TRUE,dirname(__FILE__))));
340   }
342   function remove_from_parent()
343   {
344     /*
345     $ldap= $this->config->get_ldap_link();
346     $ldap->rmdir($this->dn);
347     show_ldap_error($ldap->get_error());
348     $this->handle_post_events("remove");
349     */
352     /* Depending on the baseobject (Ogroup / WS) we
353      *  use another set of objectClasses
354      * In case of WS itself, we use  "array("GOhard", "FAIobject");"
355      * if we are currently editing from ogroup menu we use (array("gotWorkstationTemplate","GOhard", "FAIobject"))
356      */
357     if(isset($this->parent->by_object['ogroup'])){
358       $this->objectclasses = array("gotoWorkstationTemplate","GOhard", "FAIobject");
359     }elseif(isset($this->parent->by_object['workgeneric'])){
360       $this->objectclasses = array("GOhard", "FAIobject");
361     }else{
362       print "unknown";
363       exit();
364     }
366     $ldap= $this->config->get_ldap_link();
367     plugin::remove_from_parent();
368    
369     /* Remove additional attributes.*/ 
370     foreach(array("gotoModules", "gotoAutoFs", "gotoFilesystem") as $attr){
371       $this->attrs [$attr] = array();
372     }
374     $ldap->cd($this->dn);
375     $ldap->modify($this->attrs);
376     show_ldap_error($ldap->get_error());
378   }
381   /* Save data to object */
382   function save_object()
383   {
384     plugin::save_object();
386     /* Save group radio buttons */
387     if (chkacl ($this->acl, "bootmode") == "" && isset($_POST["bootmode"])){
388       $this->bootmode= $_POST["bootmode"];
389     }
391     /* Save kernel parameters */
392     if (chkacl ($this->acl, "gotoKernelParameters") == "" && isset($_POST["customParameters"])){
393       $this->customParameters= $_POST["customParameters"];
394     }
395   }
398   /* Save to LDAP */
399   function save()
400   {
402     /* Depending on the baseobject (Ogroup / WS) we
403      *  use another set of objectClasses
404      * In case of WS itself, we use  "array("GOhard", "FAIobject");"
405      * if we are currently editing from ogroup menu we use (array("gotWorkstationTemplate","GOhard", "FAIobject"))
406      */
407     if(isset($this->parent->by_object['ogroup'])){
408       $this->objectclasses = array("gotoWorkstationTemplate","GOhard", "FAIobject");
409     }elseif(isset($this->parent->by_object['workgeneric'])){
410       $this->objectclasses = array("GOhard", "FAIobject");
411     }else{
412       print "unknown";
413       exit();
414     }
416     /* Find proper terminal path for tftp configuration
417        FIXME: This is suboptimal when the default has changed to
418        another location! */
419     if ($this->gotoTerminalPath == "default"){
420       $ldap= $this->config->get_ldap_link();
422       /* Strip relevant part from dn, keep trailing ',' */
423       $tmp= preg_replace("/^cn=[^,]+,ou=terminals,ou=systems,/i", "", $this->dn);
424       $tmp= preg_replace("/".$this->config->current['BASE']."$/i", "", $tmp);
426       /* Walk from top to base and try to load default values for
427          'gotoTerminalPath'. Abort when an entry is found. */
428       while (TRUE){
429         $tmp= preg_replace ("/^[^,]+,/", "", $tmp);
431         $ldap->cat("cn=default,ou=terminals,ou=systems,$tmp".
432             $this->config->current['BASE']);
433         $attrs= $ldap->fetch();
434         if (isset($attrs['gotoTerminalPath'])){
435           $this->gotoTerminalPath= $attrs['gotoTerminalPath'][0];
436           break;
437         }
439         /* Nothing left? */
440         if ($tmp == ""){
441           break;
442         }
443       }
444     }
446     /* Add semi automatic values */
447     // FIXME: LDAP Server may not be set here...
448     $this->gotoKernelParameters= "root=/dev/nfs nfsroot=".
449       $this->gotoTerminalPath.
450       ",ro,hard,nolock,fg,rsize=8192 ".
451       "ip=::::::dhcp LDAP=".$this->gotoLdapServer;
453     switch ($this->bootmode){
454       case "D":
455         $this->gotoKernelParameters.= " debug";
456       break;
457       case "G":
458         $this->gotoKernelParameters.= " splash=silent";
459       break;
460     }
461     if ($this->customParameters != ""){
462       $this->gotoKernelParameters.= " o ".$this->customParameters;
463     }
465     /* Create numeric index for our classes */
466     $tmp = array();
467     foreach($this->FAIclass as $class){
468       $tmp[] = $class;
469     }
470     $this->FAIclass = $tmp;
472     plugin::save();
474     /* Add missing arrays */
475     foreach (array("gotoFilesystem", "gotoAutoFs", "gotoModules") as $val){
476       if (isset ($this->$val) && count ($this->$val) != 0){
477     
478         $this->attrs["$val"]= array_unique($this->$val);
479       }
480       if(!isset($this->attrs["$val"])) $this->attrs["$val"]=array();
481     }
482     /* Strip out 'default' values */
483     if ($this->attrs['gotoLdapServer'] == "default"){
484       unset ($this->attrs['gotoLdapServer']);
485     }
487     $tmp = array();
488     foreach($this->FAIclass as $class){
489       $tmp[] = $class;
490     }
491     $this->attrs['FAIclass'] = $tmp;
492     /* Write back to ldap */
494     /* if mirror == none stop saving this attribute */
495     if($this->FAIdebianMirror == "none"){
496       $this->FAIdebianMirror = "";
497     }
498    
499     if((count($this->attrs['FAIclass'])==0)&&(empty($this->FAIdebianMirror))){
500       $tmp = array();
501       foreach($this->attrs['objectClass'] as $class){
502         if($class != "FAIobject"){
503           $tmp[] = $class;
504         }
505       }
506       $this->attrs['objectClass']     = $tmp;
507       $this->attrs['FAIclass']        = array();
508       $this->attrs['FAIdebianMirror'] = array();
509     }
511     /* prepare share settings */
512     $tmp = array();
513     foreach($this->gotoShares as $name => $settings){
514       $tmp2= split("\|",$name);
515       $name = $tmp2[0];
516       $tmp[] = $settings['server']."|".$name."|".$settings['mountPoint'];
517     }
518     $this->attrs['gotoShare']=$tmp;
520     $ldap= $this->config->get_ldap_link();
521     $ldap->cd($this->dn);
522     $ldap->modify($this->attrs);
523     show_ldap_error($ldap->get_error());
524     $this->handle_post_events("modify");
525   }
527   /* Add value to array, check if unique */
528   function add_list (&$array, $value)
529   {
530     if ($value != ""){
531       $array[]= $value;
532       sort($array);
533       array_unique ($array);
534     }
535   }
538   /* Delete value to array, check if unique */
539   function del_list (&$array, $list)
540   {
541     $tmp= array();
542     foreach ($array as $mod){
543       if (!in_array($mod, $list)){
544         $tmp[]= $mod;
545       }
546     }
547     $array= $tmp;
548   }
550   /* Generate ListBox frindly output for the defined shares
551    * Possibly Add or remove an attribute here,
552    */
553   function printOutAssignedShares()
554   {
555     $a_return = array();
556     if(is_array($this->gotoShares)){
557       foreach($this->gotoShares as $share){
558         $a_return[$share['name']."|".$share['server']]= $share['name']." [".$share['server']."]";
559       }
560     }
561     return($a_return);
562   }
566 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
567 ?>