Code

Added empty lines
[gosa.git] / plugins / personal / samba / class_sambaAccount.inc
1 <?php
2 /*
3    This code is part of GOsa (https://gosa.gonicus.de)
4    Copyright (C) 2004-2005 Cajus Pollmeier
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
21 class sambaAccount extends plugin
22 {
23   /* Definitions */
24   var $plHeadline= "Samba";
25   var $plDescription= "This does something";
27   /* CLI vars */
28   var $cli_summary= "Manage users samba account";
29   var $cli_description= "Some longer text\nfor help";
30   var $cli_parameters= array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
32   /* Switch for Samba version */
33   var $samba3= FALSE;
34   var $uidNumber= 65535;
35   var $gidNumber= 65535;
37   /* Samba 2 attributes */
38   var $pwdLastSet= "0";
39   var $logonTime= "0";
40   var $logoffTime= "2147483647";
41   var $kickoffTime= "2147483647";
42   var $pwdCanChange= "0";
43   var $pwdMustChange= "0";
44   var $password_expires= 0;
45   var $acctFlags= "[UX        ]";
46   var $smbHome= "";
47   var $homeDrive= "";
48   var $scriptPath= "";
49   var $profilePath= "";
50   var $rid= "";
51   var $primaryGroupID= "";
53   /* Samba 3 attributes */
54   var $SID= "";
55   var $ridBase= 0;
56   var $sambaSID= "";
57   var $sambaPwdLastSet= "0";
58   var $sambaLogonTime= "0";
59   var $sambaLogoffTime= "2147483647";
60   var $sambaKickoffTime= "2147483647";
61   var $sambaPwdCanChange= "0";
62   var $sambaPwdMustChange= "0";
63   var $sambaAcctFlags= "[UX        ]";
64   var $sambaHomePath= "";
65   var $sambaHomeDrive= "";
66   var $sambaLogonScript= "";
67   var $sambaProfilePath= "";
68   var $sambaPrimaryGroupSID= "";
69   var $sambaDomainName= "";
70   var $sambaUserWorkstations= "";
71   var $sambaBadPasswordCount= "";
72   var $sambaBadPasswordTime= "";
73   var $sambaPasswordHistory= "";
74   var $sambaLogonHours= "";
75   var $orig_sambaDomainName= "";
76   var $sambaMungedDial= "";
77   var $mungedObject;
79   /* Helper */
80   var $show_ws_dialog= FALSE;
81   var $logon_time_set= 0;
82   var $logoff_time_set= 0;
83   var $kickoff_time_set= 0;
85   /* attribute list for save action */
86   var $ctxattributes= array();
87   var $attributes= array();
88   var $objectclasses= array();
90   function sambaAccount ($config, $dn= NULL)
91   {
92     /* Load attributes depending on the samba version */
93     $this->samba3= ($config->current['SAMBAVERSION'] == 3);
95     if ($this->samba3){
96       $this->attributes= array ("sambaSID", "sambaPwdLastSet", "sambaLogonTime",
97           "sambaLogoffTime", "sambaKickoffTime", "sambaPwdCanChange",
98           "sambaPwdMustChange", "sambaAcctFlags", "uid", "sambaMungedDial",
99           "sambaHomePath", "sambaHomeDrive", "sambaLogonScript",
100           "sambaProfilePath", "sambaPrimaryGroupSID", "sambaDomainName",
101           "sambaUserWorkstations", "sambaPasswordHistory",
102           "sambaLogonHours", "sambaBadPasswordTime",
103           "sambaBadPasswordCount");
104       $this->objectclasses= array ("sambaSamAccount");
105       $this->mungedObject= new sambaMungedDial;
106       $this->ctxattributes= $this->mungedObject->ctxattributes;
107     } else {
108       $this->attributes= array ("pwdLastSet", "logonTime", "logoffTime", "kickoffTime",
109           "pwdCanChange", "pwdMustChange", "acctFlags", "profilePath", "uid",
110           "smbHome", "homeDrive", "scriptPath", "rid", "primaryGroupID");
111       $this->objectclasses= array ("sambaAccount");
112     }
114     plugin::plugin ($config, $dn);
116     /* Get samba Domain in case of samba 3 */
117     if ($this->samba3 && $this->sambaSID != ""){
118       $this->SID= preg_replace ("/-[^-]+$/", "", $this->sambaSID);
119       $ldap= $this->config->get_ldap_link();
120       $ldap->cd($this->config->current['BASE']);
121       $ldap->search ("(&(objectClass=sambaDomain)(sambaSID=$this->SID))");
122       if ($ldap->count() != 0){
123         $attrs= $ldap->fetch();
124         $this->ridBase= $attrs['sambaAlgorithmicRidBase'][0];
125         if ($this->sambaDomainName == ""){
126           $this->sambaDomainName= $attrs['sambaDomainName'][0];
127         }
128       } else {
129         if ($this->sambaDomainName == ""){
130           $this->sambaDomainName= "DEFAULT";
131         }
132         $this->ridBase= $this->config->current['RIDBASE'];
133         $this->SID= $this->config->current['SID'];
134       }
136       /* Save in order to compare later on */
137       $this->orig_sambaDomainName= $this->sambaDomainName;
138     }
140     /* Fill mungedDial field */
141     if ($this->samba3 && isset($this->attrs['sambaMungedDial'])){
142       $this->mungedObject->load($this->sambaMungedDial);
143     }
145     /* Password expiery */
146     if(isset($this->attrs['sambaPwdMustChange']) &&
147         $this->attrs['sambaPwdMustChange'][0] != 0){
148       $this->password_expires= 1;
149     }
151     if(isset($this->attrs['sambaLogonTime']) && ! (
152         $this->attrs['sambaLogonTime'][0] == 0 ||
153         $this->attrs['sambaLogonTime'][0] == 2147483647
154       )){
155       $this->logon_time_set= 1;
156     }
157     if(isset($this->attrs['sambaLogoffTime']) && ! (
158         $this->attrs['sambaLogoffTime'][0] == 0 ||
159         $this->attrs['sambaLogoffTime'][0] == 2147483647
160       )){
161       $this->logoff_time_set= 1;
162     }
163     
164     /* Account expiery */
165     if(isset($this->attrs['sambaKickoffTime']) && ! (
166         $this->attrs['sambaKickoffTime'][0] == 0 ||
167         $this->attrs['sambaKickoffTime'][0] == 2147483647
168       )){
169       $this->kickoff_time_set= 1;
170     }
172     /* Get global filter config */
173     if (!is_global("sambafilter")){
174       $ui= get_userinfo();
175       $base= get_base_from_people($ui->dn);
176       $sambafilter= array( "depselect" => $base, "regex" => "*");
177       register_global("sambafilter", $sambafilter);
178     }
180     /* Save initial account state */
181     $this->initially_was_account= $this->is_account;
182   }
184   function execute()
185   {
186         /* Call parent execute */
187         plugin::execute();
189     /* Do we need to flip is_account state? */
190     if (isset($_POST['modify_state'])){
191       $this->is_account= !$this->is_account;
192     }
193     /* Do we represent a valid account? */
194     if (!$this->is_account && $this->parent == NULL){
195       $display= "<img alt=\"\"src=\"images/stop.png\" align=\"middle\">&nbsp;<b>".
196         _("This account has no samba extensions.")."</b>";
197       $display.= back_to_main();
198       return ($display);
199     }
201     /* Show tab dialog headers */
202     $display= "";
203     if ($this->parent != NULL){
204       if ($this->is_account){
205         $display= $this->show_header(_("Remove samba account"),
206             _("This account has samba features enabled. You can disable them by clicking below."));
207       } else {
208         $obj= $this->parent->by_object['posixAccount'];
210         /* Samba3 dependency on posix accounts are enabled
211            in the moment, because I need to rely on unique
212            uidNumbers. There'll be a better solution later
213            on. */
214         if ($obj->is_account){
216           $display= $this->show_header(_("Create samba account"),
217               _("This account has samba features disabled. You can enable them by clicking below."));
218         } else {
219           $display= $this->show_header(_("Create samba account"),
220               _("This account has samba features disabled. Posix features are needed for samba accounts, enable them first."), TRUE);
221         }
222         return ($display);
223       }
224     }
226     /* Prepare templating */
227     $smarty= get_smarty();
229 /* PHP Fehler "Undefined index: sambaPwdMustChangeACL" */
230     #hickert test
231     $smarty->assign("sambaPwdMustChangeACL", chkacl($this->acl, "sambaPwdMustChangeACL"));
232     #hickert test
233     $smarty->assign("sambaPwdMustChange",$this->sambaPwdMustChange);
235     if ($this->sambaPwdMustChange=="0"){
236       $date= getdate();
237     } else {
238       $date= getdate($this->sambaPwdMustChange);
239     }
241     if ($this->sambaLogonTime=="2147483647" || $this->sambaLogonTime=="0"){
242       $sambaLogonTime_date= getdate();
243     } else {
244       $sambaLogonTime_date= getdate($this->sambaLogonTime);
245     }
246     
247     if ($this->sambaLogoffTime=="2147483647" || $this->sambaLogoffTime=="0"){
248       $sambaLogoffTime_date= getdate();
249     } else {
250       $sambaLogoffTime_date= getdate($this->sambaLogoffTime);
251     }
252     
253     if ($this->sambaKickoffTime=="2147483647" || $this->sambaKickoffTime=="0"){
254       $sambaKickoffTime_date= getdate();
255     } else {
256       $sambaKickoffTime_date= getdate($this->sambaKickoffTime);
257     }
259     /* Remove user workstations? */
260     if (isset($_POST["delete_ws"]) && isset($_POST['workstation_list'])){
261       $tmp= $this->sambaUserWorkstations;
262       foreach($_POST['workstation_list'] as $name){
263         $tmp= preg_replace("/$name/", '', $tmp);
264         $this->is_modified= TRUE;
265       }
266       $tmp= preg_replace('/,+/', ',', $tmp);
267       $this->sambaUserWorkstations= trim($tmp, ',');
268     }
270     /* Add user workstation? */
271     if (isset($_POST["add_ws"])){
272       $this->show_ws_dialog= TRUE;
273       $this->dialog= TRUE;
274     }
276     /* Add user workstation finished? */
277     if (isset($_POST["add_ws_finish"]) || isset($_POST["add_ws_cancel"])){
278       $this->show_ws_dialog= FALSE;
279       $this->dialog= FALSE;
280     }
282     /* Add user workstation? */
283     if (isset($_POST["add_ws_finish"]) && isset($_POST['wslist'])){
284       $tmp= $this->sambaUserWorkstations;
285       foreach($_POST['wslist'] as $ws){
286         $tmp.= ",$ws";
287       }
288       $tmp= preg_replace('/,+/', ',', $tmp);
289       $this->sambaUserWorkstations= trim($tmp, ',');
290       $this->is_modified= TRUE;
291     }
293     /* Show ws dialog */
294     if ($this->show_ws_dialog){
296       /* Save data */
297       $sambafilter= get_global("sambafilter");
298       foreach( array("depselect", "regex") as $type){
299         if (isset($_POST[$type])){
300           $sambafilter[$type]= $_POST[$type];
301         }
302       }
303       if (isset($_GET['search'])){
304         $s= mb_substr($_GET['search'], 0, 1, "UTF8")."*";
305         if ($s == "**"){
306           $s= "*";
307         }
308         $sambafilter['regex']= $s;
309       }
310       register_global("sambafilter", $sambafilter);
312       /* Get workstation list */
313       $exclude= "";
314       foreach(split(',', $this->sambaUserWorkstations) as $ws){
315         $exclude.= "(cn=$ws$)";
316       }
317       if ($exclude != ""){
318         $exclude= "(!(|$exclude))";
319       }
320       $acl= array($this->config->current['BASE'] => ":all");
321       $regex= $sambafilter['regex'];
322       $filter= "(&(objectClass=sambaSAMAccount)$exclude(uid=*$)(|(uid=$regex)(cn=$regex)))";
323       $res= get_list($acl, "$filter", TRUE, $sambafilter['depselect'], array("uid"), TRUE);
324       $wslist= array();
325       foreach ($res as $attrs){
326         $wslist[]= preg_replace('/\$/', '', $attrs['uid'][0]);
327       }
328       asort($wslist);
330       $smarty->assign("search_image", get_template_path('images/search.png'));
331       $smarty->assign("launchimage", get_template_path('images/small_filter.png'));
332       $smarty->assign("tree_image", get_template_path('images/tree.png'));
333       $smarty->assign("deplist", $this->config->idepartments);
334       $smarty->assign("alphabet", generate_alphabet());
335       foreach( array("depselect", "regex") as $type){
336         $smarty->assign("$type", $sambafilter[$type]);
337       }
338       $smarty->assign("hint", print_sizelimit_warning());
339       $smarty->assign("wslist", $wslist);
340       $smarty->assign("apply", apply_filter());
341       $display= $smarty->fetch (get_template_path('samba3_workstations.tpl', TRUE,
342                                 dirname(__FILE__)));
343       return ($display);
344     }
346     /* Fill calendar */
347     $days= array();
348     for($d= 1; $d<32; $d++){
349       $days[]= $d;
350     }
351     $years= array();
352     for($y= $date['year']-4; $y<$date['year']+4; $y++){
353       $years[]= $y;
354     }
355     $months= array(_("January"), _("February"), _("March"), _("April"),
356         _("May"), _("June"), _("July"), _("August"), _("September"),
357         _("October"), _("November"), _("December"));
358     $smarty->assign("day", $date["mday"]);
359     $smarty->assign("days", $days);
360     $smarty->assign("months", $months);
361     $smarty->assign("month", $date["mon"]-1);
362     $smarty->assign("years", $years);
363     $smarty->assign("year", $date["year"]);
364     
365     $sambaLogonTime_days= array();
366     for($d= 1; $d<32; $d++){
367       $sambaLogonTime_days[]= $d;
368     }
369     $sambaLogonTime_years= array();
370     for($y= $date['year']-4; $y<$date['year']+4; $y++){
371       $sambaLogonTime_years[]= $y;
372     }
373     $sambaLogonTime_months= array(_("January"), _("February"), _("March"), _("April"),
374         _("May"), _("June"), _("July"), _("August"), _("September"),
375         _("October"), _("November"), _("December"));
376     $smarty->assign("sambaLogonTime_day", $sambaLogonTime_date["mday"]);
377     $smarty->assign("sambaLogonTime_days", $sambaLogonTime_days);
378     $smarty->assign("sambaLogonTime_months", $sambaLogonTime_months);
379     $smarty->assign("sambaLogonTime_month", $sambaLogonTime_date["mon"]-1);
380     $smarty->assign("sambaLogonTime_years", $sambaLogonTime_years);
381     $smarty->assign("sambaLogonTime_year", $sambaLogonTime_date["year"]);
382     
383     $sambaLogoffTime_days= array();
384     for($d= 1; $d<32; $d++){
385       $sambaLogoffTime_days[]= $d;
386     }
387     $sambaLogoffTime_years= array();
388     for($y= $date['year']-4; $y<$date['year']+4; $y++){
389       $sambaLogoffTime_years[]= $y;
390     }
391     $sambaLogoffTime_months= array(_("January"), _("February"), _("March"), _("April"),
392         _("May"), _("June"), _("July"), _("August"), _("September"),
393         _("October"), _("November"), _("December"));
394     $smarty->assign("sambaLogoffTime_day", $sambaLogoffTime_date["mday"]);
395     $smarty->assign("sambaLogoffTime_days", $sambaLogoffTime_days);
396     $smarty->assign("sambaLogoffTime_months", $sambaLogoffTime_months);
397     $smarty->assign("sambaLogoffTime_month", $sambaLogoffTime_date["mon"]-1);
398     $smarty->assign("sambaLogoffTime_years", $sambaLogoffTime_years);
399     $smarty->assign("sambaLogoffTime_year", $sambaLogoffTime_date["year"]);
400     
401     $sambaKickoffTime_days= array();
402     for($d= 1; $d<32; $d++){
403       $sambaKickoffTime_days[]= $d;
404     }
405     $sambaKickoffTime_years= array();
406     for($y= $date['year']-4; $y<$date['year']+4; $y++){
407       $sambaKickoffTime_years[]= $y;
408     }
409     $sambaKickoffTime_months= array(_("January"), _("February"), _("March"), _("April"),
410         _("May"), _("June"), _("July"), _("August"), _("September"),
411         _("October"), _("November"), _("December"));
412     //$smarty->assign("sambaKickoffTime_day", $sambaKickoffTime_date["mday"]-1);
413     $smarty->assign("sambaKickoffTime_day", $sambaKickoffTime_date["mday"]); // hickert
414     $smarty->assign("sambaKickoffTime_days", $sambaKickoffTime_days);
415     $smarty->assign("sambaKickoffTime_months", $sambaKickoffTime_months);
416     $smarty->assign("sambaKickoffTime_month", $sambaKickoffTime_date["mon"]-1);
417     $smarty->assign("sambaKickoffTime_years", $sambaKickoffTime_years);
418     $smarty->assign("sambaKickoffTime_year", $sambaKickoffTime_date["year"]);
419      
420     /* Fill boxes */
421     if ($this->samba3){
422       $domains= array();
423       foreach($this->config->data['SERVERS']['SAMBA'] as $name => $content){
424         $domains[]= $name;
425       }
426       $smarty->assign("domains", $domains);
427     }
428     $letters= array();
429     for ($i= 68; $i<91; $i++){
430       $letters[]= chr($i).":";
431     }
432     $smarty->assign("drives", $letters);
434     /* Fill terminal server settings */
435     if ($this->samba3){
436       foreach ($this->ctxattributes as $attr){
437         /* Fill common attributes */
438         if (isset($this->mungedObject->ctx[$attr])){
439           $smarty->assign("$attr", $this->mungedObject->ctx[$attr]);
440           // Set field  to blank if value is 0
441           if(in_array($attr, array("CtxMaxConnectionTime", "CtxMaxDisconnectionTime", "CtxMaxIdleTime"))) {
442             if($this->mungedObject->ctx[$attr] == 0) {
443               $smarty->assign("$attr", "");
444             }
445           }
446         } else {
447           $smarty->assign("$attr", "");
448         }
449         $smarty->assign("$attr"."ACL", chkacl($this->acl, $attr));
450       }
452       /* Assign enum values for preset items */
453       $shadowModeVals= array( "0" => _("disabled"),
454           "1" => _("input on, notify on"),
455           "2" => _("input on, notify off"),
456           "3" => _("input off, notify on"),
457           "4" => _("input off, nofify off"));
459       $brokenConnModeVals= array(       "0" => _("disconnect"),
460           "1" => _("reset"));
462       $reConnModeVals= array( "0" => _("from any client"),
463           "1" => _("from previous client only"));
465       /* Fill preset items */
466       $smarty->assign("shadow", $shadowModeVals);
467       $smarty->assign("brokenconn", $brokenConnModeVals);
468       $smarty->assign("reconn", $reConnModeVals);
470       /* Fill preset items with values */
471       $smarty->assign("shadowmode", $this->mungedObject->getShadow());
472       $smarty->assign("shadowACL", chkacl($this->acl,"shadow"));
473       $smarty->assign("brokenconnmode", $this->mungedObject->getBrokenConn());
474       $smarty->assign("brokenconnACL", chkacl($this->acl,"brokenconn"));
475       $smarty->assign("reconnmode", $this->mungedObject->getReConn());
476       $smarty->assign("reconnACL", chkacl($this->acl,"reconn"));
478       /* Set form elements to disabled/enable state */
479       $smarty->assign("tsloginstate", $this->mungedObject->getTsLogin()?"":"disabled");
480       $smarty->assign("inheritstate", $this->mungedObject->getInheritMode()?"disabled":"");
481       
482       /* Set checkboxes to checked or unchecked state */
483       $smarty->assign("tslogin", $this->mungedObject->getTsLogin()?"checked":"");
484       $smarty->assign("tsloginACL", chkacl($this->acl,"tslogin"));
486       $smarty->assign("inherit", $this->mungedObject->getInheritMode()?"checked":"");
487       $smarty->assign("inheritACL", chkacl($this->acl,"inherit"));
490       $smarty->assign("connectclientdrives",
491                       $this->mungedObject->getConnectClientDrives()?"checked":"");
492       $smarty->assign("connectclientdrivesACL", chkacl($this->acl,"connectclientdrives"));
493       $smarty->assign("connectclientprinters",
494                       $this->mungedObject->getConnectClientPrinters()?"checked":"");
495       $smarty->assign("connectclientprintersACL", chkacl($this->acl,"connectclientprinters"));
496       $smarty->assign("defaultprinter",
497                       $this->mungedObject->getDefaultPrinter()?"checked":"");
498       $smarty->assign("defaultprinterACL", chkacl($this->acl,"defaultprinter"));
499       $smarty->assign("CtxMaxConnectionTimeF",
500                       $this->mungedObject->getCtxMaxConnectionTimeF()?"checked":"");
501       $smarty->assign("CtxMaxDisconnectionTimeF",
502                       $this->mungedObject->getCtxMaxDisconnectionTimeF()?"checked":"");
503       $smarty->assign("CtxMaxIdleTimeF",
504                       $this->mungedObject->getCtxMaxIdleTimeF()?"checked":"");
506       /* Fill sambaUserWorkstations */
507       $ws= split(",", $this->sambaUserWorkstations);
508       sort($ws);
509       
510       /* Tidy checks for empty option, and smarty will produce one if array[0]="" */
511       if(($ws[0]=="")&&(count($ws)==1)) $ws=array();
514       $smarty->assign("workstations", $ws);
515       $smarty->assign("sambaUserWorkstationACL", chkacl($this->acl,"sambauserworkstation"));
516     }
518     /* Variables */
519     foreach($this->attributes as $val){
520       $smarty->assign("$val", $this->$val);
521       $smarty->assign("$val"."ACL", chkacl($this->acl,$val));
522     }
524     
525     /* 'sambaAcctFlags' checkboxes */
526     /* Check for 'lock-account'-flag: 'D' or 'L' */
527     if (is_integer(strpos($this->sambaAcctFlags, "D")) ||
528         is_integer(strpos($this->sambaAcctFlags, "L"))) {
529         $smarty->assign("flagsD", "checked");
530     } else {
531         $smarty->assign("flagsD", "");
532     }
533     
534     /* Check for no_password_required flag 'N' */
535     if (is_integer(strpos($this->sambaAcctFlags, "N"))) {
536         $smarty->assign("flagsN", "checked");
537     } else {
538         $smarty->assign("flagsN", "");
539     }
541     /* 'normal' Checkboxes */
542     if ($this->pwdCanChange=="1"){
543       $smarty->assign("flagsP", "checked");
544     } else {
545       $smarty->assign("flagsP", "");
546     }
547     if ($this->password_expires=="1"){
548       $smarty->assign("flagsC", "checked");
549     } else {
550       $smarty->assign("flagsC", "");
551     }
552     if ($this->logon_time_set=="1"){
553       $smarty->assign("flagsT", "checked");
554     } else {
555       $smarty->assign("flagsT", "");
556     }
557     if ($this->logoff_time_set=="1"){
558       $smarty->assign("flagsO", "checked");
559     } else {
560       $smarty->assign("flagsO", "");
561     }
562     if ($this->kickoff_time_set=="1"){
563       $smarty->assign("flagsK", "checked");
564     } else {
565       $smarty->assign("flagsK", "");
566     }
567     
568     $smarty->assign("allow_pwchangeACL", chkacl($this->acl, "allow_pwchange"));
569     $smarty->assign("password_expiresACL", chkacl($this->acl, "password_expires"));
570     $smarty->assign("no_password_requiredACL", chkacl($this->acl, "no_password_required"));
571     $smarty->assign("temporary_disableACL", chkacl($this->acl, "temporary_disable"));
572     $smarty->assign("sambaDomainNameACL", chkacl($this->acl, "sambaDomainName"));
573     $smarty->assign("logon_time_setACL", chkacl($this->acl, "logon_time_set"));
574     $smarty->assign("logoff_time_setACL", chkacl($this->acl, "logoff_time_set"));
575     $smarty->assign("kickoff_time_setACL", chkacl($this->acl, "kickoff_time_set"));
576     $smarty->assign("sambaLogonTimeACL", chkacl($this->acl, "sambaLogonTime"));
577     $smarty->assign("sambaLogoffTimeACL", chkacl($this->acl, "sambaLogoffTime"));
578     $smarty->assign("sambaKickoffTimeACL", chkacl($this->acl, "sambaKickoffTime"));
581     /* In case of javascript, disable some fields on demand */
582     if ($this->samba3 && $_SESSION['js']){
583       foreach($this->mungedObject->getOnDemandFlags() as $key => $value) {
584         $smarty->assign("$key", "$value");
585       }
586     }
588     /* Show main page */
589     if ($this->samba3){
590       $display.= $smarty->fetch (get_template_path('samba3.tpl', TRUE, dirname(__FILE__)));
591     } else {
592       $display.= $smarty->fetch (get_template_path('samba2.tpl', TRUE, dirname(__FILE__)));
593     }
595     return ($display);
596   }
598   function remove_from_parent()
599   {
600     /* Cancel if there's nothing to do here */
601    if (!$this->initially_was_account){
602      return;
603    }
604     
605     /* include global link_info */
606     $ldap= $this->config->get_ldap_link();
608     plugin::remove_from_parent();
610     /* Keep uid attribute for gosaAccount */
611     unset($this->attrs['uid']);
612     unset($this->attrs['uidNumber']);
613     unset($this->attrs['gidNumber']);
614     @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__,
615         $this->attributes, "Save");
616     $ldap->cd($this->dn);
617     $ldap->modify($this->attrs);
618     show_ldap_error($ldap->get_error());
620     /* Optionally execute a command after we're done */
621     $this->handle_post_events("remove");
622   }
625   /* Check for input problems */
626   function check()
627   {
628     $message= array();
630     if ($this->samba3){
632       /* Strings */
633       foreach (array( "sambaHomePath" => _("Home directory"),
634             "sambaProfilePath" => _("Profile path")) as $key => $val){
635         if (!$this->mungedObject->is_samba_path($this->$key)){
636           $message[]= sprintf(_("The value specified as '%s' contains invalid characters!"), $val);
637         }
638       }
640       /* Numeric values */
641       foreach (array(   "CtxMaxConnectionTime" => _("Connection"),
642             "CtxMaxDisconnectionTime" => _("Disconnection"),
643             "CtxMaxIdleTime" => _("IDLE")) as $key => $val){
645         if (isset($this->mungedObject->ctx[$key]) && !is_id($this->mungedObject->ctx[$key]) && $val != 0){
646           $message[]= sprintf(_("The timeout property '%s' is checked and contains invalid or no characters!"), $val);
647         }
648       }
650       /* Too many workstations? Windows usrmgr only supports eight */
651       if (substr_count($this->sambaUserWorkstations, ",") >= 8){
652         $message[]= _("The windows user manager only allows eight clients. You've specified more than eight.");
653       }
654     }
656     return ($message);
657   }
660   /* Save data to object */
661   function save_object()
662   {
663     /* We only care if we are on the sambaTab... */
664     if (isset($_POST['sambaTab'])){
665       plugin::save_object();
667       /* Take care about access options */
668       if (chkacl ($this->acl, "acctFlags") == ""){
669         if ($this->samba3){
670           $attrname= "sambaPwdCanChange";
671         } else {
672           $attrname= "pwdCanChange";
673         }
674         if (isset($_POST["allow_pwchange"]) && $_POST["allow_pwchange"] == 1){
675           $tmp= 1;
676         } else {
677           $tmp= 0;
678         }
679         if ($this->$attrname != $tmp){
680           $this->is_modified= TRUE;
681         }
682         $this->pwdCanChange= $tmp;
683         $this->sambaPwdCanChange= $tmp;
684       }
685       $tmp= "UX";
686       if (isset($_POST["no_password_required"])){
687         if ($_POST["no_password_required"] == 1){
688           $tmp.= "N";
689         }
690       }
691       if (isset($_POST["password_expires"])){
692         if ($_POST["password_expires"] == 1){
693           $this->password_expires= 1;
694         }
695       } else {
696         $this->password_expires= 0;
697       }
698       if (isset($_POST["temporary_disable"])){
699         if ($_POST["temporary_disable"] == 1){
700           if (is_integer(strpos($this->sambaAcctFlags, "L"))) {
701             $tmp.= "L";
702           } else {
703             $tmp.= "D";
704           }
705         }
706       }
707       if (isset($_POST["logon_time_set"])){
708         if ($_POST["logon_time_set"] == 1){
709           $this->logon_time_set= 1;
710         }
711       } else {
712         $this->logon_time_set= 0;
713       }
714       if (isset($_POST["logoff_time_set"])){
715         if ($_POST["logoff_time_set"] == 1){
716           $this->logoff_time_set= 1;
717         }
718       } else {
719         $this->logoff_time_set= 0;
720       }
721       if (isset($_POST["kickoff_time_set"])){
722         if ($_POST["kickoff_time_set"] == 1){
723           $this->kickoff_time_set= 1;
724         }
725       } else {
726         $this->kickoff_time_set= 0;
727       }
728       
729       $fill= "";
730       for ($i= strlen($tmp); $i<12; $i++){
731         $fill.= " ";
732       }
734       $tmp= "[$tmp$fill]";
736       /* Only save if acl's are set */
737       if (chkacl ($this->acl, "acctFlags") == ""){
738         if ($this->samba3){
739           $attrname= "sambaAcctFlags";
740         } else {
741           $attrname= "acctFlags";
742         }
743         if ($this->$attrname != $tmp){
744           $this->is_modified= TRUE;
745         }
746         $this->$attrname= $tmp;
747       }
749       /* Save sambaDomain attribute */
750       if (chkacl ($this->acl, "sambaDomainName") == "" && $this->samba3 &&
751           isset ($_POST['sambaDomainName'])){
753         $this->sambaDomainName= validate($_POST['sambaDomainName']);
754       }
756       /* Save CTX values */
757       if ($this->samba3){
758         /* Save obvious values */
759         foreach($this->ctxattributes as $val){
760           if (isset($_POST[$val]) && chkacl($this->acl, "$val") == ""){
761             if (get_magic_quotes_gpc()) {
762               $this->mungedObject->ctx[$val]= stripcslashes(validate($_POST[$val]));
763             } else {
764               $this->mungedObject->ctx[$val]= validate($_POST[$val]);
765             }
766           }
767         }
769         /* Save checkbox states. */
770         $this->mungedObject->setTsLogin(!isset($_POST['tslogin'])
771                         && chkacl($this->acl, "tslogin") == "");
772         // Need to do some index checking to avoid messages like "index ... not found"
773         if(isset($_POST['brokenconn'])) {
774           $this->mungedObject->setBrokenConn($_POST['brokenconn'] == '1'
775                           && chkacl($this->acl, "brokenconn") == "");
776         }
777         if(isset($_POST['reconn'])) {
778           $this->mungedObject->setReConn($_POST['reconn'] == '1'
779                           && chkacl($this->acl, "reconn") == "");
780         }
781         $this->mungedObject->setInheritMode(isset($_POST['inherit'])
782                         && chkacl($this->acl, "inherit") == "");
783         $this->mungedObject->setCtxMaxConnectionTimeF(!isset($_POST['CtxMaxConnectionTimeF'])
784                         && chkacl($this->acl, "CtxMaxConnectionTime") == "");
785         $this->mungedObject->setCtxMaxDisconnectionTimeF(
786                         !isset($_POST['CtxMaxDisconnectionTimeF']) 
787                         && chkacl($this->acl, "CtxMaxDisconnectionTime") == "");
788         $this->mungedObject->setCtxMaxIdleTimeF(!isset($_POST['CtxMaxIdleTimeF'])
789                         && chkacl($this->acl, "CtxMaxIdleTime") == "");
790         $this->mungedObject->setConnectClientDrives(isset($_POST['connectclientdrives'])
791                         && chkacl($this->acl, "connectclientdrives") == "");
792         $this->mungedObject->setConnectClientPrinters(isset($_POST['connectclientprinters'])  
793                         && chkacl($this->acl, "connectclientprinters") == "");
794         $this->mungedObject->setDefaultPrinter(isset($_POST['defaultprinter'])
795                         && chkacl($this->acl, "defaultprinter") == "");
797         /* Save combo boxes. Takes two values */
798         if(isset($_POST['reconn'])) {
799           $this->mungedObject->setShadow((isset($_POST['shadow'])
800                           && chkacl($this->acl, "shadow") == ""), $_POST['shadow']);
801         }
803         /* Check for changes */
804         if ($this->sambaMungedDial != $this->mungedObject->getMunged()){
805           $this->is_modified= TRUE;
806         }
807       }
808     }
809   }
812   /* Save to LDAP */
813   function save()
814   {
815     /* Load uid and gid of this 'dn' */
816     $ldap= $this->config->get_ldap_link();
817     $ldap->cat($this->dn);
818     $tmp= $ldap->fetch();
819     $this->uidNumber= $tmp['uidNumber'][0];
820     $this->gidNumber= $tmp['gidNumber'][0];
822     plugin::save();
824     /* Remove objectClass for sambaIdmapEntry */
825     $tmp= array();
826     for ($i= 0; $i<count($this->attrs["objectClass"]); $i++){
827       if ($this->attrs['objectClass'][$i] != 'sambaIdmapEntry'){
828         $tmp[]= $this->attrs['objectClass'][$i];
829       }
830     }
831     $this->attrs['objectClass']= $tmp;
833     /* Generate rid / primaryGroupId */
834     if ($this->samba3){
835       if (!isset($this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName]['SID'])){
836         print_red (_("Warning: This account has an undefined samba SID assigned. The problem can not be fixed by GOsa!"));
837       } else {
838         $this->SID= $this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName]['SID'];
839         $this->ridBase= $this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName]['RIDBASE'];
840       }
842       /* Need to generate a new uniqe uid/gid combination? */
843       if ($this->sambaSID == "" || $this->orig_sambaDomainName != $this->sambaDomainName){
844         $uidNumber= $this->uidNumber;
845         while(TRUE){
846           $sid= $this->SID."-".($uidNumber*2 + $this->ridBase);
847           $ldap->cd($this->config->current['BASE']);
848           $ldap->search("(sambaSID=$sid)", array("sambaSID"));
849           if ($ldap->count() == 0){
850             break;
851           }
852           $uidNumber++;
853         }
854         $this->attrs['sambaSID']= $sid;
856         /* Check for users primary group */
857         $ldap->cd($this->config->current['BASE']);
858         $ldap->search("(&(objectClass=posixGroup)(gidNumber=".$this->gidNumber."))",
859                       array("cn"));
860         if ($ldap->count() != 1){
861           print_red(_("Warning: Can't identify users primary group - no conversion to a samba group possible!"));
862         } else {
863           $attrs= $ldap->fetch();
864           $g= new group($this->config, $ldap->getDN());
865           if ($g->sambaSID == ""){
866             $g->sambaDomainName= $this->sambaDomainName;
867             $g->smbgroup= TRUE;
868             $g->save ();
869           }
870           $this->attrs['sambaPrimaryGroupSID']= $g->sambaSID;
871         }
872       }
874       if ($this->sambaHomeDrive == ""){
875         $this->attrs["sambaHomeDrive"]= array();
876       }
878       /* Generate munged dial value */
879       $this->attrs["sambaMungedDial"]= $this->mungedObject->getMunged();
881       /* User wants me to fake the idMappings? This is useful for
882          making winbind resolve the user names in a reasonable amount
883          of time in combination with larger databases. */
884       if (isset($this->config->current['SAMBAIDMAPPING']) &&
885           preg_match('/true/i', $this->config->current['SAMBAIDMAPPING'])){
886         $this->attrs['objectClass'][]= "sambaIdmapEntry";
887       }
890       /* Password expiery */
891       if ($this->password_expires == "1"){
892         $this->attrs['sambaPwdMustChange']= $this->sambaPwdMustChange;
893       } else {
894         $this->attrs['sambaPwdMustChange']= array();
895       }
896       /* Make sure not to save zero in sambaPwdLastset */
897       if ($this->sambaPwdLastSet != "0"){
898         $this->attrs['sambaPwdLastSet']= $this->sambaPwdLastSet;
899       } else {
900         $this->attrs['sambaPwdLastSet']= array();
901       }
902       /* Account expiery */
903       if ($this->logon_time_set == "1"){
904         $this->attrs['sambaLogonTime']= $this->sambaLogonTime;
905       } else {
906         $this->attrs['sambaLogonTime']= array();
907       }
908       if ($this->logoff_time_set == "1"){
909         $this->attrs['sambaLogoffTime']= $this->sambaLogoffTime;
910       } else {
911         $this->attrs['sambaLogoffTime']= array();
912       }
913       if ($this->kickoff_time_set == "1"){
914         # Add one day in unixtime format to be compatible with usrmgr
915         //$this->attrs['sambaKickoffTime']= $this->sambaKickoffTime + 86400; 
916         $this->attrs['sambaKickoffTime']= $this->sambaKickoffTime; //hickert 
917       } else {
918         $this->attrs['sambaKickoffTime']= array();
919       }
920     } else {
921     /* Not samba3 */
922       $this->attrs['rid']= $this->uidNumber*2 + 1000;
923       $this->attrs['primaryGroupID']= $this->gidNumber*2 +1001;
925       if ($this->homeDrive == ""){
926         $this->attrs["homeDrive"]= array();
927       }
929       /* Password expiery */
930       if ($this->password_expires == "1"){
931         $this->attrs['pwdMustChange']= $this->pwdMustChange;
932       } else {
933         $this->attrs['pwdMustChange']= 2147483647;
934       }
935       /* Make sure not to save zero in pwdLastset */
936       if ($this->pwdLastSet != "0"){
937         $this->attrs['pwdLastSet']= $this->pwdLastSet;
938       } else {
939         $this->attrs['pwdLastSet']= array();
940       }
941       /* Account expiery */
942       if ($this->logon_time_set == "1"){
943         $this->attrs['logonTime']= $this->logonTime;
944       } else {
945         $this->attrs['logonTime']= array();
946       }
947       if ($this->logoff_time_set == "1"){
948         $this->attrs['logoffTime']= $this->logoffTime;
949       } else {
950         $this->attrs['logoffTime']= array();
951       }
952       if ($this->kickoff_time_set == "1"){
953         # Add one day in unixtime format to be compatible with usrmgr
954         $this->attrs['kickoffTime']= $this->kickoffTime + 86400;
955       } else {
956         $this->attrs['kickoffTime']= array();
957       }
958     }
960     /* Write back to ldap */
961     $ldap->cd($this->dn);
962     $ldap->modify($this->attrs);
963     show_ldap_error($ldap->get_error());
965     /* Optionally execute a command after we're done */
966     if ($this->initially_was_account == $this->is_account){
967       if ($this->is_modified){
968         $this->handle_post_events("modify");
969       }
970     } else {
971       $this->handle_post_events("add");
972     }
974   }
976   function adapt_from_template($dn)
977   {
978     plugin::adapt_from_template($dn);
979     $this->sambaSID= "";
980     $this->sambaPrimaryGroupSID= "";
981   }
985 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
986 ?>