Code

Added empty lines
[gosa.git] / plugins / admin / systems / class_terminalStartup.inc
1 <?php
2 class termstartup 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 $gotoTerminalPath= "";
18   /* Share */
19   var $gotoShares         = array();// Currently Share Option
20   var $gotoShare          = "";     // currently selected Share Option
21   var $gotoShareSelections= array();// Available Shares for this account in Listbox format
22   var $gotoAvailableShares= array();// Available Shares for this account
25   /* attribute list for save action */
26   var $attributes= array("gotoLdapServer", "gotoBootKernel", "gotoKernelParameters");
27   var $objectclasses= array("GOhard");
29   /* Helper */
30   var $customParameters= "";
31   var $orig_dn= "";
32   var $ignore_account= TRUE;
34   function termstartup ($config, $dn= NULL)
35   {
36     plugin::plugin ($config, $dn);
38     /* Get arrays */
39     foreach (array("gotoModules") as $val){
40       if (isset($this->attrs["$val"]["count"])){
41         for ($i= 0; $i<$this->attrs["count"]; $i++){
42           if (isset($this->attrs["$val"][$i])){
43             array_push($this->$val, $this->attrs["$val"][$i]);
44           }
45         }
46       }
47       sort ($this->$val);
48       $this->$val= array_unique($this->$val);
49     }
51     /* Parse Kernel Parameters to decide what boot mode is enabled */
52     if (preg_match("/ splash=silent/", $this->gotoKernelParameters)){
53       $this->bootmode= "G";
54     } elseif (preg_match("/ debug/", $this->gotoKernelParameters)){
55       $this->bootmode= "D";
56     } elseif ($this->gotoKernelParameters == "") {
57       $this->bootmode= "G";
58     } else {
59       $this->bootmode= "T";
60     }
61     if (preg_match("/ o /", $this->gotoKernelParameters)){
62       $this->customParameters= preg_replace ("/^.* o /", "", $this->gotoKernelParameters);
63     } else {
64       $this->customParameters= "";
65     }
67     /* Prepare Shares */
68     if((isset($this->attrs['gotoShare']))&&(is_array($this->attrs['gotoShare']))){
69       unset($this->attrs['gotoShare']['count']);
70       foreach($this->attrs['gotoShare'] as $share){
71         $tmp = $tmp2 = array();
72         $tmp = split("\|",$share);
73         $tmp2['server']      =$tmp[0];
74         $tmp2['name']        =$tmp[1];
75         $tmp2['mountPoint']  =$tmp[2];
76         $this->gotoShares[$tmp[1]."|".$tmp[0]]=$tmp2;
77       }
78     }
80     $this->gotoShareSelections= $config->getShareList(true);
81     $this->gotoAvailableShares= $config->getShareList(false);
83     $this->orig_dn= $this->dn;
84   }
86   function execute()
87   {
88         /* Call parent execute */
89         plugin::execute();
91     /* Do we need to flip is_account state? */
92     if (isset($_POST['modify_state'])){
93       $this->is_account= !$this->is_account;
94     }
96     /* Do we represent a valid terminal? */
97     if (!$this->is_account && $this->parent == NULL){
98       $display= "<img alt=\"\" src=\"images/stop.png\" align=middle>&nbsp;<b>".
99         _("This 'dn' has no terminal features.")."</b>";
100       return ($display);
101     }
103     /* Add module */
104     if (isset ($_POST['add_module'])){
105       if ($_POST['module'] != "" && chkacl ($this->acl, "gotoModule") == ""){
106         $this->add_list ($this->gotoModules, $_POST['module']);
107       }
108     }
110     /* Delete module */
111     if (isset ($_POST['delete_module'])){
112       if (count($_POST['modules_list']) && chkacl ($this->acl, "gotoModule") == ""){
113         $this->del_list ($this->gotoModules, $_POST['modules_list']);
114       }
115     }
117     /* Show main page */
118     $smarty= get_smarty();
121        /* In this section server shares will be defined
122      * A user can select one of the given shares and a mount point
123      *  and attach this combination to his setup.
124      */
125     $smarty->assign("gotoShareSelections",    $this->gotoShareSelections);
126     $smarty->assign("gotoShareSelectionKeys", array_flip($this->gotoShareSelections));
128     /* if $_POST['gotoShareAdd'] is set, we will try to add a new entry
129      * This entry will be, a combination of mountPoint and sharedefinitions
130      */
131     if(isset($_POST['gotoShareAdd'])){
132       /* We assign a share to this user, if we don't know where to mount the share */
133       if((!isset($_POST['gotoShareMountPoint']))||(empty($_POST['gotoShareMountPoint']))||(preg_match("/[\|]/i",$_POST['gotoShareMountPoint']))){
134         print_red(_("You must specify a valid mount point."));
135       }else{
136         $a_share = $this->gotoAvailableShares[$_POST['gotoShareSelection']];
137         $s_mount = $_POST['gotoShareMountPoint'];
138         /* Preparing the new assignment */
139         $this->gotoShares[$a_share['name']."|".$a_share['server']]=$a_share;
140         $this->gotoShares[$a_share['name']."|".$a_share['server']]['mountPoint']=$s_mount;
141       }
142     }
144     /* if the Post  gotoShareDel is set, someone asked GOsa to delete the selected entry (if there is one selected)
145      * If there is no defined share selected, we will abort the deletion without any message
146      */
147     if((isset($_POST['gotoShareDel']))&&(isset($_POST['gotoShare']))){
148       unset($this->gotoShares[$_POST['gotoShare']]);
149     }
151     $smarty->assign("gotoShares",$this->printOutAssignedShares());
152     $smarty->assign("gotoShareKeys",array_flip($this->printOutAssignedShares()));
156     /* Arrays */
157     $smarty->assign("ldapservers", $this->config->data['SERVERS']['LDAP']);
158     $smarty->assign("gotoLdapServer_select", $this->gotoLdapServer);
159     $smarty->assign("gotoLdapServerACL", chkacl($this->acl, "gotoLdapServer"));
160     $smarty->assign("gotoShareACL", chkacl($this->acl, "gotoShareACL"));
161     foreach (array("gotoModules" ) as $val){
162       $smarty->assign("$val", $this->$val);
163     }
165     /* Values */
166     foreach(array("gotoBootKernel", "customParameters") as $val){
167       $smarty->assign($val, $this->$val);
168       $smarty->assign($val."ACL", chkacl($this->acl, $val));
169     }
171     /* Radio button group */
172     if (preg_match("/G/", $this->bootmode)) {
173       $smarty->assign("graphicalbootup", "checked");
174     } else {
175       $smarty->assign("graphicalbootup", "");
176     }
177     if (preg_match("/T/", $this->bootmode)) {
178       $smarty->assign("textbootup", "checked");
179     } else {
180       $smarty->assign("textbootup", "");
181     }
182     if (preg_match("/D/", $this->bootmode)) {
183       $smarty->assign("debugbootup", "checked");
184     } else {
185       $smarty->assign("debugbootup", "");
186     }
188     /* ACL's */
189     foreach (array("gotoKernelParameters", "gotoModules") as $value){
190       $smarty->assign($value."ACL", chkacl($this->acl, "$value"));
191     }
193     /* Show main page */
194     return($smarty->fetch (get_template_path('terminalStartup.tpl', TRUE)));
195   }
197   function remove_from_parent()
198   {
199     $ldap= $this->config->get_ldap_link();
200     $ldap->rmdir($this->dn);
201     show_ldap_error($ldap->get_error());
202     $this->handle_post_events("remove");
203   }
206   /* Save data to object */
207   function save_object()
208   {
209     plugin::save_object();
211     /* Save group radio buttons */
212     if (chkacl ($this->acl, "bootmode") == "" && isset($_POST["bootmode"])){
213       $this->bootmode= $_POST["bootmode"];
214     }
216     /* Save kernel parameters */
217     if (chkacl ($this->acl, "gotoKernelParameters") == "" && isset($_POST["customParameters"])){
218       $this->customParameters= $_POST["customParameters"];
219     }
220   }
223   /* Save to LDAP */
224   function save()
225   {
226     /* Find proper terminal path for tftp configuration
227        FIXME: This is suboptimal when the default has changed to
228        another location! */
229     if ($this->gotoTerminalPath == "default"){
230       $ldap= $this->config->get_ldap_link();
232       /* Strip relevant part from dn, keep trailing ',' */
233       $tmp= preg_replace("/^cn=[^,]+,ou=terminals,ou=systems,/i", "", $this->dn);
234       $tmp= preg_replace("/".$this->config->current['BASE']."$/i", "", $tmp);
236       /* Walk from top to base and try to load default values for
237          'gotoTerminalPath'. Abort when an entry is found. */
238       while (TRUE){
239         $tmp= preg_replace ("/^[^,]+,/", "", $tmp);
241         $ldap->cat("cn=default,ou=terminals,ou=systems,$tmp".
242             $this->config->current['BASE']);
243         $attrs= $ldap->fetch();
244         if (isset($attrs['gotoTerminalPath'])){
245           $this->gotoTerminalPath= $attrs['gotoTerminalPath'][0];
246           break;
247         }
249         /* Nothing left? */
250         if ($tmp == ""){
251           break;
252         }
253       }
254     }
256     /* Add semi automatic values */
257     // FIXME: LDAP Server may not be set here...
258     $this->gotoKernelParameters= "root=/dev/nfs nfsroot=".
259       $this->gotoTerminalPath.
260       ",ro,hard,nolock,fg,rsize=8192 ".
261       "ip=::::::dhcp LDAP=".$this->gotoLdapServer;
263     switch ($this->bootmode){
264       case "D":
265         $this->gotoKernelParameters.= " debug";
266       break;
267       case "G":
268         $this->gotoKernelParameters.= " splash=silent";
269       break;
270     }
271     if ($this->customParameters != ""){
272       $this->gotoKernelParameters.= " o ".$this->customParameters;
273     }
275     plugin::save();
277     /* Add missing arrays */
278     foreach (array("gotoModules") as $val){
279       if (isset ($this->$val) && count ($this->$val) != 0){
280     
281         $this->attrs["$val"]= array_unique($this->$val);
282       }
283       if(!isset($this->attrs["$val"])) $this->attrs["$val"]=array();
284     }
286     /* Strip out 'default' values */
287     if ($this->attrs['gotoLdapServer'] == "default"){
288       unset ($this->attrs['gotoLdapServer']);
289     }
291      /* prepare share settings */
292     $tmp = array();
293     foreach($this->gotoShares as $name => $settings){
294       $tmp2 = split("\|",$name);
295       $name = $tmp2[0];
296       $tmp[] = $settings['server']."|".$name."|".$settings['mountPoint'];
297     }
298     $this->attrs['gotoShare']=$tmp;
300     /* Write back to ldap */
301     $ldap= $this->config->get_ldap_link();
302     $ldap->cd($this->dn);
303     $ldap->modify($this->attrs);
304     show_ldap_error($ldap->get_error());
305     $this->handle_post_events("modify");
306   }
308   /* Add value to array, check if unique */
309   function add_list (&$array, $value)
310   {
311     if ($value != ""){
312       $array[]= $value;
313       sort($array);
314       array_unique ($array);
315     }
316   }
319   /* Delete value to array, check if unique */
320   function del_list (&$array, $list)
321   {
322     $tmp= array();
323     foreach ($array as $mod){
324       if (!in_array($mod, $list)){
325         $tmp[]= $mod;
326       }
327     }
328     $array= $tmp;
329   }
331    /* Generate ListBox frindly output for the defined shares
332    * Possibly Add or remove an attribute here,
333    */
334   function printOutAssignedShares()
335   {
336     $a_return = array();
337     if(is_array($this->gotoShares)){
338       foreach($this->gotoShares as $share){
339         $a_return[$share['name']."|".$share['server']]= $share['name']." [".$share['server']."]";
340       }
341     }
342     return($a_return);
343   }
348 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
349 ?>