b7c3c97098a72f1edcb36f3fcfb0a7a87a60d2bf
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 $bootmode = "G";
11 var $gotoBootKernel = "default-inherited";
12 var $gotoKernelParameters = "";
13 var $gotoLdapServer = "default-inherited";
14 var $gotoModules = array();
15 var $gotoAutoFs = array();
16 var $gotoFilesystem = array();
17 var $gotoTerminalPath = "";
18 var $gotoBootKernels = array();
20 /* attribute list for save action */
21 var $attributes = array("gotoLdapServer", "gotoBootKernel", "gotoKernelParameters",
22 "FAIclass", "FAIstatus", "gotoShare","FAIdebianMirror", "FAIrelease");
23 var $objectclasses = array("GOhard", "FAIobject");
25 /* Share */
26 var $gotoShares = array();// Currently Share Option
27 var $gotoShare = ""; // currently selected Share Option
28 var $gotoShareSelections= array();// Available Shares for this account in Listbox format
29 var $gotoAvailableShares= array();// Available Shares for this account
31 /* Helper */
32 var $orig_dn = "";
33 var $ignore_account = TRUE;
35 /* FAI class selection */
36 var $FAIclass = array(); // The currently selected classes
37 var $FAIrelease = "";
38 var $FAIdebianMirror = "auto";
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;
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();
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 }
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 }
255 function check()
256 {
257 $messages = array();
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> <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{
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 }
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 }
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." <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."'> ".
536 "<input class='center' type='image' src='images/lists/sort-down.png' name='sort_ldap_down_".$key."'> ".
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 }
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");
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 = " <img src='images/empty.png' alt=\"\" width='7'>";
608 if($this->acl_is_writeable("FAIclass")){
609 $str_up = " <input type='image' src='images/lists/sort-up.png' name='sort_up_%s' value='%s'>";
610 $str_down = " <input type='image' src='images/lists/sort-down.png' name='sort_down_%s' value='%s'>";
611 $str_remove = " <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 = " <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 Description tag
654 * There may be several FAI objects with the same class name,
655 * use the description from FAIprofile, if possible.
656 */
657 $abbrevations = $this->get_abbrevations_string($class);
659 if(!empty($abbrevations)){
660 $abbrevations = " [".trim($abbrevations)."]";
661 }
663 $div->AddEntry(array(
664 array("string"=>$class.$abbrevations.$marker),
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 /* Radio button group */
673 if (preg_match("/G/", $this->bootmode)) {
674 $smarty->assign("graphicalbootup", "checked");
675 } else {
676 $smarty->assign("graphicalbootup", "");
677 }
678 if (preg_match("/T/", $this->bootmode)) {
679 $smarty->assign("textbootup", "checked");
680 } else {
681 $smarty->assign("textbootup", "");
682 }
683 if (preg_match("/D/", $this->bootmode)) {
684 $smarty->assign("debugbootup", "checked");
685 } else {
686 $smarty->assign("debugbootup", "");
687 }
689 /* Show main page */
690 $smarty->assign("gotoKernelParameters",$this->gotoKernelParameters);
691 return($smarty->fetch (get_template_path('workstationStartup.tpl', TRUE,dirname(__FILE__))));
692 }
695 function remove_from_parent()
696 {
697 $this->handle_post_events("remove");
698 new log("remove","workstation/".get_class($this),$this->dn);
699 }
702 /* Save data to object */
703 function save_object()
704 {
705 $old_mirror = $this->FAIdebianMirror;
706 plugin::save_object();
708 /* Update release */
709 if($old_mirror != $this->FAIdebianMirror){
710 if(!isset($this->cache['SERVERS'][$this->FAIdebianMirror][$this->FAIrelease])){
711 $this->FAIrelease = key($this->cache['SERVERS'][$this->FAIdebianMirror]);
712 }
713 }
715 /* Clear FAI class list if FAI mirror has been set to inherited */
716 if($this->FAIdebianMirror == "inherited"){
717 $this->FAIclass =array();
718 }
720 if(isset($_POST['WorkstationStarttabPosted'])){
721 if(isset($_POST['gotoLdap_inherit'])){
722 $this->gotoLdap_inherit = TRUE;
723 }else{
724 $this->gotoLdap_inherit = FALSE;
725 }
727 /* Save group radio buttons */
728 if ($this->acl_is_writeable("bootmode") && isset($_POST["bootmode"])){
729 $this->bootmode= $_POST["bootmode"];
730 }
731 }
732 }
735 /* Save to LDAP */
736 function save()
737 {
739 /* Depending on the baseobject (Ogroup / WS) we
740 * use another set of objectClasses
741 * In case of WS itself, we use "array("GOhard", "FAIobject");"
742 * if we are currently editing from ogroup menu we use (array("gotWorkstationTemplate","GOhard", "FAIobject"))
743 */
744 if(isset($this->parent->by_object['ogroup'])){
745 $this->objectclasses = array("gotoWorkstationTemplate");
746 }elseif(isset($this->parent->by_object['workgeneric'])){
747 $this->objectclasses = array("GOhard");
748 }elseif(isset($this->parent->by_object['servgeneric'])){
749 $this->objectclasses = array("GOhard","gotoWorkstationTemplate");
750 }else{
751 msg_dialog::display(_("Fatal error"),
752 "Object Type Configuration is unknown. Please contact the GOsa developers.",
753 FATAL_ERROR_DIALOG);
754 exit();
755 }
757 /* Append FAI class */
758 if($this->fai_activated){
759 $this->objectclasses[] = "FAIobject";
760 }
762 /* Find proper terminal path for tftp configuration
763 FIXME: This is suboptimal when the default has changed to
764 another location! */
765 if (($this->gotoTerminalPath == "default")){
766 $ldap= $this->config->get_ldap_link();
768 /* Strip relevant part from dn, keep trailing ',' */
769 $tmp= preg_replace("/^cn=[^,]+,".get_ou('terminalRDN')."/i", "", $this->dn);
770 $tmp= preg_replace("/".$this->config->current['BASE']."$/i", "", $tmp);
772 /* Walk from top to base and try to load default values for
773 'gotoTerminalPath'. Abort when an entry is found. */
774 while (TRUE){
775 $tmp= preg_replace ("/^[^,]+,/", "", $tmp);
777 $ldap->cat("cn=default,".get_ou('terminalRDN').$tmp.
778 $this->config->current['BASE'], array('gotoTerminalPath'));
779 $attrs= $ldap->fetch();
780 if (isset($attrs['gotoTerminalPath'])){
781 $this->gotoTerminalPath= $attrs['gotoTerminalPath'][0];
782 break;
783 }
785 /* Nothing left? */
786 if ($tmp == ""){
787 break;
788 }
789 }
790 }
792 if ($this->gotoKernelParameters == "") {
793 /* Add semi automatic values if empty */
794 // FIXME: LDAP Server may not be set here...
795 $this->gotoKernelParameters= "ldap=".base64_encode($this->gotoLdapServer);
797 switch ($this->bootmode){
798 case "D":
799 $this->gotoKernelParameters.= " debug";
800 break;
801 case "G":
802 $this->gotoKernelParameters.= " splash=silent";
803 break;
804 }
805 }
807 plugin::save();
809 unset( $this->attrs['FAIrelease'] );
810 $str = "";
812 /* Skip FAI attribute handling if not necessary */
813 if($this->fai_activated && !$this->si_fai_action_failed){
814 if($this->FAIdebianMirror == "inherited"){
815 $this->attrs['FAIclass'] = $this->attrs['FAIrelease'] = $this->attrs['FAIdebianMirror'] = array();
816 }else{
817 foreach($this->FAIclass as $class){
818 $str .= $class." ";
819 }
820 $str = trim($str);
821 if(empty($this->attrs['FAIclass'])){
822 $this->attrs['FAIclass'] = array();
823 }else{
824 $this->attrs['FAIclass']= $str." :".$this->FAIrelease;
825 }
826 }
827 }
829 /* Add missing arrays */
830 foreach (array("gotoFilesystem", "gotoAutoFs", "gotoModules") as $val){
831 if (isset ($this->$val) && count ($this->$val) != 0){
833 $this->attrs["$val"]= array_unique($this->$val);
834 }
835 if(!isset($this->attrs["$val"])) $this->attrs["$val"]=array();
836 }
838 /* Prepare list of ldap servers */
839 $this->attrs['gotoLdapServer'] = array();
840 if(!$this->gotoLdap_inherit){
841 $i = 0;
842 foreach($this->gotoLdapServers as $server){
843 $i ++;
844 $this->attrs['gotoLdapServer'][] = $i.":".$server;
845 }
846 }
848 if ($this->attrs['gotoBootKernel'] == "default-inherited"){
849 $this->attrs['gotoBootKernel']= array();
850 }
852 /* if mirror == none stop saving this attribute */
853 if($this->FAIdebianMirror == "none"){
854 $this->FAIdebianMirror = "";
855 }
857 /* Get FAIstate from object, the generic tab could have changed it during execute */
858 $ldap= $this->config->get_ldap_link();
859 $ldap->cd($this->dn);
862 /* Skip FAI attribute handling if not necessary */
863 if($this->fai_activated && !$this->si_fai_action_failed && $this->si_active){
864 $ldap->cat($this->dn,array("FAIstate"));
865 $checkFAIstate = $ldap->fetch();
867 /* Remove FAI objects if no FAI class is selected */
868 if((count($this->FAIclass)==0) && (!isset($checkFAIstate['FAIstate']))){
869 $this->attrs['FAIclass'] = array();
870 $this->attrs['FAIdebianMirror'] = array();
871 }
872 }else{
874 /* Don't touch FAI objects if something went wrong with the si daemon.
875 */
876 if(isset($this->attrs['FAIclass'])) unset($this->attrs['FAIclass']);
877 if(isset($this->attrs['FAIdebianMirror'])) unset($this->attrs['FAIdebianMirror']);
878 }
880 /* prepare share settings */
881 $tmp = array();
882 foreach($this->gotoShares as $name => $settings){
883 $tmp2= split("\|",$name);
884 $name = $tmp2[0];
885 $tmp[] = $settings['server']."|".$name."|".$settings['mountPoint'];
886 }
887 $this->attrs['gotoShare']=$tmp;
888 $this->cleanup();
889 $ldap->modify ($this->attrs);
890 new log("modify","workstation/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
892 if (!$ldap->success()){
893 msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_MOD, get_class()));
894 }
895 $this->handle_post_events("modify");
897 /* Check if LDAP server has changed */
898 if ((isset($this->attrs['gotoLdapServer']) && class_available("DaemonEvent")) || $this->gotoLdap_inherit){
899 $events = DaemonEvent::get_event_types(SYSTEM_EVENT | HIDDEN_EVENT);
900 $o_queue = new gosaSupportDaemon();
901 if(isset($events['TRIGGERED']['DaemonEvent_reload_ldap_config'])){
902 $evt = $events['TRIGGERED']['DaemonEvent_reload_ldap_config'];
903 $macs = array();
905 /* Get list of macAddresses
906 */
907 if(isset($this->parent->by_object['ogroup'])){
909 /* If we are an object group, add all member macs
910 */
911 $p = $this->parent->by_object['ogroup'];
912 foreach($p->memberList as $dn => $obj){
913 if(isset($p->objcache[$dn]['macAddress']) && !empty($p->objcache[$dn]['macAddress'])){
914 $macs[] = $p->objcache[$dn]['macAddress'];
915 }
916 }
917 }elseif(isset($this->parent->by_object['workgeneric']->netConfigDNS->macAddress)){
919 /* We are a workstation. Add current mac.
920 */
921 $mac = $this->parent->by_object['workgeneric']->netConfigDNS->macAddress;
922 if(!empty($mac)){
923 $macs[] = $mac;
924 }
925 }elseif(isset($this->parent->by_object['servgeneric']->netConfigDNS->macAddress)){
927 /* We are a server. Add current mac.
928 */
929 $mac = $this->parent->by_object['servgeneric']->netConfigDNS->macAddress;
930 if(!empty($mac)){
931 $macs[] = $mac;
932 }
933 }
935 /* Trigger event for all member objects
936 */
937 foreach($macs as $mac){
938 $tmp = new $evt['CLASS_NAME']($this->config);
939 $tmp->set_type(TRIGGERED_EVENT);
940 $tmp->add_targets(array($mac));
941 if(!$o_queue->append($tmp)){
942 msg_dialog::display(_("Service infrastructure"),msgPool::siError($o_queue->get_error()),ERROR_DIALOG);
943 }
944 }
945 }
946 }
947 }
950 /* Add value to array, check if unique */
951 function add_list (&$array, $value)
952 {
953 if ($value != ""){
954 $array[]= $value;
955 sort($array);
956 array_unique ($array);
957 }
958 }
961 /* Delete value to array, check if unique */
962 function del_list (&$array, $list)
963 {
964 $tmp= array();
965 foreach ($array as $mod){
966 if (!in_array($mod, $list)){
967 $tmp[]= $mod;
968 }
969 }
970 $array= $tmp;
971 }
973 /* Generate ListBox frindly output for the defined shares
974 * Possibly Add or remove an attribute here,
975 */
976 function printOutAssignedShares()
977 {
978 $a_return = array();
979 if(is_array($this->gotoShares)){
980 foreach($this->gotoShares as $share){
981 $a_return[$share['name']."|".$share['server']]= $share['name']." [".$share['server']."]";
982 }
983 }
984 return($a_return);
985 }
989 function PrepareForCopyPaste($source)
990 {
991 plugin::PrepareForCopyPaste($source);
992 $source_o = new workstartup ($this->config, $source['dn']);
993 foreach(array("FAIclass","gotoModules", "gotoAutoFs", "gotoFilesystem",
994 "gotoKernelParameters","gotoShares") as $attr){
995 $this->$attr = $source_o->$attr;
996 }
997 }
1000 function array_switch_item($ar,$from,$to)
1001 {
1002 if(!is_array($ar)){
1003 return(false);
1004 }
1005 if(!isset($ar[$from])){
1006 return(false);
1007 }
1008 if(!isset($ar[$to])){
1009 return(false);
1010 }
1012 $tmp = $ar[$from];
1013 $ar[$from] = $ar[$to];
1014 $ar[$to] = $tmp;
1015 return($ar);
1016 }
1019 /* Return plugin informations for acl handling */
1020 static function plInfo()
1021 {
1022 return (array(
1023 "plShortName" => _("Startup"),
1024 "plDescription" => _("System startup"),
1025 "plSelfModify" => FALSE,
1026 "plDepends" => array(),
1027 "plPriority" => 9,
1028 "plSection" => array("administration"),
1029 "plCategory" => array("workstation","server","ogroups"),
1031 "plProvidedAcls"=> array(
1032 "gotoLdapServer" => _("Ldap server"),
1033 "gotoBootKernel" => _("Boot kernel"),
1034 "gotoKernelParameters" => _("Kernel parameter"),
1036 "gotoModules" => _("Kernel modules"),
1037 "gotoShare" => _("Shares"),
1039 "FAIclass" => _("FAI classes"),
1040 "FAIdebianMirror" => _("Debian mirror"),
1041 "FAIrelease" => _("Debian release"),
1043 "FAIstatus" => _("FAI status flag")) // #FIXME is this acl realy necessary ?
1044 ));
1045 }
1048 /* Updates release dns
1049 * and reads all classes for the current release,
1050 * if not already done ($this->cache).
1051 */
1052 function update_fai_cache($first_call = FALSE)
1053 {
1054 $force = FALSE;
1055 if(!$this->si_active) return;
1056 $start = microtime(TRUE);
1058 if($this->si_fai_action_failed && !isset($_POST['fai_si_retry'])) return;
1060 $this->si_fai_action_failed = FALSE;
1062 /* Get the list of available servers and their releases.
1063 */
1064 if($force || !isset($this->cache['SERVERS'])){
1066 $o_queue = new gosaSupportDaemon();
1067 $tmp = $o_queue->FAI_get_server();
1068 if($o_queue->is_error()){
1069 msg_dialog::display(_("Service infrastructure"),msgPool::siError($o_queue->get_error()),ERROR_DIALOG);
1070 $this->si_fai_action_failed = TRUE;
1071 $this->cache = array();
1072 return;
1073 }else{
1075 foreach($tmp as $entry){
1076 $rel = $entry['FAI_RELEASE'];
1077 $this->cache['SERVERS']['auto'][$rel] = $rel;
1078 $this->cache['SERVERS'][$entry['SERVER']][$rel] = $rel;
1079 uksort($this->cache['SERVERS']['auto'], 'strnatcasecmp');
1080 uksort($this->cache['SERVERS'][$entry['SERVER']], 'strnatcasecmp');
1081 }
1082 }
1083 }
1085 /* Ensure that our selection is valid, else we get several PHP warnings
1086 if there is no FAI configuration at all.
1087 */
1088 if(!isset($this->cache['SERVERS'][$this->FAIdebianMirror])){
1089 $this->cache['SERVERS'][$this->FAIdebianMirror][''] ='';
1090 }
1092 /* Build up arrays, without checks */
1093 if(!$first_call){
1095 /* Check if the selected mirror is available */
1096 if(!isset($this->cache['SERVERS'][$this->FAIdebianMirror])){
1097 $this->FAIdebianMirror = "auto";
1098 $this->FAIrelease = key($this->cache['SERVERS'][$this->FAIdebianMirror]);
1099 trigger_error("There was a problem with the selected FAIdebianMirror. This mirror ('".$this->FAIdebianMirror."') is not available");
1100 }
1102 /* Check if the selected release is available */
1103 if($this->FAIdebianMirror != "inherited" && !isset($this->cache['SERVERS'][$this->FAIdebianMirror][$this->FAIrelease])){
1105 if($this->FAIrelease != ""){
1106 trigger_error("There was a problem with the selected FAIrelease. This release ('".$this->FAIrelease."') is not available");
1107 }
1108 $this->FAIrelease = key($this->cache['SERVERS'][$this->FAIdebianMirror]);
1109 }
1110 }
1112 /* Get classes for release from cache.
1113 * Or build cache
1114 */
1115 if($this->FAIdebianMirror == "inherited"){
1116 $release = $this->InheritedFAIrelease;
1117 }else{
1118 $release = $this->FAIrelease;
1119 }
1121 if($force || !isset($this->cache['CLASSES'][$release]) && $release != ""){
1123 /* Get the list of available servers and their releases.
1124 */
1125 $o_queue = new gosaSupportDaemon();
1126 $classes = $o_queue->FAI_get_classes($release);
1127 $this->cache['CLASSES'][$release] = array();
1128 if($o_queue->is_error()){
1129 msg_dialog::display(_("Service infrastructure"),msgPool::siError($o_queue->get_error()),ERROR_DIALOG);
1130 $this->si_fai_action_failed = TRUE;
1131 $this->cache=array();
1132 return;
1133 }else{
1134 foreach($classes as $class){
1135 $classname = $class['CLASS'];
1136 if (!isset($this->cache['CLASSES'][$release][$classname])) {
1137 $this->cache['CLASSES'][$release][$classname] = array();
1138 }
1139 array_push($this->cache['CLASSES'][$release][$classname], $this->analyse_fai_object($class));
1140 }
1141 }
1143 /* Add object caught from external hook
1144 */
1145 $lines= $this->GetHookElements();
1146 foreach ($lines as $hline){
1147 $entries= split(";", $hline);
1148 $server = $entries['0'];
1149 $url = $entries['1'];
1150 if (!empty($url)){
1152 /* Split releases */
1153 if (isset($entries[2])){
1154 $releases= split(",", $entries[2]);
1156 foreach ($releases as $release_data){
1157 $release_c = preg_replace('/:.*$/', '', $release_data);
1158 $sections_c = split(':', preg_replace('/^[^:]+:([^|]+)|.*$/', '\1', $release_data));
1159 $classes_c = split('\|', preg_replace('/^[^|]+\|(.*)$/', '\1', $release_data));
1161 if($release_c == $release){
1162 $this->cache['SERVERS'][$url][$release_c]=$release_c;
1163 $this->cache['SERVERS']['auto'][$release_c]=$release_c;
1164 foreach ($classes_c as $class){
1165 if ($class != ""){
1166 $this->cache['CLASSES'][$release_c][$class]= array();
1167 }
1168 }
1169 }
1170 }
1171 }
1172 }
1173 }
1174 uksort($this->cache['SERVERS'], 'strnatcasecmp');
1176 /* Only add inherit option, if we are part in an object group
1177 */
1178 if($this->member_of_ogroup){
1179 $this->cache['SERVERS'] = array_merge(array('inherited' => array()),$this->cache['SERVERS']);
1180 }
1181 }
1183 /* Get list of available kernel for this release
1184 */
1185 if(!isset($this->cache['KERNELS'])) $this->cache['KERNELS'] = array();
1187 if($force || !isset($this->cache['KERNELS'][$release])){
1188 $o_queue = new gosaSupportDaemon();
1189 $tmp = $o_queue->FAI_get_kernels($release);
1190 $this->cache['KERNELS'][$release] = array();
1191 foreach($this->gotoBootKernels as $name => $default){
1192 $this->cache['KERNELS'][$release][$name] = $default;
1193 }
1194 foreach($tmp as $kernel){
1195 if(empty($kernel)) continue;
1196 $this->cache['KERNELS'][$release][$kernel]=$kernel;
1197 }
1198 ksort($this->cache['KERNELS'][$release]);
1199 }
1200 }
1202 /* Detect the release and get all classes for it */
1203 function get_classes() {
1204 $this->update_fai_cache();
1206 if($this->FAIdebianMirror == "inherited" && isset($this->cache['CLASSES'][$this->InheritedFAIrelease])){
1207 $classes = $this->cache['CLASSES'][$this->InheritedFAIrelease];
1208 }elseif(isset($this->cache['CLASSES'][$this->FAIrelease])){
1209 $classes = $this->cache['CLASSES'][$this->FAIrelease];
1210 }else{
1211 $classes = array();
1212 }
1214 return $classes;
1215 }
1217 /* This function return an array containing all
1218 * invalid classes for the selected server/release
1219 */
1220 function get_invalid_classes($classes)
1221 {
1222 $release_classes = $this->get_classes();
1224 /* Detect all classes that are not valid
1225 * for the selected release
1226 */
1227 $NA = array();
1228 foreach($classes as $class){
1229 if(!isset($release_classes[$class])){
1230 $NA[] = $class;
1231 }
1232 }
1233 return($NA);
1234 }
1238 function get_abbrevations_string($class_name) {
1239 $classes = $this->get_classes();
1241 $Abbr = "";
1242 foreach($classes[$class_name] as $class_type) {
1243 $Abbr .= $class_type['Abbr']." ";
1244 }
1245 return trim($Abbr);
1246 }
1248 /* Get all selectable classes for the ui select box
1249 */
1250 function selectable_classes()
1251 {
1252 $classes = $this->get_classes();
1254 $ret= array();
1255 foreach($classes as $class_name => $class_types) {
1256 if (!in_array($class_name, $this->FAIclass)) {
1257 $ret[$class_name] = $this->get_abbrevations_string($class_name);
1258 }
1259 }
1260 uksort($ret, 'strnatcasecmp');
1261 return($ret);
1262 }
1265 /* Analyse FAI object and return an array with usefull informations like
1266 * FAIobject type.
1267 */
1268 function analyse_fai_object($attr)
1269 {
1270 $tmp = array();
1271 switch($attr['TYPE']){
1273 case 'FAIpackageList':
1274 $tmp["Type"]= 'FAIpackageList';
1275 $tmp["Abbr"]= 'Pl';
1276 break;
1277 case 'FAItemplate':
1278 $tmp["Type"]= 'FAItemplate';
1279 $tmp["Abbr"]= 'T';
1280 break;
1281 case 'FAIvariable':
1282 $tmp["Type"]= 'FAIvariable';
1283 $tmp["Abbr"]= 'V';
1284 break;
1285 case 'FAIscript':
1286 $tmp["Type"]= 'FAIscript';
1287 $tmp["Abbr"]= 'S';
1288 break;
1289 case 'FAIhook':
1290 $tmp["Type"]= 'FAIhook';
1291 $tmp["Abbr"]= 'H';
1292 break;
1293 case 'FAIpartitionTable':
1294 $tmp["Type"]= 'FAIpartitionTable';
1295 $tmp["Abbr"]= 'Pt';
1296 break;
1297 case 'FAIprofile':
1298 $tmp["Type"]= 'FAIprofile';
1299 $tmp["Abbr"]= 'P';
1300 break;
1301 default: trigger_error("Unknown FAI object type!");;
1302 }
1303 return($tmp);
1304 }
1307 /* Return repository hook output, if possible.
1308 */
1309 function GetHookElements()
1310 {
1311 $ret = array();
1312 $cmd= $this->config->search("servrepository", "repositoryBranchHook",array('tabs'));
1313 if(!empty($cmd)){
1314 $res = shell_exec($cmd);
1315 $res2 = trim($res);
1316 if((!$res)){
1317 msg_dialog::display(_("Configuration error"), msgPool::cmdexecfailed("repositoryBranchHook", $cmd), ERROR_DIALOG);
1318 }elseif(empty($res2)){
1319 msg_dialog::display(_("Configuration error"), _("'repositoryBranchHook' returned no result!"), ERROR_DIALOG);
1320 }else{
1321 $tmp = split("\n",$res);
1322 foreach($tmp as $line){
1323 if(empty($line)) continue;
1324 $ret[]= $line;
1325 }
1326 }
1327 }
1328 return($ret);
1329 }
1332 /* This function creates the release name out of a dn
1333 * e.g. "ou=1.0rc2,ou=siga,ou=fai,..." => "siga/1.0rc2"
1334 */
1335 function dn_to_release_name($dn)
1336 {
1337 $relevant = preg_replace("/,".preg_quote(get_ou("faiBaseRDN"), '/').".*$/","",$dn);
1338 $parts = array_reverse(split("\,",$relevant));
1339 $str ="";
1340 foreach($parts as $part){
1341 $str .= preg_replace("/^ou=/","",$part)."/";
1342 }
1343 return(preg_replace("/\/$/","",$str));
1344 }
1345 }
1347 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
1348 ?>