Code

b33b32fdb07eb26a40e5c61c2a00b8996015a71a
[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['Username']  =$tmp[3];
150         }else{
151           $tmp2['Username']  ="";
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->parent->by_object['group']))||(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)){
281         // 3. Account enabled . Editing from adminmenu
282         if ($this->is_account){
283           $display= $this->show_header(_("Remove environment extension"),
284               _("Environment extension enabled. You can disable it by clicking below."));
285         } else {
287           if($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     }
334     if(empty($this->useProfile)){
335       $smarty->assign("gotoProfileACL","disabled");
336       $smarty->assign("useProfileCHK","");
337     }else{
338       $smarty->assign("gotoProfileACL","");
339       $smarty->assign("useProfileCHK"," checked ");
340     }
342  
343     $smarty->assign("useProfileACL","");
344     if($this->acl != "#none#"){
345       $smarty->assign("useProfileACL","");
346       $smarty->assign("gotoProfileFlag_CACL"," ");
347       $smarty->assign("gotoProfileQuotaACL"," ");
348     }else{
349       $smarty->assign("gotoProfileFlag_CACL"," disabled ");
350       $smarty->assign("useProfileACL","disabled");
351       $smarty->assign("gotoProfileServer"," disabled ");
352       $smarty->assign("gotoProfileQuotaACL"," disabled ");
353     }
355     /* HANDLE Profile Settings here 
356      * Assign available Quota and resolution settings
357      * Get all available profile server
358      * Get cache checkbox
359      * Assign this all to Smarty 
360      */
362     if(empty($this->gotoProfileFlag_L)){
363       $smarty->assign("gotoProfileFlag_LCHK"," ");
364     }else{
365       $smarty->assign("gotoProfileFlag_LCHK"," checked ");
366     }
368     if(empty($this->gotoProfileFlag_C)){
369       $smarty->assign("gotoProfileFlag_CCHK"," ");
370     }else{
371       $smarty->assign("gotoProfileFlag_CCHK"," checked ");
372     }
374     $this->gotoXResolutions = array("640x480","800x600","1024x768","1280x768","1280x1024");
376     $smarty->assign("gotoXResolutions",$this->gotoXResolutions);
377     $smarty->assign("gotoProfileServers",$this->gotoProfileServers);
378     if(!is_array($this->gotoProfileServers)){
379       $this->gotoProfileServers =array();
380     }
381     $smarty->assign("gotoProfileServerKeys",array_flip($this->gotoProfileServers));
383     /* Handle kiosk profiles 
384      * Read available from filesystem
385      * Open management if post is transmitted
386      */
388     /* Save */
389     if(isset($_POST['KioskClose'])){
390       $this->newKioskProfiles = array_merge($this->newKioskProfiles,$this->dialog->save());
391   
392       unset($this->dialog);
393       $this->dialog=NULL;
394       $this->is_dialog = false;
395     }
396     $tmp = new kioskManagementDialog($this->config,$this->dn);
397     $list = $tmp->getKioskProfiles($this->newKioskProfiles);
399     $list['none']=_("None");
401     $list = array_reverse($list);
403     /* Reassign help class */
404     $_SESSION['current_class_for_help'] = get_class($this);
405  
406     /* Open Management Dialog */
407     if(isset($_POST['KioskManagementDialog'])){
408       $this->dialog = new kioskManagementDialog($this->config,$this->dn,$this->newKioskProfiles); 
409       $this->dialog->parent= $this;
410       $this->dialog->acl = $this->acl;
411       $this->is_dialog = true;
412     }
414     $smarty->assign("gotoKioskProfiles",$list);
415     $smarty->assign("gotoKioskProfileKeys",array_flip($list));
417     /* Logonscript Management
418      * Get available LogonScripts (possibly grey out (or mark) these script that are defined for the group) 
419      * Perform add Delete edit Posts 
420      */
422     /* Dialog Save */
423     if(isset($_POST['LogonSave'])){
424       $this->dialog->save_object();
425       if(count($this->dialog->check())!=0){
426         foreach($this->dialog->check() as $msg){
427           print_red($msg);
428         }
429       }else{
430         $tmp = $this->dialog->save();
431         unset($this->dialog);
432         $this->dialog=NULL;
433         $this->is_dialog=false;
434         $this->gotoLogonScripts[$tmp['LogonName']]=$tmp; 
435       }
436     }
437     
438     /* Dialog Quit without saving */
439     if(isset($_POST['LogonCancel'])){
440       $this->is_dialog= false;
441       unset($this->dialog);
442       $this->dialog= NULL;
443     }
444    
445     /* Check Edit Del New Posts for a selected LogonScript */ 
446     if(isset($_POST['gotoLogonScriptNew'])||isset($_POST['gotoLogonScriptEdit'])||isset($_POST['gotoLogonScriptDel'])){
448       /* New Logon Script: Open an edit dialog, we don't need a $_POST['gotoLogonScript'] here.
449        * In this case we create a new Logon Script.
450        */
451       if(isset($_POST['gotoLogonScriptNew'])){
452         $this->is_dialog = true;
453         $this->dialog = new logonManagementDialog($this->config,$this->dn);
454       }
456       /* If we receive a Delete request and there is a Script selected in the selectbox, delete this one.
457        * We only can delete if there is an entry selected.
458        */
459       if((isset($_POST['gotoLogonScriptDel']))&&(isset($_POST['gotoLogonScript']))){
460         unset($this->gotoLogonScripts[$_POST['gotoLogonScript']]);
461       }
462       
463       /* In this case we want to edit an existing entry, we open a new Dialog to allow editing.
464        * There must be an entry selected to perform edit request.
465        */
466       if((isset($_POST['gotoLogonScriptEdit']))&&(isset($_POST['gotoLogonScript']))){
467         $is_entry = $this->gotoLogonScripts[$_POST['gotoLogonScript']];
468         $this->is_dialog = true;
469         $this->dialog = new logonManagementDialog($this->config,$this->dn,$is_entry);
470       }
471     }
472      
473     /* Append List to smarty*/
474     $smarty->assign("gotoLogonScripts",   $this->printOutLogonScripts());
475     $smarty->assign("gotoLogonScriptKeys",array_flip($this->printOutLogonScripts()));
477     /* In this section server shares will be defined 
478      * A user can select one of the given shares and a mount point
479      *  and attach this combination to his setup.
480      */
481     
482     $smarty->assign("gotoShareSelections",    $this->gotoShareSelections);
483     if(!is_array($this->gotoShareSelections)){
484       print $this->gotoShareSelections;
485       $this->gotoShareSelections = array();
486     }
487     $smarty->assign("gotoShareSelectionKeys", array_flip($this->gotoShareSelections));
489     /* if $_POST['gotoShareAdd'] is set, we will try to add a new entry 
490      * This entry will be, a combination of mountPoint and sharedefinitions 
491      */
492     if(isset($_POST['gotoShareAdd'])){
493       /* We assign a share to this user, if we don't know where to mount the share */
494       if((!isset($_POST['gotoShareMountPoint']))||(empty($_POST['gotoShareMountPoint']))||(preg_match("/[\|]/i",$_POST['gotoShareMountPoint']))){
495         print_red(_("You must specify a valid mount point."));
496       }elseif(!(
497         preg_match("/^\//",$_POST['gotoShareMountPoint'])  ||
498         preg_match("/^~/",$_POST['gotoShareMountPoint']) ||
499         preg_match("/^\$HOME/",$_POST['gotoShareMountPoint']) ||
500         preg_match("/^.HOME/",$_POST['gotoShareMountPoint']) ||
501         preg_match("/^\$USER/",$_POST['gotoShareMountPoint']) ||
502         preg_match("/^.USER/",$_POST['gotoShareMountPoint'])
503         )
504       ){
505         print_red(_("You must specify a valid mount point.")); 
506       }else{
507         $a_share = $this->gotoAvailableShares[$_POST['gotoShareSelection']];
508         $s_mount = $_POST['gotoShareMountPoint'];
509         $s_user  = $_POST['ShareUser'];
510         /* Preparing the new assignment */ 
511         $this->gotoShares[$a_share['name']."|".$a_share['server']]=$a_share;
512         $this->gotoShares[$a_share['name']."|".$a_share['server']]['Username']=$s_user;
513         $this->gotoShares[$a_share['name']."|".$a_share['server']]['mountPoint']=$s_mount;
514       }
515     }  
517     /* if the Post  gotoShareDel is set, someone asked GOsa to delete the selected entry (if there is one selected)
518      * If there is no defined share selected, we will abort the deletion without any message 
519      */
520     if((isset($_POST['gotoShareDel']))&&(isset($_POST['gotoShare']))){
521       unset($this->gotoShares[$_POST['gotoShare']]);
522     }
524     $smarty->assign("gotoShares",$this->printOutAssignedShares());
525     $smarty->assign("gotoShareKeys",array_flip($this->printOutAssignedShares()));
527     /* Hotplug devices will be handled here 
528      * There are 3 possible methods for this feature
529      * Create a new Hotplug, A Dialog will open where you can specify some hotplug information
530      * Delete will erase an entry, the entry must be selcted in the ListBox first
531      * Editing an entry will open a dialog where the informations about the selcted entry can be changed
532      */
534     /* If there is a new entry wanted, open a new entry by initilising the dialog */
535     if(isset($_POST['gotoHotplugDeviceNew'])){
536       $this->dialog = new hotplugDialog($this->config,$this->dn);
537       $this->is_dialog = true;
538     }
540     /* We have to delete the selected hotplug from the list*/
541     if((isset($_POST['gotoHotplugDeviceDel']))&&(isset($_POST['gotoHotplugDevice']))){
542       unset($this->gotoHotplugDevices[$_POST['gotoHotplugDevice']]);
543     }
545     /* There are already defined hotplugs from other users we could use */
546     if(isset($_POST['gotoHotplugDeviceUse'])){
547       $this->dialog = new hotplugDialog($this->config,$this->dn,true);
548       $this->is_dialog = true;
549     }
551     /* Dialog Aborted */
552     if(isset($_POST['HotPlugCancel'])){
553       unset($this->dialog);
554       $this->dialog= NULL;
555       $this->is_dialog = false;
556     }
557  
558     /* Dialod saved */
559     if(isset($_POST['HotPlugSave'])){
560       $this->dialog->save_object();
561       if(count($this->dialog->check())!=0){
562         foreach($this->dialog->check() as $msg){
563           print_red($msg);
564         }
565       }else{
566         $this->dialog->save_object();
567         $a_tmp = $this->dialog->save();
568         if(is_array($a_tmp)){
569           $this->gotoHotplugDevices[$a_tmp['name']]= $a_tmp; 
570         }
571         unset($this->dialog);
572         $this->dialog= NULL;
573         $this->is_dialog = false;
574       }
575     }
576     
577     $smarty->assign("gotoHotplugDevices",$this->printOutHotPlugDevices());
578     $smarty->assign("gotoHotplugDeviceKeys",array_flip($this->printOutHotPlugDevices()));
579   
580     /* Printer Assignment will managed below 
581      * A printer can be assigned in two different ways and two different types
582      * There are 2 types of users assigned to a printer : user and admin
583      * They only differ in the member attribute they will be assigned to. user: gotoUserPrinter admin: gotoadminPrinter
584      * The different types of assigning a user are : 1 assigning a user to a printer 2. assigning a group to a printer
585      */ 
586     
587     /* First handle Add Post. Open a dialog that allows us to select a printer or two */ 
588     if(isset($_POST['gotoPrinterAdd'])){
589       $this->is_dialog=true;
590       $this->dialog = new selectPrinterDialog($this->config,$this->dn);
591     }
593     if(isset($_POST['PrinterCancel'])){
594         $this->is_dialog=false;
595         unset($this->dialog);
596         $this->dialog=NULL;
597     }
599     if(isset($_POST['PrinterSave'])){
600       if(count($this->dialog->check())!=0){
601         $tmp = $this->dialog->check();
602         foreach($tmp as $msg){
603           print_red($msg);
604         } 
605       }else{
606         $this->dialog->save_object();
607         $tmp = $this->dialog->save();
608         $tmp2= $this->dialog->getPrinter(true);
609         $this->gotoPrinter[$tmp]=$tmp2[$tmp];
610         $this->gotoPrinter[$tmp]['mode']="user";
611         $this->is_dialog=false;
612         unset($this->dialog);
613         $this->dialog   =NULL;
614       }
615     }
616   
617     if((isset($_POST['gotoPrinterDel']))&&(isset($_POST['gotoPrinterSel']))&&(!empty($_POST['gotoPrinterSel']))){
618       $printer = $_POST['gotoPrinterSel'];
619       unset($this->gotoPrinter[$printer]);
620     }
622     if((isset($_POST['gotoPrinterEdit']))&&(isset($_POST['gotoPrinterSel']))&&(!empty($_POST['gotoPrinterSel']))){
623       $printer = $_POST['gotoPrinterSel'];
624       if($this->gotoPrinter[$printer]['mode']=="user"){
625         $this->gotoPrinter[$printer]['mode']="admin";
626       }else{
627         $this->gotoPrinter[$printer]['mode']="user";
628       }
629     }
631     $smarty->assign("gotoPrinter",$this->printOutPrinterDevices());
632     $smarty->assign("gotoPrinterKeys",array_flip($this->printOutPrinterDevices()));
633  
634     /* General behavior */
635     if((isset($this->dialog))&&($this->dialog!=NULL)&&(!empty($this->dialog))){
636       $this->dialog->save_object();
637       return ($this->dialog->execute());
638     }
639     if($this->acl != "#none#"){
640       $smarty->assign("useProfileACL","");
641     }else{
642       $smarty->assign("gotoProfileFlag_CACL"," disabled ");
643       $smarty->assign("gotoProfileServerACL"," disabled ");
644       $smarty->assign("gotoProfileQuotaACL"," disabled ");
645     }
647     if(!$this->useProfile){
648       $smarty->assign("gotoProfileFlag_CACL"," disabled ");
649       $smarty->assign("gotoProfileServerACL"," disabled ");
650       $smarty->assign("gotoProfileQuotaACL"," disabled ");
651     }
653     /* Als smarty vars are set. Get smarty template and generate output */
654     $display.= $smarty->fetch(get_template_path('environment.tpl', TRUE,dirname(__FILE__)));
655     
656     return($display);
657   }
659   function remove_from_parent()
660   {
661     /* only if it was an account*/
662     if (!$this->initially_was_account){
663       return;
664     }
666     /* include global link_info */
667     $ldap= $this->config->get_ldap_link();
669     /* Remove and write to LDAP */
670     plugin::remove_from_parent();
672     /* Don't save our template variables */
673     $skip = array("uid",
674                   "gotoLogonScripts","gotoPrinter","gotoShares","gotoKioskProfiles","gotoHotplugDevices" );
675     /* Skip all these attributes */
676     foreach($skip as $del){
677       unset($this->attrs[$del]);
678     }
680     @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__,$this->attributes, "Save");
682     $ldap->cd($this->dn);
683     $ldap->modify($this->attrs);
685     show_ldap_error($ldap->get_error());
687     /* Optionally execute a command after we're done */
688     $this->handle_post_events("remove");
689   }
692   /* Save data to object */
693   function save_object()
694   {
695     /* Get all Posted vars 
696      * Setup checkboxes 
697      */
698    
699     
700  
701     if(isset($_POST['iamposted'])){
702       if(isset($_POST['useProfile'])){
703         $this->useProfile = true;
704       }else{
705         $this->useProfile = false;
706       }
707       if(isset($_POST['gotoProfileFlag_C'])){
708         $this->gotoProfileFlag_C = $_POST['gotoProfileFlag_C'];
709       }else{
710         $this->gotoProfileFlag_C = false;
711       }
712       if(isset($_POST['gotoProfileFlag_L'])){
713         $this->gotoProfileFlag_L = $_POST['gotoProfileFlag_L'];
714       }else{
715         $this->gotoProfileFlag_L = false;
716       }
718       plugin::save_object();
719       foreach($this->attributes as $s_attr){
720         if(in_array($s_attr,array("gotoShares","gotoHotplugDevices","gotoPrinter","gotoLogonScripts","uid"))) continue;
721         if(isset($_POST[$s_attr])){
722           $this->$s_attr = $_POST[$s_attr];
723         }else{
724           $this->$s_attr = false;
725         }
726       }
727     }
728   }
731   /* Check supplied data */
732   function check()
733   {
734     $message= array();
735   
736     if(preg_match("/[^0-9]/",$this->gotoProfileQuota)) {
737       $message[]=_("Please set a valid profile quota size.");
738     } 
739     if(!isset($this->attrs['objectClass'])){
740       $this->attrs['objectClass']=array();
741     } 
742     if(!$this->is_group){
743       if((!((in_array("posixAccount",$this->attrs['objectClass']))||($this->parent->by_object['posixAccount']->is_account==true)))&&(!$this->is_group)){
744         $message[]=(_("You need to setup a valid posix extension in order to enable evironment features."));  
745       }
746     }
747     return ($message);
748   }
751   /* Save to LDAP */
752   function save()
753   {
754     plugin::save();
755     $ldap= $this->config->get_ldap_link();
757     $realyUsedAttrs= array();
760     $path = search_config($this->config->data,"environment", "KIOSKPATH"); 
761     /* Creating Kiosk Profiles */
762     foreach($this->newKioskProfiles as $file){
763       $contents = $file['contents'];
764       $fp = @fopen($path."/".$file['name'],"w");
765       if(!$fp){
766         print_red(_("Can't save new kiosk profiles, possibly permission denied for folder")." : ",$path);
767       }else{
768         fwrite($fp,$contents,strlen($contents));
769       }
770       @unlink($file['tmp_name']);
771     }
772  
773     /* Save already used objectClasses */
774     $ocs        = $this->attrs['objectClass'];
775     unset($ocs['count']);
776     $this->attrs = array();
777     $this->attrs['objectClass']= $ocs;
778     foreach($this->objectclasses as $objc){
779       if(!in_array($objc,$this->attrs['objectClass'])){
780         $this->attrs['objectClass'][]=$objc;
781       }
782     }
785     /* Save usersettings to Printer */
787     if(chkacl($this->acl,"gotoPrinter")!=""){
788       $this->gotoPrinter = array();
789     }  
790     
791     if($this->is_group){
792       $s_suffix = "Group";
793     }else{
794       $s_suffix = "User";
795     }
796   
798     /* 1. Search all printers that have our uid/cn as member 
799      * 2. Delete this uid/cn from every single entry and save it again.
800      * 2.1 There are different types of members: Users / Groups, this will be defined in $suffix
801      * 2.2 And each type has two modes, Admin (e.g. 'gotoUserAdminPrinter') and Normal 
802      */
803     $ldap->search("(&(objectClass=gotoPrinter)(|(goto".$s_suffix."Printer=".$this->uid.")(goto".$s_suffix."AdminPrinter=".$this->uid.")))",array("*"));
804     while($attr = $ldap->fetch()){
806       /* Walk trough all printers and check if our user id used, if so remove it.
807        * Later we will insert our uid at the right place.
808        */
810       /* Remove normal entries (User)*/
811       if(isset($attr['goto'.$s_suffix.'Printer'])) {
812         foreach($attr['goto'.$s_suffix.'Printer'] as $key => $user){
813           if($this->uid==$user){
814             unset($attr['goto'.$s_suffix.'Printer'][$key]);
815           }
816         }    
817       }
819       /* Remove administrational entries (Admin)*/
820       if(isset($attr['goto'.$s_suffix.'AdminPrinter'])){
821         foreach($attr['goto'.$s_suffix.'AdminPrinter'] as $key => $user){
822           if($this->uid==$user){
823             unset($attr['goto'.$s_suffix.'AdminPrinter'][$key]);
824           }
825         }    
826       }
828       /* Extract useable tags, to be able to save all changes 
829        */
830       $attrs_used = array();
831       foreach($attr as $key=>$val){
833         /* If index is numeric, skip it ...*/
834         if((!is_numeric($key))&&($key!="count")){
836           /* If entry contains 'count' remove it */
837           if(is_array($val)&&isset($val['count'])){
838             unset($val['count']);
839           }
840           $attrs_used[$key]=$val;
841         }
842       }
843       /* the result of cleaning the entry is 
844        *  to be able to directly save this again,
845        *  if all changes are made 
846        */
847       $attr= $attrs_used;
849 #fix : Id don't know why such an entry was set ... 
850       if(isset($attr['GOTOADMINPRINTER'])){
851         unset($attr['GOTOADMINPRINTER']);
852       }
854       /* Save changes */
855       $ldap->cd($attr['dn']);
856       unset($attr['dn']);
857       $ldap->modify($attr);
858       if($ldap->get_error()!="Success"){
859         print_red(_("Error while writing printer")." : ".$ldap->get_error());
860       }
861     }
863     /* All printers are cleaned, (our cn/uid removed) 
864      *  now we must add our uid / cn 
865      *  to the new configured printers.
866      */
867     foreach($this->gotoPrinter as $printer) {
868       $ldap->cd($printer['dn']);
869       $ldap->cat($printer['dn']);
870       $attrs= $ldap->fetch();
871       $attrs_used = array(); 
872       foreach($attrs as $key=>$val){
873         if((!is_numeric($key))&&($key!="count")){
874           if(is_array($val)&&isset($val['count'])){
875             unset($val['count']);
876           }
877           $attrs_used[$key]=$val;
878         }
879       }
880       /* $attrs contains all values 
881        * we need, to save the entry lateron 
882       */
883       $attrs= $attrs_used;
885       /* Depending on the type (User/Admin) 
886        *  switch these attributes, that makes it easier
887        */
888       if($printer['mode'] == "user"){
889         $attribute  = "goto".$s_suffix."Printer";
890         $attribute2 = "goto".$s_suffix."AdminPrinter";
891       }else{
892         $attribute  = "goto".$s_suffix."AdminPrinter";
893         $attribute2 = "goto".$s_suffix."Printer";
894       }
896       /* If this user is already assigned to $attribute2 
897        * delete user from $attribute2, to be albe to attach him to $attribute
898        * A user can't be admin and normal user for one printer
899        */
900       if(!isset($printer[$attribute2])){
901         $printer[$attribute2]=array();
902       }else{
903         if(in_array($this->uid,$printer[$attribute2])){ 
904           $tmp = array_flip($printer[$attribute2]);
905           unset($tmp[$this->uid]);
906           $attrs[$attribute2]=array_flip($tmp);
907         }
908         /* If Last entry removed, clear attribute*/
909         if(empty($attrs[$attribute2])){
910           $attrs[$attribute2]=array();
911         }
912       }
913     
914       /* Attach user to the $attribute, if he is'nt already attached
915        */
916       if(!isset($attrs[$attribute])){
917         $attrs[$attribute]=array($this->uid);
918       }else{
919         unset($attrs[$attribute]['count']);
920         if(!in_array($this->uid,$attrs[$attribute])){
921           $attrs[$attribute][]=$this->uid;
922         }
923       }
925       $ldap->cd($attrs['dn']);
926       unset($attrs['dn']);
927       $ldap->modify($attrs);
928       if($ldap->get_error()!="Success"){
929         print_red(_("Error while writing printer settings")." : ".$ldap->get_error());
930       }
931     }
932   
933     /* Prepare HotPlug devices */
934     $this->attrs['gotoHotplugDevice'] = array();
935     foreach($this->gotoHotplugDevices as $name => $device){
936       $this->attrs['gotoHotplugDevice'][] = $device['name']."|".$device['description']."|".$device['id'];
937     }
939     /* Prepare LogonScripts */
940     $this->attrs['gotoLogonScript'] = array();
941     foreach($this->gotoLogonScripts as $name => $script){
942       $this->attrs['gotoLogonScript'][] =   $script['LogonName']."|".
943                                             $script['LogonOverload'].$script['LogonLast']."|".
944                                             $script['LogonPriority']."|".
945                                             base64_encode($script['LogonData'])."|".
946                                             $script['LogonDescription'];
947     }
949     /* Prepare Shares */
950     $this->attrs['gotoShare']=array();
951     foreach($this->gotoShares as $name => $share){
952       $this->attrs['gotoShare'][] =$share['server']."|".$share['name']."|".$share['mountPoint']."|".$share['Username'];
953     }
955     if((!empty($this->gotoKioskProfile))&&($this->gotoKioskProfile != "none")){
956       if(preg_match("/https/i",$_SERVER['HTTP_REFERER'])){
957         $method="https://";
958       }else{
959         $method="http://";
960       }
962       $str = $method.str_replace("//","/",$_SERVER['SERVER_NAME']."/kiosk/");
963       $this->attrs['gotoKioskProfile']= $str.$this->gotoKioskProfile;
964     }else{
965       $this->attrs['gotoKioskProfile']= array();
966     }
968     $saveThis = array("gotoProfileQuota","gotoXResolution","gotoProfileServer");
969   
970     foreach($saveThis as $tosave){
971       if(!empty($this->$tosave)){
972         $this->attrs[$tosave]=$this->$tosave;
973       }else{
974         $this->attrs[$tosave]=array();
975       }
976     }
977  
978     /* Prepare Flags */
979     $this->attrs['gotoProfileFlags'] = array($this->gotoProfileFlag_C.$this->gotoProfileFlag_L);
980     if(empty($this->attrs['gotoProfileFlags'][0])){
981       $this->attrs['gotoProfileFlags']=array();
982       }
984     if($this->useProfile == false){
985       $this->attrs['gotoProfileFlags'] = preg_replace("/C/i","",$this->attrs['gotoProfileFlags']);
986       $this->attrs['gotoProfileServer']= array(); 
987     }
989     foreach($this->attributes as $s_attr){
990       if(chkacl($this->acl,$s_attr)!="") {
991         if(isset($this->attrs[$s_attr])){
992           unset($this->attrs[$s_attr]);
993         }
994       }
995     }
997     $ldap->cat ($this->dn);
998     if ($ldap->fetch()){
999       $mode= "modify";
1000     } else {
1001       $mode= "add";
1002       $ldap->cd($this->config->current['BASE']);
1003       $ldap->create_missing_trees(preg_replace('/^[^,]+,/', '', $this->dn));
1004     }
1006     $ldap->cd($this->dn);
1007     $ldap->$mode($this->attrs);
1008     if($ldap->get_error()!="Success"){
1009       print_red($ldap->get_error());
1010     }
1011     $this->handle_post_events($mode);
1012   }
1014 /* Generate ListBox frindly output for the defined shares 
1015  * Possibly Add or remove an attribute here, 
1016  */
1017   function printOutAssignedShares()
1018   {
1019     $a_return = array();
1020     if(is_array($this->gotoShares)){
1021       foreach($this->gotoShares as $share){
1022         if (!preg_match('/^!/', $share['server'])){
1023           $a_return[$share['name']."|".$share['server']]= $share['server']."://".$share['name']." on ".$share['mountPoint']." as ".$share['Username'];
1024         }
1025       }
1026     }
1027     return($a_return);
1028   }
1030 /* Generate ListBox frindly output for the definedhotplugs 
1031  * Possibly Add or remove an attribute here,
1032  */
1033 function printOutHotPlugDevices()
1034   {
1035     $a_return= array();
1036     if(is_array($this->gotoHotplugDevices)){
1037       foreach($this->gotoHotplugDevices as $key=>$device){
1038         $a_return[$key] = $device['name']." - ".$device['id'];
1039       }
1040     }
1041     return($a_return);
1042   }
1044   /* Generates ListBox frienly output of used printer devices 
1045    * Append ' - admin' if printer is used in admin mode
1046    */
1047   function printOutPrinterDevices()
1048   {
1049     $a_return = array();
1050     if(is_array($this->gotoPrinter)){
1051       foreach($this->gotoPrinter as $printer){
1052         if($printer['mode'] == "admin"){
1053           $a_return[$printer['cn'][0]]= $printer['cn'][0]." - "._("Admin");
1054         }else{
1055           $a_return[$printer['cn'][0]]= $printer['cn'][0]; 
1056         }
1057       }
1058     }
1059     return($a_return);
1060   }
1062   /* Generates ListBox frienly output of used logonscripts 
1063    */
1064   function printOutLogonScripts()
1065   {
1066     $a_return = array();
1067     if(is_array($this->gotoLogonScripts)){
1068       foreach($this->gotoLogonScripts as $script){
1069         $a_return[$script['LogonName']]= $script['LogonPriority']." - ".$script['LogonName']; 
1070       }
1071     }
1072     return($a_return);
1073   }
1079 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
1080 ?>