Code

Removed uid check
[gosa.git] / plugins / personal / environment / class_environment.inc
1 <?php
3 class environment extends plugin
4 {
5   /* CLI vars */
6   var $cli_summary          = "Manage server basic objects";
7   var $cli_description      = "Some longer text\nfor help";
8   var $cli_parameters       = array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
10   /* attribute list for save action */
11   var $ignore_account       = FALSE;
12   var $plHeadline           = "Environment";
13   var $plDescription        = "This does something";
14   var $dialog               = false;    // Indicates that we are currently editing in an seperate dialog
15   
16   var $in_dialog            = false;
17   var $uid                  = "";
19   var $is_group             = false;
20   
21   /* Attribute definition
22    */
24   /* profile management */
25   var $useProfile         = false;  // Specifies if we want to use a Server 
26   var $gotoProfileServer  = "";     // Specifies the selected profile server
27   var $gotoProfileServers = array();// Specifies all available and selectable servers
28   var $gotoProfileFlags   = "";     // Flags enabled  ? only used to set ACL and save 
29   var $gotoProfileFlag_C  = "";     // Flag is set to C if we have the profile caching fucntion enabled 
30   
31   var $gotoXResolution    = "1024x768";     // The selected resolution eg: 1024x768
32   var $gotoXResolutions   = array();// Contains all available resolutions for this account
33   var $gotoProfileFlag_L  = "";     // Flag is set to L to enable runtime resolution change 
34   var $gotoProfileQuota   = "";     // User Quota Settings
36   /* Logon script section*/
37   var $gotoLogonScripts   = array();// Contains all available Logon Scripts  
38   var $gotoLogonScript    = "";     // The selected Logon Script
40   /* Printer */
41   var $gotoPrinter        = array();// All available Printer, with their configurations
42   var $gotoPrinterSel     = "";     //  The selected Printer
44   /* Share */
45   var $gotoShares         = array();// Current Share Options
46   var $gotoShare          = "";     // currently selected Share Option
47   var $gotoShareSelections= array();// Available Shares for this account in Listbox format
48   var $gotoAvailableShares= array();// Available Shares for this account
49   
50   /* Kiosk profile */
51   var $gotoKioskProfile   = "none";     // The selected Kiosk Profile
52   var $gotoKioskProfiles  = array();// All available Kiosk profiles
53   VAR $newKioskProfiles   = array();
55   /* Hotplug Devices */
56   var $gotoHotplugDevice  = "";     // Selected hotplug
57   var $gotoHotplugDevices = array();// Already configured hotplug devices 
60   /* general settings */
61   // Sets the attributes which will kept on page reload, which will be saved, ...
62   var $attributes         = array("uid","gotoProfileServer","gotoProfileFlags",
63                                     "gotoXResolution","gotoProfileQuota",
64                                     "gotoLogonScripts","gotoLogonScript",
65                                     "gotoPrinter",
66                                     "gotoShares","gotoShare",
67                                     "gotoKioskProfile","gotoKioskProfiles",
68                                     "gotoHotplugDevice");
69   var $objectclasses      = array("gotoEnvironment"); // Specifies the objectClass which contains the attributes edited here 
70   var $cn;
72   function environment ($config, $dn= NULL)
73   {
74     plugin::plugin ($config, $dn);
76    
77     /* Check : Are we currently editing a group or user dialog */
78     if((isset($this->attrs['cn'][0]))&&(!isset($this->attrs['uid'][0]))){
79       $suffix="Group";
80       $this->uid          = $this->attrs['cn'][0];
81       $this->attrs['uid'] = $this->attrs['cn'][0];
82     }else{
83       $suffix="User";
84     }
86     $this->gotoKioskProfile= preg_replace("/^.*\//i","",$this->gotoKioskProfile);
88     /* Get all Printer assignments */
89     $ldap = $this->config->get_ldap_link();
90     $ldap->cd($this->config->current['BASE']);
91     $ldap->search("(&(objectClass=gotoPrinter)(goto".$suffix."Printer=".$this->uid."))",array("*"));
92     while($printer = $ldap->fetch()){
93       $this->gotoPrinter[$printer['cn'][0]]=$printer;
94       $this->gotoPrinter[$printer['cn'][0]]['mode']="user";
95     }
96     $ldap->search("(&(objectClass=gotoPrinter)(goto".$suffix."AdminPrinter=".$this->uid."))",array("*"));
97     while($printer = $ldap->fetch()){
98       $this->gotoPrinter[$printer['cn'][0]]=$printer;
99       $this->gotoPrinter[$printer['cn'][0]]['mode']="admin";
100     }
101   
102     /* prepare hotplugs */
103     if((isset($this->attrs['gotoHotplugDevice']))&&(is_array($this->attrs['gotoHotplugDevice']))){
104       unset($this->attrs['gotoHotplugDevice']['count']);
105       foreach($this->attrs['gotoHotplugDevice'] as $device){
106         $tmp = $tmp2 = array();
107         $tmp = split("\|",$device);
108         $tmp2['name']        = $tmp[0]; 
109         $tmp2['description'] = $tmp[1]; 
110         $tmp2['id']          = $tmp[2]; 
111         $this->gotoHotplugDevices[$tmp[0]]=$tmp2;
112       }
113     }
114     
115     /* prepare LogonScripts */
116     if((isset($this->attrs['gotoLogonScript']))&&(is_array($this->attrs['gotoLogonScript']))){
117       unset($this->attrs['gotoLogonScript']['count']);
118       foreach($this->attrs['gotoLogonScript'] as $device){
119         $tmp = $tmp2 = array();
120         $tmp = split("\|",$device);
121         $tmp2['LogonName']        = $tmp[0]; 
122         $tmp2['LogonPriority']    = $tmp[2]; 
123         if(preg_match("/O/i",$tmp[1])){
124           $tmp2['LogonOverload'] = "O";
125         }else{
126           $tmp2['LogonOverload'] = "";
127         }
128         if(preg_match("/L/i",$tmp[1])){
129           $tmp2['LogonLast'] = "L";
130         }else{
131           $tmp2['LogonLast'] = "";
132         }
133         $tmp2['LogonData']        = base64_decode($tmp[3]); 
134         $tmp2['LogonDescription'] = $tmp[4];
135         $this->gotoLogonScripts[$tmp[0]]=$tmp2;
136       }
137     }
138     
139     /* Prepare Shares */
140     if((isset($this->attrs['gotoShare']))&&(is_array($this->attrs['gotoShare']))){
141       unset($this->attrs['gotoShare']['count']);
142       foreach($this->attrs['gotoShare'] as $share){
143         $tmp = $tmp2 = array();
144         $tmp = split("\|",$share);
145         $tmp2['server']      =$tmp[0];
146         $tmp2['name']        =$tmp[1];
147         $tmp2['mountPoint']  =$tmp[2];
148         if(isset($tmp[3])){
149           $tmp2['OtherStuff']  =$tmp[3];
150         }else{
151           $tmp2['OtherStuff']  ="";
152         }
153         $this->gotoShares[$tmp[1]."|".$tmp[0]]=$tmp2;
154       }
155     }
157     for($i = 0 ; $i < strlen($this->gotoProfileFlags) ; $i ++){
158       $chr = $this->gotoProfileFlags[$i];
159       $name = "gotoProfileFlag_".$chr;
160       $this->$name=$chr;
161     }
163     if((!empty($this->gotoProfileServer))||($this->gotoProfileFlag_C=="C")){
164       $this->useProfile = true;
165     }else{
166       $this->useProfile = false;
167     }
169     /* Set to group environment if we editing a group */
170     if(!isset($this->parent)){
171       $this->is_group = true;
172     }
174     $this->gotoProfileServers= $config->getShareServerList() ;
175     $this->gotoShareSelections= $config->getShareList(true);
176     $this->gotoAvailableShares= $config->getShareList(false);  
178   }
180   function execute()
181   {
182         /* Call parent execute */
183         plugin::execute();
185   /* Fill templating stuff */
186   $smarty= get_smarty();
187   $display= "";
189   /* Prepare all variables for smarty */
190   foreach($this->attributes as $s_attr){
191     /* Set value*/
192     $smarty->assign($s_attr,$this->$s_attr);
194     /* Set checkbox state*/
195     if(empty($this->$s_attr)){
196       $smarty->assign($s_attr."CHK","");
197     }else{
198       $smarty->assign($s_attr."CHK"," checked ");
199     }
201     /* Prepare ACL settings*/
202     if(chkacl($this->acl,$s_attr)=="") {
203       $smarty->assign($s_attr."ACL","");
204     }else{
205       $smarty->assign($s_attr."ACL"," disabled ");
206     }
208   }
210   /* Is accout enabled | are we editing from usermenu or admin menu 
211      All these tab management is done here
212    */
214   /* Working from Usermenu an the Account is currently disbled
215      * this->parent :  is only set if we are working in a list of tabs
216      * is_account   :  is only true if the needed objectClass is given
217     */
218     if((!isset($this->parent))&&(!$this->is_account)){
219       /* We are currently editing this tab from usermenu, but this account is not enabled */
220       $smarty->assign("is_account",$this->is_account);
221       /* Load template */
222       $display .= $smarty->fetch(get_template_path('environment.tpl', TRUE));
223       /* Avoid the "You are currently editing ...." message when you leave this tab */
224       $display .= back_to_main(); 
225       /* Display our message to the user */
226       return $display;
227     
229     /* We are currently editing from group tabs, because 
230      * $this->parent is set
231      * posixAccount is not set, so we are not in usertabs.
232      */
233     }elseif((isset($this->parent))&&(!isset($this->parent->by_object['posixAccount']))){
234       $smarty->assign("is_account","true");
235       $this->is_group     = true;
236       $this->uid          = $this->cn;
237       $this->attrs['uid'] = $this->cn;
239       /* Change state if needed */
240       if (isset($_POST['modify_state'])){
241         $this->is_account= !$this->is_account;
242       }
244       /* Group Dialog with enabled environment options */
245       if ($this->is_account){
246         $display= $this->show_header(_("Remove environment extension"),
247             _("Environment extension enabled. You can disable it by clicking below."));
248       } else {
249   
250       /* Environment is disabled 
251          If theres is no posixAccount enabled, you won't be able to enable 
252          environment extensions
253        */
254         if((isset($this->attrs['objectClass']))&&((in_array("posixAccount",$this->attrs['objectClass'])))){
255           // 4. There is a PosixAccount
256           $display= $this->show_header(_("Add environment extension"),
257               _("Environment extension disabled. You can enable it by clicking below."));
258           return $display;
259         }else{
260           // 4. There is no PosixAccount
261           $display= $this->show_header(_("Add environment extension"),
262               _("Environment extension disabled. You have to setup a posix account before you can enable this feature."));
263           return $display;
264         }
265       }
266     }else{
267       /* Editing from Usermenu 
268        *  Tell smarty that this accoutn is enabled 
269        */
270       $smarty->assign("is_account","true");
272       $this->is_group = false;
274       /* Do we need to flip is_account state? */
275       if (isset($_POST['modify_state'])){
276         $this->is_account= !$this->is_account;
277       }
279       if(isset($this->parent)){
280         // 3. Account enabled . Editing from adminmenu
281         if ($this->is_account){
282           $display= $this->show_header(_("Remove environment extension"),
283               _("Environment extension enabled. You can disable it by clicking below."));
284         } else {
285           if((isset($this->attrs['objectClass']))
286                 &&((in_array("posixAccount",$this->attrs['objectClass'])))
287                   ||($this->parent->by_object['posixAccount']->is_account==true)){
288             // 4. There is a PosixAccount
289             $display= $this->show_header(_("Add environment extension"),
290                 _("Environment extension disabled. You can enable it by clicking below."));
291             return $display;
292           }else{
293             // 4. There is a PosixAccount
294             $display= $this->show_header(_("Add environment extension"),
295                 _("Environment extension disabled. You have to setup a posix account before you can enable this feature."),TRUE,TRUE);
296             return $display;
297           }
298         }
299       }
300     }
301     /* Account is Account : is_accounbt=true.
302      * Else we won't reach this. 
303      */
304    
305     /* Prepare all variables for smarty */
306     foreach($this->attributes as $s_attr){
307       /* Set value*/
308       $smarty->assign($s_attr,$this->$s_attr);
309      
310       /* Set checkbox state*/
311       if(empty($this->$s_attr)){
312         $smarty->assign($s_attr."CHK","");
313       }else{
314         $smarty->assign($s_attr."CHK"," checked ");
315       }
316     
317       /* Prepare ACL settings*/
318       if(chkacl($this->acl,$s_attr)=="") {
319         $smarty->assign($s_attr."ACL","");
320       }else{
321         $smarty->assign($s_attr."ACL"," disabled ");
322       }
323  
324     }
326     foreach(array("gotoHotplugDevice","gotoPrinterSel") as $s_attr){
327       if(chkacl($this->acl,$s_attr)=="") {
328         $smarty->assign($s_attr."ACL","");
329       }else{
330         $smarty->assign($s_attr."ACL"," disabled ");
331       }
332     }
333  
334     $smarty->assign("useProfileACL","");
335     if($this->acl != "#none#"){
336       $smarty->assign("useProfileACL","");
337     }else{
338       $smarty->assign("gotoProfileFlag_CACL"," disabled ");
339       $smarty->assign("useProfileACL","disabled");
340       $smarty->assign("gotoProfileServer"," disabled ");
341     }
343     /* HANDLE Profile Settings here 
344      * Assign available Quota and resolution settings
345      * Get all available profile server
346      * Get cache checkbox
347      * Assign this all to Smarty 
348      */
350     if(empty($this->gotoProfileFlag_L)){
351       $smarty->assign("gotoProfileFlag_LCHK"," ");
352     }else{
353       $smarty->assign("gotoProfileFlag_LCHK"," checked ");
354     }
356     if(empty($this->gotoProfileFlag_C)){
357       $smarty->assign("gotoProfileFlag_CCHK"," ");
358     }else{
359       $smarty->assign("gotoProfileFlag_CCHK"," checked ");
360     }
362     if(empty($this->useProfile)){
363       $smarty->assign("gotoProfileACL","disabled"); 
364       $smarty->assign("useProfileCHK",""); 
365     }else{
366       $smarty->assign("gotoProfileACL",""); 
367       $smarty->assign("useProfileCHK"," checked "); 
368     }
370     $this->gotoXResolutions = array("640x480","800x600","1024x768","1280x768","1280x1024");
372     $smarty->assign("gotoXResolutions",$this->gotoXResolutions);
373     $smarty->assign("gotoProfileServers",$this->gotoProfileServers);
374     if(!is_array($this->gotoProfileServers)){
375       $this->gotoProfileServers =array();
376     }
377     $smarty->assign("gotoProfileServerKeys",array_flip($this->gotoProfileServers));
379     /* Handle kiosk profiles 
380      * Read available from filesystem
381      * Open management if post is transmitted
382      */
384     /* Save */
385     if(isset($_POST['KioskClose'])){
386       $this->newKioskProfiles = array_merge($this->newKioskProfiles,$this->dialog->save());
387   
388       unset($this->dialog);
389       $this->dialog=NULL;
390       $this->is_dialog = false;
391     }
392     $tmp = new kioskManagementDialog($this->config,$this->dn);
393     $list = $tmp->getKioskProfiles($this->newKioskProfiles);
395     $list['none']=_("None");
397     $list = array_reverse($list);
399     /* Reassign help class */
400     $_SESSION['current_class_for_help'] = get_class($this);
401  
402     /* Open Management Dialog */
403     if(isset($_POST['KioskManagementDialog'])){
404       $this->dialog = new kioskManagementDialog($this->config,$this->dn,$this->newKioskProfiles); 
405       $this->dialog->parent= $this;
406       $this->is_dialog = true;
407     }
409     $smarty->assign("gotoKioskProfiles",$list);
410     $smarty->assign("gotoKioskProfileKeys",array_flip($list));
412     /* Logonscript Management
413      * Get available LogonScripts (possibly grey out (or mark) these script that are defined for the group) 
414      * Perform add Delete edit Posts 
415      */
417     /* Dialog Save */
418     if(isset($_POST['LogonSave'])){
419       $this->dialog->save_object();
420       if(count($this->dialog->check())!=0){
421         foreach($this->dialog->check() as $msg){
422           print_red($msg);
423         }
424       }else{
425         $tmp = $this->dialog->save();
426         unset($this->dialog);
427         $this->dialog=NULL;
428         $this->is_dialog=false;
429         $this->gotoLogonScripts[$tmp['LogonName']]=$tmp; 
430       }
431     }
432     
433     /* Dialog Quit without saving */
434     if(isset($_POST['LogonCancel'])){
435       $this->is_dialog= false;
436       unset($this->dialog);
437       $this->dialog= NULL;
438     }
439    
440     /* Check Edit Del New Posts for a selected LogonScript */ 
441     if(isset($_POST['gotoLogonScriptNew'])||isset($_POST['gotoLogonScriptEdit'])||isset($_POST['gotoLogonScriptDel'])){
443       /* New Logon Script: Open an edit dialog, we don't need a $_POST['gotoLogonScript'] here.
444        * In this case we create a new Logon Script.
445        */
446       if(isset($_POST['gotoLogonScriptNew'])){
447         $this->is_dialog = true;
448         $this->dialog = new logonManagementDialog($this->config,$this->dn);
449       }
451       /* If we receive a Delete request and there is a Script selected in the selectbox, delete this one.
452        * We only can delete if there is an entry selected.
453        */
454       if((isset($_POST['gotoLogonScriptDel']))&&(isset($_POST['gotoLogonScript']))){
455         unset($this->gotoLogonScripts[$_POST['gotoLogonScript']]);
456       }
457       
458       /* In this case we want to edit an existing entry, we open a new Dialog to allow editing.
459        * There must be an entry selected to perform edit request.
460        */
461       if((isset($_POST['gotoLogonScriptEdit']))&&(isset($_POST['gotoLogonScript']))){
462         $is_entry = $this->gotoLogonScripts[$_POST['gotoLogonScript']];
463         $this->is_dialog = true;
464         $this->dialog = new logonManagementDialog($this->config,$this->dn,$is_entry);
465       }
466     }
467      
468     /* Append List to smarty*/
469     $smarty->assign("gotoLogonScripts",   $this->printOutLogonScripts());
470     $smarty->assign("gotoLogonScriptKeys",array_flip($this->printOutLogonScripts()));
472     /* In this section server shares will be defined 
473      * A user can select one of the given shares and a mount point
474      *  and attach this combination to his setup.
475      */
476     
477     $smarty->assign("gotoShareSelections",    $this->gotoShareSelections);
478     if(!is_array($this->gotoShareSelections)){
479       print $this->gotoShareSelections;
480       $this->gotoShareSelections = array();
481     }
482     $smarty->assign("gotoShareSelectionKeys", array_flip($this->gotoShareSelections));
484     /* if $_POST['gotoShareAdd'] is set, we will try to add a new entry 
485      * This entry will be, a combination of mountPoint and sharedefinitions 
486      */
487     if(isset($_POST['gotoShareAdd'])){
488       /* We assign a share to this user, if we don't know where to mount the share */
489       if((!isset($_POST['gotoShareMountPoint']))||(empty($_POST['gotoShareMountPoint']))||(preg_match("/[\|]/i",$_POST['gotoShareMountPoint']))){
490         print_red(_("You must specify a valid mount point."));
491       }elseif($_POST['gotoShareMountPoint'][0] !="/" ){
492         print_red(_("You must specify a valid mount point.")); 
493       }else{
494         $a_share = $this->gotoAvailableShares[$_POST['gotoShareSelection']];
495         $s_mount = $_POST['gotoShareMountPoint'];
496         /* Preparing the new assignment */ 
497         $this->gotoShares[$a_share['name']]=$a_share;
498         $this->gotoShares[$a_share['name']]['OtherStuff']="";
499         $this->gotoShares[$a_share['name']]['mountPoint']=$s_mount;
500       }
501     }  
503     /* if the Post  gotoShareDel is set, someone asked GOsa to delete the selected entry (if there is one selected)
504      * If there is no defined share selected, we will abort the deletion without any message 
505      */
506     if((isset($_POST['gotoShareDel']))&&(isset($_POST['gotoShare']))){
507       unset($this->gotoShares[$_POST['gotoShare']]);
508     }
510     $smarty->assign("gotoShares",$this->printOutAssignedShares());
511     $smarty->assign("gotoShareKeys",array_flip($this->printOutAssignedShares()));
513     /* Hotplug devices will be handled here 
514      * There are 3 possible methods for this feature
515      * Create a new Hotplug, A Dialog will open where you can specify some hotplug information
516      * Delete will erase an entry, the entry must be selcted in the ListBox first
517      * Editing an entry will open a dialog where the informations about the selcted entry can be changed
518      */
520     /* If there is a new entry wanted, open a new entry by initilising the dialog */
521     if(isset($_POST['gotoHotplugDeviceNew'])){
522       $this->dialog = new hotplugDialog($this->config,$this->dn);
523       $this->is_dialog = true;
524     }
526     /* We have to delete the selected hotplug from the list*/
527     if((isset($_POST['gotoHotplugDeviceDel']))&&(isset($_POST['gotoHotplugDevice']))){
528       unset($this->gotoHotplugDevices[$_POST['gotoHotplugDevice']]);
529     }
531     /* There are already defined hotplugs from other users we could use */
532     if(isset($_POST['gotoHotplugDeviceUse'])){
533       $this->dialog = new hotplugDialog($this->config,$this->dn,true);
534       $this->is_dialog = true;
535     }
537     /* Dialog Aborted */
538     if(isset($_POST['HotPlugCancel'])){
539       unset($this->dialog);
540       $this->dialog= NULL;
541       $this->is_dialog = false;
542     }
543  
544     /* Dialod saved */
545     if(isset($_POST['HotPlugSave'])){
546       $this->dialog->save_object();
547       if(count($this->dialog->check())!=0){
548         foreach($this->dialog->check() as $msg){
549           print_red($msg);
550         }
551       }else{
552         $this->dialog->save_object();
553         $a_tmp = $this->dialog->save();
554         if(is_array($a_tmp)){
555           $this->gotoHotplugDevices[$a_tmp['name']]= $a_tmp; 
556         }
557         unset($this->dialog);
558         $this->dialog= NULL;
559         $this->is_dialog = false;
560       }
561     }
562     
563     $smarty->assign("gotoHotplugDevices",$this->printOutHotPlugDevices());
564     $smarty->assign("gotoHotplugDeviceKeys",array_flip($this->printOutHotPlugDevices()));
565   
566     /* Printer Assignment will managed below 
567      * A printer can be assigned in two different ways and two different types
568      * There are 2 types of users assigned to a printer : user and admin
569      * They only differ in the member attribute they will be assigned to. user: gotoUserPrinter admin: gotoadminPrinter
570      * The different types of assigning a user are : 1 assigning a user to a printer 2. assigning a group to a printer
571      */ 
572     
573     /* First handle Add Post. Open a dialog that allows us to select a printer or two */ 
574     if(isset($_POST['gotoPrinterAdd'])){
575       $this->is_dialog=true;
576       $this->dialog = new selectPrinterDialog($this->config,$this->dn);
577     }
579     if(isset($_POST['PrinterCancel'])){
580         $this->is_dialog=false;
581         unset($this->dialog);
582         $this->dialog=NULL;
583     }
585     if(isset($_POST['PrinterSave'])){
586       if(count($this->dialog->check())!=0){
587         $tmp = $this->dialog->check();
588         foreach($tmp as $msg){
589           print_red($msg);
590         } 
591       }else{
592         $this->dialog->save_object();
593         $tmp = $this->dialog->save();
594         $tmp2= $this->dialog->getPrinter(true);
595         $this->gotoPrinter[$tmp]=$tmp2[$tmp];
596         $this->gotoPrinter[$tmp]['mode']="user";
597         $this->is_dialog=false;
598         unset($this->dialog);
599         $this->dialog   =NULL;
600       }
601     }
602   
603     if((isset($_POST['gotoPrinterDel']))&&(isset($_POST['gotoPrinterSel']))&&(!empty($_POST['gotoPrinterSel']))){
604       $printer = $_POST['gotoPrinterSel'];
605       unset($this->gotoPrinter[$printer]);
606     }
608     if((isset($_POST['gotoPrinterEdit']))&&(isset($_POST['gotoPrinterSel']))&&(!empty($_POST['gotoPrinterSel']))){
609       $printer = $_POST['gotoPrinterSel'];
610       if($this->gotoPrinter[$printer]['mode']=="user"){
611         $this->gotoPrinter[$printer]['mode']="admin";
612       }else{
613         $this->gotoPrinter[$printer]['mode']="user";
614       }
615     }
617     $smarty->assign("gotoPrinter",$this->printOutPrinterDevices());
618     $smarty->assign("gotoPrinterKeys",array_flip($this->printOutPrinterDevices()));
619  
620     /* General behavior */
621     if((isset($this->dialog))&&($this->dialog!=NULL)&&(!empty($this->dialog))){
622       $this->dialog->save_object();
623       return ($this->dialog->execute());
624     }
625     if($this->acl != "#none#"){
626       $smarty->assign("useProfileACL","");
627     }else{
628       $smarty->assign("gotoProfileFlag_CACL"," disabled ");
629       $smarty->assign("gotoProfileServerACL"," disabled ");
630     }
632     if(!$this->useProfile){
633       $smarty->assign("gotoProfileFlag_CACL"," disabled ");
634       $smarty->assign("gotoProfileServerACL"," disabled ");
635     }
637     /* Als smarty vars are set. Get smarty template and generate output */
638     $display.= $smarty->fetch(get_template_path('environment.tpl', TRUE,dirname(__FILE__)));
639     
640     return($display);
641   }
643   function remove_from_parent()
644   {
645     /* only if it was an account*/
646     if (!$this->initially_was_account){
647       return;
648     }
650     /* include global link_info */
651     $ldap= $this->config->get_ldap_link();
653     /* Remove and write to LDAP */
654     plugin::remove_from_parent();
656     /* Don't save our template variables */
657     $skip = array("uid",
658                   "gotoLogonScripts","gotoPrinter","gotoShares","gotoKioskProfiles","gotoHotplugDevices" );
659     /* Skip all these attributes */
660     foreach($skip as $del){
661       unset($this->attrs[$del]);
662     }
664     @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__,$this->attributes, "Save");
666     $ldap->cd($this->dn);
667     $ldap->modify($this->attrs);
669     show_ldap_error($ldap->get_error());
671     /* Optionally execute a command after we're done */
672     $this->handle_post_events("remove");
673   }
676   /* Save data to object */
677   function save_object()
678   {
679     /* Get all Posted vars 
680      * Setup checkboxes 
681      */
682    
683     
684  
685     if(isset($_POST['iamposted'])){
686       if(isset($_POST['useProfile'])){
687         $this->useProfile = $_POST['useProfile'];
688       }else{
689         $this->useProfile = true;
690       }
691       if(isset($_POST['gotoProfileFlag_C'])){
692         $this->gotoProfileFlag_C = $_POST['gotoProfileFlag_C'];
693       }else{
694         $this->gotoProfileFlag_C = false;
695       }
696       if(isset($_POST['gotoProfileFlag_L'])){
697         $this->gotoProfileFlag_L = $_POST['gotoProfileFlag_L'];
698       }else{
699         $this->gotoProfileFlag_L = false;
700       }
702       plugin::save_object();
703       foreach($this->attributes as $s_attr){
704         if(in_array($s_attr,array("gotoShares","gotoHotplugDevices","gotoPrinter","gotoLogonScripts","uid"))) continue;
705         if(isset($_POST[$s_attr])){
706           $this->$s_attr = $_POST[$s_attr];
707         }else{
708           $this->$s_attr = false;
709         }
710       }
711     }
712   }
715   /* Check supplied data */
716   function check()
717   {
718     $message= array();
719   
720     if(preg_match("/[^0-9]/",$this->gotoProfileQuota)) {
721       $message[]=_("Please set a valid profile quota size.");
722     } 
723     if(!isset($this->attrs['objectClass'])){
724       $this->attrs['objectClass']=array();
725     } 
726     if(!$this->is_group){
727       if((!((in_array("posixAccount",$this->attrs['objectClass']))||($this->parent->by_object['posixAccount']->is_account==true)))&&(!$this->is_group)){
728         $message[]=(_("You need to setup a valid posix extension in order to enable evironment features."));  
729       }
730     }
731     return ($message);
732   }
735   /* Save to LDAP */
736   function save()
737   {
738     plugin::save();
739     $ldap= $this->config->get_ldap_link();
741     $realyUsedAttrs= array();
744     $path = search_config($this->config->data,"environment", "KIOSKPATH"); 
745     /* Creating Kiosk Profiles */
746     foreach($this->newKioskProfiles as $file){
747       $contents = $file['contents'];
748       $fp = @fopen($path."/".$file['name'],"w");
749       if(!$fp){
750         print_red(_("Can't save new kiosk profiles, possibly permission denied for folder")." : ",$path);
751       }else{
752         fwrite($fp,$contents,strlen($contents));
753       }
754       @unlink($file['tmp_name']);
755     }
756  
757     /* Save already used objectClasses */
758     $ocs        = $this->attrs['objectClass'];
759     unset($ocs['count']);
760     $this->attrs = array();
761     $this->attrs['objectClass']= $ocs;
762     foreach($this->objectclasses as $objc){
763       if(!in_array($objc,$this->attrs['objectClass'])){
764         $this->attrs['objectClass'][]=$objc;
765       }
766     }
769     /* Save usersettings to Printer */
771     if(chkacl($this->acl,"gotoPrinter")!=""){
772       $this->gotoPrinter = array();
773     }  
774     
775     if($this->is_group){
776       $s_suffix = "Group";
777     }else{
778       $s_suffix = "User";
779     }
780   
782     /* 1. Search all printers that have our uid/cn as member 
783      * 2. Delete this uid/cn from every single entry and save it again.
784      * 2.1 There are different types of members: Users / Groups, this will be defined in $suffix
785      * 2.2 And each type has two modes, Admin (e.g. 'gotoUserAdminPrinter') and Normal 
786      */
787     $ldap->search("(&(objectClass=gotoPrinter)(|(goto".$s_suffix."Printer=".$this->uid.")(goto".$s_suffix."AdminPrinter=".$this->uid.")))",array("*"));
788     while($attr = $ldap->fetch()){
790       /* Walk trough all printers and check if our user id used, if so remove it.
791        * Later we will insert our uid at the right place.
792        */
794       /* Remove normal entries (User)*/
795       if(isset($attr['goto'.$s_suffix.'Printer'])) {
796         foreach($attr['goto'.$s_suffix.'Printer'] as $key => $user){
797           if($this->uid==$user){
798             unset($attr['goto'.$s_suffix.'Printer'][$key]);
799           }
800         }    
801       }
803       /* Remove administrational entries (Admin)*/
804       if(isset($attr['goto'.$s_suffix.'AdminPrinter'])){
805         foreach($attr['goto'.$s_suffix.'AdminPrinter'] as $key => $user){
806           if($this->uid==$user){
807             unset($attr['goto'.$s_suffix.'AdminPrinter'][$key]);
808           }
809         }    
810       }
812       /* Extract useable tags, to be able to save all changes 
813        */
814       $attrs_used = array();
815       foreach($attr as $key=>$val){
817         /* If index is numeric, skip it ...*/
818         if((!is_numeric($key))&&($key!="count")){
820           /* If entry contains 'count' remove it */
821           if(is_array($val)&&isset($val['count'])){
822             unset($val['count']);
823           }
824           $attrs_used[$key]=$val;
825         }
826       }
827       /* the result of cleaning the entry is 
828        *  to be able to directly save this again,
829        *  if all changes are made 
830        */
831       $attr= $attrs_used;
833 #fix : Id don't know why such an entry was set ... 
834       if(isset($attr['GOTOADMINPRINTER'])){
835         unset($attr['GOTOADMINPRINTER']);
836       }
838       /* Save changes */
839       $ldap->cd($attr['dn']);
840       unset($attr['dn']);
841       $ldap->modify($attr);
842       if($ldap->get_error()!="Success"){
843         print_red(_("Error while writing printer")." : ".$ldap->get_error());
844       }
845     }
847     /* All printers are cleaned, (our cn/uid removed) 
848      *  now we must add our uid / cn 
849      *  to the new configured printers.
850      */
851     foreach($this->gotoPrinter as $printer) {
852       $ldap->cd($printer['dn']);
853       $ldap->cat($printer['dn']);
854       $attrs= $ldap->fetch();
855       $attrs_used = array(); 
856       foreach($attrs as $key=>$val){
857         if((!is_numeric($key))&&($key!="count")){
858           if(is_array($val)&&isset($val['count'])){
859             unset($val['count']);
860           }
861           $attrs_used[$key]=$val;
862         }
863       }
864       /* $attrs contains all values 
865        * we need, to save the entry lateron 
866       */
867       $attrs= $attrs_used;
869       /* Depending on the type (User/Admin) 
870        *  switch these attributes, that makes it easier
871        */
872       if($printer['mode'] == "user"){
873         $attribute  = "goto".$s_suffix."Printer";
874         $attribute2 = "goto".$s_suffix."AdminPrinter";
875       }else{
876         $attribute  = "goto".$s_suffix."AdminPrinter";
877         $attribute2 = "goto".$s_suffix."Printer";
878       }
880       /* If this user is already assigned to $attribute2 
881        * delete user from $attribute2, to be albe to attach him to $attribute
882        * A user can't be admin and normal user for one printer
883        */
884       if(!isset($printer[$attribute2])){
885         $printer[$attribute2]=array();
886       }else{
887         if(in_array($this->uid,$printer[$attribute2])){ 
888           $tmp = array_flip($printer[$attribute2]);
889           unset($tmp[$this->uid]);
890           $attrs[$attribute2]=array_flip($tmp);
891         }
892         /* If Last entry removed, clear attribute*/
893         if(empty($attrs[$attribute2])){
894           $attrs[$attribute2]=array();
895         }
896       }
897     
898       /* Attach user to the $attribute, if he is'nt already attached
899        */
900       if(!isset($attrs[$attribute])){
901         $attrs[$attribute]=array($this->uid);
902       }else{
903         unset($attrs[$attribute]['count']);
904         if(!in_array($this->uid,$attrs[$attribute])){
905           $attrs[$attribute][]=$this->uid;
906         }
907       }
909       $ldap->cd($attrs['dn']);
910       unset($attrs['dn']);
911       $ldap->modify($attrs);
912       if($ldap->get_error()!="Success"){
913         print_red(_("Error while writing printer settings")." : ".$ldap->get_error());
914       }
915     }
916   
917     /* Prepare HotPlug devices */
918     $this->attrs['gotoHotplugDevice'] = array();
919     foreach($this->gotoHotplugDevices as $name => $device){
920       $this->attrs['gotoHotplugDevice'][] = $device['name']."|".$device['description']."|".$device['id'];
921     }
923     /* Prepare LogonScripts */
924     $this->attrs['gotoLogonScript'] = array();
925     foreach($this->gotoLogonScripts as $name => $script){
926       $this->attrs['gotoLogonScript'][] =   $script['LogonName']."|".
927                                             $script['LogonOverload'].$script['LogonLast']."|".
928                                             $script['LogonPriority']."|".
929                                             base64_encode($script['LogonData'])."|".
930                                             $script['LogonDescription'];
931     }
933     /* Prepare Shares */
934     $this->attrs['gotoShare']=array();
935     foreach($this->gotoShares as $name => $share){
936       $this->attrs['gotoShare'][] =$share['server']."|".$share['name']."|".$share['mountPoint']."|".$share['OtherStuff'];
937     }
939     if((!empty($this->gotoKioskProfile))&&($this->gotoKioskProfile != "none")){
940       if(preg_match("/https/i",$_SERVER['HTTP_REFERER'])){
941         $method="https://";
942       }else{
943         $method="http://";
944       }
946       $str = $method.str_replace("//","/",$_SERVER['SERVER_NAME']."/kiosk/");
947       $this->attrs['gotoKioskProfile']= $str.$this->gotoKioskProfile;
948     }else{
949       $this->attrs['gotoKioskProfile']= array();
950     }
952     $saveThis = array("gotoProfileQuota","gotoXResolution","gotoProfileServer");
953   
954     foreach($saveThis as $tosave){
955       if(!empty($this->$tosave)){
956         $this->attrs[$tosave]=$this->$tosave;
957       }else{
958         $this->attrs[$tosave]=array();
959       }
960     }
961  
962     /* Prepare Flags */
963     $this->attrs['gotoProfileFlags'] = array($this->gotoProfileFlag_C.$this->gotoProfileFlag_L);
964     if(empty($this->attrs['gotoProfileFlags'][0])){
965       $this->attrs['gotoProfileFlags']=array();
966       }
968     if($this->useProfile == false){
969       $this->attrs['gotoProfileFlags'] = preg_replace("/C/i","",$this->attrs['gotoProfileFlags']);
970       $this->attrs['gotoProfileServer']= array(); 
971     }
973     foreach($this->attributes as $s_attr){
974       if(chkacl($this->acl,$s_attr)!="") {
975         if(isset($this->attrs[$s_attr])){
976           unset($this->attrs[$s_attr]);
977         }
978       }
979     }
981     $ldap->cat ($this->dn);
982     if ($ldap->fetch()){
983       $mode= "modify";
984     } else {
985       $mode= "add";
986       $ldap->cd($this->config->current['BASE']);
987       $ldap->create_missing_trees(preg_replace('/^[^,]+,/', '', $this->dn));
988     }
990     $ldap->cd($this->dn);
991     $ldap->$mode($this->attrs);
992     if($ldap->get_error()!="Success"){
993       print_red($ldap->get_error());
994     }
995     $this->handle_post_events($mode);
996   }
998 /* Generate ListBox frindly output for the defined shares 
999  * Possibly Add or remove an attribute here, 
1000  */
1001   function printOutAssignedShares()
1002   {
1003     $a_return = array();
1004     if(is_array($this->gotoShares)){
1005       foreach($this->gotoShares as $share){
1006         if (!preg_match('/^!/', $share['server'])){
1007           $a_return[$share['name']."|".$share['server']]= $share['server']."://".$share['name']." on ".$share['mountPoint'];
1008         }
1009       }
1010     }
1011     return($a_return);
1012   }
1014 /* Generate ListBox frindly output for the definedhotplugs 
1015  * Possibly Add or remove an attribute here,
1016  */
1017 function printOutHotPlugDevices()
1018   {
1019     $a_return= array();
1020     if(is_array($this->gotoHotplugDevices)){
1021       foreach($this->gotoHotplugDevices as $key=>$device){
1022         $a_return[$key] = $device['name']." - ".$device['id'];
1023       }
1024     }
1025     return($a_return);
1026   }
1028   /* Generates ListBox frienly output of used printer devices 
1029    * Append ' - admin' if printer is used in admin mode
1030    */
1031   function printOutPrinterDevices()
1032   {
1033     $a_return = array();
1034     if(is_array($this->gotoPrinter)){
1035       foreach($this->gotoPrinter as $printer){
1036         if($printer['mode'] == "admin"){
1037           $a_return[$printer['cn'][0]]= $printer['cn'][0]." - "._("Admin");
1038         }else{
1039           $a_return[$printer['cn'][0]]= $printer['cn'][0]; 
1040         }
1041       }
1042     }
1043     return($a_return);
1044   }
1046   /* Generates ListBox frienly output of used logonscripts 
1047    */
1048   function printOutLogonScripts()
1049   {
1050     $a_return = array();
1051     if(is_array($this->gotoLogonScripts)){
1052       foreach($this->gotoLogonScripts as $script){
1053         $a_return[$script['LogonName']]= $script['LogonPriority']." - ".$script['LogonName']; 
1054       }
1055     }
1056     return($a_return);
1057   }
1063 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
1064 ?>