Code

Search in subtrees, with line ....
[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     /* Do we need to flip is_account state? */
187     if (isset($_POST['modify_state'])){
188       $this->is_account= !$this->is_account;
189     }
190     /* Do we represent a valid account? */
191     if (!$this->is_account && $this->parent == NULL){
192       $display= "<img alt=\"\"src=\"images/stop.png\" align=\"middle\">&nbsp;<b>".
193         _("This account has no samba extensions.")."</b>";
194       $display.= back_to_main();
195       return ($display);
196     }
198     /* Show tab dialog headers */
199     $display= "";
200     if ($this->parent != NULL){
201       if ($this->is_account){
202         $display= $this->show_header(_("Remove samba account"),
203             _("This account has samba features enabled. You can disable them by clicking below."));
204       } else {
205         $obj= $this->parent->by_object['posixAccount'];
207         /* Samba3 dependency on posix accounts are enabled
208            in the moment, because I need to rely on unique
209            uidNumbers. There'll be a better solution later
210            on. */
211         if ($obj->is_account){
213           $display= $this->show_header(_("Create samba account"),
214               _("This account has samba features disabled. You can enable them by clicking below."));
215         } else {
216           $display= $this->show_header(_("Create samba account"),
217               _("This account has samba features disabled. Posix features are needed for samba accounts, enable them first."), TRUE);
218         }
219         return ($display);
220       }
221     }
223     /* Prepare templating */
224     $smarty= get_smarty();
226 /* PHP Fehler "Undefined index: sambaPwdMustChangeACL" */
227     #hickert test
228     $smarty->assign("sambaPwdMustChangeACL", chkacl($this->acl, "sambaPwdMustChangeACL"));
229     #hickert test
230     $smarty->assign("sambaPwdMustChange",$this->sambaPwdMustChange);
232     if ($this->sambaPwdMustChange=="0"){
233       $date= getdate();
234     } else {
235       $date= getdate($this->sambaPwdMustChange);
236     }
238     if ($this->sambaLogonTime=="2147483647" || $this->sambaLogonTime=="0"){
239       $sambaLogonTime_date= getdate();
240     } else {
241       $sambaLogonTime_date= getdate($this->sambaLogonTime);
242     }
243     
244     if ($this->sambaLogoffTime=="2147483647" || $this->sambaLogoffTime=="0"){
245       $sambaLogoffTime_date= getdate();
246     } else {
247       $sambaLogoffTime_date= getdate($this->sambaLogoffTime);
248     }
249     
250     if ($this->sambaKickoffTime=="2147483647" || $this->sambaKickoffTime=="0"){
251       $sambaKickoffTime_date= getdate();
252     } else {
253       $sambaKickoffTime_date= getdate($this->sambaKickoffTime);
254     }
256     /* Remove user workstations? */
257     if (isset($_POST["delete_ws"]) && isset($_POST['workstation_list'])){
258       $tmp= $this->sambaUserWorkstations;
259       foreach($_POST['workstation_list'] as $name){
260         $tmp= preg_replace("/$name/", '', $tmp);
261         $this->is_modified= TRUE;
262       }
263       $tmp= preg_replace('/,+/', ',', $tmp);
264       $this->sambaUserWorkstations= trim($tmp, ',');
265     }
267     /* Add user workstation? */
268     if (isset($_POST["add_ws"])){
269       $this->show_ws_dialog= TRUE;
270       $this->dialog= TRUE;
271     }
273     /* Add user workstation finished? */
274     if (isset($_POST["add_ws_finish"]) || isset($_POST["add_ws_cancel"])){
275       $this->show_ws_dialog= FALSE;
276       $this->dialog= FALSE;
277     }
279     /* Add user workstation? */
280     if (isset($_POST["add_ws_finish"]) && isset($_POST['wslist'])){
281       $tmp= $this->sambaUserWorkstations;
282       foreach($_POST['wslist'] as $ws){
283         $tmp.= ",$ws";
284       }
285       $tmp= preg_replace('/,+/', ',', $tmp);
286       $this->sambaUserWorkstations= trim($tmp, ',');
287       $this->is_modified= TRUE;
288     }
290     /* Show ws dialog */
291     if ($this->show_ws_dialog){
293       /* Save data */
294       $sambafilter= get_global("sambafilter");
295       foreach( array("depselect", "regex") as $type){
296         if (isset($_POST[$type])){
297           $sambafilter[$type]= $_POST[$type];
298         }
299       }
300       if (isset($_GET['search'])){
301         $s= mb_substr($_GET['search'], 0, 1, "UTF8")."*";
302         if ($s == "**"){
303           $s= "*";
304         }
305         $sambafilter['regex']= $s;
306       }
307       register_global("sambafilter", $sambafilter);
309       /* Get workstation list */
310       $exclude= "";
311       foreach(split(',', $this->sambaUserWorkstations) as $ws){
312         $exclude.= "(cn=$ws$)";
313       }
314       if ($exclude != ""){
315         $exclude= "(!(|$exclude))";
316       }
317       $acl= array($this->config->current['BASE'] => ":all");
318       $regex= $sambafilter['regex'];
319       $filter= "(&(objectClass=sambaSAMAccount)$exclude(uid=*$)(|(uid=$regex)(cn=$regex)))";
320       $res= get_list($acl, "$filter", TRUE, $sambafilter['depselect'], array("uid"), TRUE);
321       $wslist= array();
322       foreach ($res as $attrs){
323         $wslist[]= preg_replace('/\$/', '', $attrs['uid'][0]);
324       }
325       asort($wslist);
327       $smarty->assign("search_image", get_template_path('images/search.png'));
328       $smarty->assign("launchimage", get_template_path('images/small_filter.png'));
329       $smarty->assign("tree_image", get_template_path('images/tree.png'));
330       $smarty->assign("deplist", $this->config->idepartments);
331       $smarty->assign("alphabet", generate_alphabet());
332       foreach( array("depselect", "regex") as $type){
333         $smarty->assign("$type", $sambafilter[$type]);
334       }
335       $smarty->assign("hint", print_sizelimit_warning());
336       $smarty->assign("wslist", $wslist);
337       $smarty->assign("apply", apply_filter());
338       $display= $smarty->fetch (get_template_path('samba3_workstations.tpl', TRUE,
339                                 dirname(__FILE__)));
340       return ($display);
341     }
343     /* Fill calendar */
344     $days= array();
345     for($d= 1; $d<32; $d++){
346       $days[]= $d;
347     }
348     $years= array();
349     for($y= $date['year']-4; $y<$date['year']+4; $y++){
350       $years[]= $y;
351     }
352     $months= array(_("January"), _("February"), _("March"), _("April"),
353         _("May"), _("June"), _("July"), _("August"), _("September"),
354         _("October"), _("November"), _("December"));
355     $smarty->assign("day", $date["mday"]);
356     $smarty->assign("days", $days);
357     $smarty->assign("months", $months);
358     $smarty->assign("month", $date["mon"]-1);
359     $smarty->assign("years", $years);
360     $smarty->assign("year", $date["year"]);
361     
362     $sambaLogonTime_days= array();
363     for($d= 1; $d<32; $d++){
364       $sambaLogonTime_days[]= $d;
365     }
366     $sambaLogonTime_years= array();
367     for($y= $date['year']-4; $y<$date['year']+4; $y++){
368       $sambaLogonTime_years[]= $y;
369     }
370     $sambaLogonTime_months= array(_("January"), _("February"), _("March"), _("April"),
371         _("May"), _("June"), _("July"), _("August"), _("September"),
372         _("October"), _("November"), _("December"));
373     $smarty->assign("sambaLogonTime_day", $sambaLogonTime_date["mday"]);
374     $smarty->assign("sambaLogonTime_days", $sambaLogonTime_days);
375     $smarty->assign("sambaLogonTime_months", $sambaLogonTime_months);
376     $smarty->assign("sambaLogonTime_month", $sambaLogonTime_date["mon"]-1);
377     $smarty->assign("sambaLogonTime_years", $sambaLogonTime_years);
378     $smarty->assign("sambaLogonTime_year", $sambaLogonTime_date["year"]);
379     
380     $sambaLogoffTime_days= array();
381     for($d= 1; $d<32; $d++){
382       $sambaLogoffTime_days[]= $d;
383     }
384     $sambaLogoffTime_years= array();
385     for($y= $date['year']-4; $y<$date['year']+4; $y++){
386       $sambaLogoffTime_years[]= $y;
387     }
388     $sambaLogoffTime_months= array(_("January"), _("February"), _("March"), _("April"),
389         _("May"), _("June"), _("July"), _("August"), _("September"),
390         _("October"), _("November"), _("December"));
391     $smarty->assign("sambaLogoffTime_day", $sambaLogoffTime_date["mday"]);
392     $smarty->assign("sambaLogoffTime_days", $sambaLogoffTime_days);
393     $smarty->assign("sambaLogoffTime_months", $sambaLogoffTime_months);
394     $smarty->assign("sambaLogoffTime_month", $sambaLogoffTime_date["mon"]-1);
395     $smarty->assign("sambaLogoffTime_years", $sambaLogoffTime_years);
396     $smarty->assign("sambaLogoffTime_year", $sambaLogoffTime_date["year"]);
397     
398     $sambaKickoffTime_days= array();
399     for($d= 1; $d<32; $d++){
400       $sambaKickoffTime_days[]= $d;
401     }
402     $sambaKickoffTime_years= array();
403     for($y= $date['year']-4; $y<$date['year']+4; $y++){
404       $sambaKickoffTime_years[]= $y;
405     }
406     $sambaKickoffTime_months= array(_("January"), _("February"), _("March"), _("April"),
407         _("May"), _("June"), _("July"), _("August"), _("September"),
408         _("October"), _("November"), _("December"));
409     $smarty->assign("sambaKickoffTime_day", $sambaKickoffTime_date["mday"]-1);
410     $smarty->assign("sambaKickoffTime_days", $sambaKickoffTime_days);
411     $smarty->assign("sambaKickoffTime_months", $sambaKickoffTime_months);
412     $smarty->assign("sambaKickoffTime_month", $sambaKickoffTime_date["mon"]-1);
413     $smarty->assign("sambaKickoffTime_years", $sambaKickoffTime_years);
414     $smarty->assign("sambaKickoffTime_year", $sambaKickoffTime_date["year"]);
415      
416     /* Fill boxes */
417     if ($this->samba3){
418       $domains= array();
419       foreach($this->config->data['SERVERS']['SAMBA'] as $name => $content){
420         $domains[]= $name;
421       }
422       $smarty->assign("domains", $domains);
423     }
424     $letters= array();
425     for ($i= 68; $i<91; $i++){
426       $letters[]= chr($i).":";
427     }
428     $smarty->assign("drives", $letters);
430     /* Fill terminal server settings */
431     if ($this->samba3){
432       foreach ($this->ctxattributes as $attr){
433         /* Fill common attributes */
434         if (isset($this->mungedObject->ctx[$attr])){
435           $smarty->assign("$attr", $this->mungedObject->ctx[$attr]);
436           // Set field  to blank if value is 0
437           if(in_array($attr, array("CtxMaxConnectionTime", "CtxMaxDisconnectionTime", "CtxMaxIdleTime"))) {
438             if($this->mungedObject->ctx[$attr] == 0) {
439               $smarty->assign("$attr", "");
440             }
441           }
442         } else {
443           $smarty->assign("$attr", "");
444         }
445         $smarty->assign("$attr"."ACL", chkacl($this->acl, $attr));
446       }
448       /* Assign enum values for preset items */
449       $shadowModeVals= array( "0" => _("disabled"),
450           "1" => _("input on, notify on"),
451           "2" => _("input on, notify off"),
452           "3" => _("input off, notify on"),
453           "4" => _("input off, nofify off"));
455       $brokenConnModeVals= array(       "0" => _("disconnect"),
456           "1" => _("reset"));
458       $reConnModeVals= array( "0" => _("from any client"),
459           "1" => _("from previous client only"));
461       /* Fill preset items */
462       $smarty->assign("shadow", $shadowModeVals);
463       $smarty->assign("brokenconn", $brokenConnModeVals);
464       $smarty->assign("reconn", $reConnModeVals);
466       /* Fill preset items with values */
467       $smarty->assign("shadowmode", $this->mungedObject->getShadow());
468       $smarty->assign("shadowACL", chkacl($this->acl,"shadow"));
469       $smarty->assign("brokenconnmode", $this->mungedObject->getBrokenConn());
470       $smarty->assign("brokenconnACL", chkacl($this->acl,"brokenconn"));
471       $smarty->assign("reconnmode", $this->mungedObject->getReConn());
472       $smarty->assign("reconnACL", chkacl($this->acl,"reconn"));
474       /* Set checkboxes to checked or unchecked state */
475       $smarty->assign("tslogin", $this->mungedObject->getTsLogin()?"checked":"");
476       $smarty->assign("tsloginACL", chkacl($this->acl,"tslogin"));
478       $smarty->assign("inherit", $this->mungedObject->getInheritMode()?"checked":"");
479       $smarty->assign("inheritACL", chkacl($this->acl,"inherit"));
482       $smarty->assign("connectclientdrives",
483                       $this->mungedObject->getConnectClientDrives()?"checked":"");
484       $smarty->assign("connectclientdrivesACL", chkacl($this->acl,"connectclientdrives"));
485       $smarty->assign("connectclientprinters",
486                       $this->mungedObject->getConnectClientPrinters()?"checked":"");
487       $smarty->assign("connectclientprintersACL", chkacl($this->acl,"connectclientprinters"));
488       $smarty->assign("defaultprinter",
489                       $this->mungedObject->getDefaultPrinter()?"checked":"");
490       $smarty->assign("defaultprinterACL", chkacl($this->acl,"defaultprinter"));
491       $smarty->assign("CtxMaxConnectionTimeF",
492                       $this->mungedObject->getCtxMaxConnectionTimeF()?"checked":"");
493       $smarty->assign("CtxMaxDisconnectionTimeF",
494                       $this->mungedObject->getCtxMaxDisconnectionTimeF()?"checked":"");
495       $smarty->assign("CtxMaxIdleTimeF",
496                       $this->mungedObject->getCtxMaxIdleTimeF()?"checked":"");
498       /* Fill sambaUserWorkstations */
499       $ws= split(",", $this->sambaUserWorkstations);
500       sort($ws);
501       $smarty->assign("workstations", $ws);
502       $smarty->assign("sambaUserWorkstationACL", chkacl($this->acl,"sambauserworkstation"));
503     }
505     /* Variables */
506     foreach($this->attributes as $val){
507       $smarty->assign("$val", $this->$val);
508       $smarty->assign("$val"."ACL", chkacl($this->acl,$val));
509     }
511     
512     /* 'sambaAcctFlags' checkboxes */
513     /* Check for 'lock-account'-flag: 'D' or 'L' */
514     if (is_integer(strpos($this->sambaAcctFlags, "D")) ||
515         is_integer(strpos($this->sambaAcctFlags, "L"))) {
516         $smarty->assign("flagsD", "checked");
517     } else {
518         $smarty->assign("flagsD", "");
519     }
520     
521     /* Check for no_password_required flag 'N' */
522     if (is_integer(strpos($this->sambaAcctFlags, "N"))) {
523         $smarty->assign("flagsN", "checked");
524     } else {
525         $smarty->assign("flagsN", "");
526     }
528     /* 'normal' Checkboxes */
529     if ($this->pwdCanChange=="1"){
530       $smarty->assign("flagsP", "checked");
531     } else {
532       $smarty->assign("flagsP", "");
533     }
534     if ($this->password_expires=="1"){
535       $smarty->assign("flagsC", "checked");
536     } else {
537       $smarty->assign("flagsC", "");
538     }
539     if ($this->logon_time_set=="1"){
540       $smarty->assign("flagsT", "checked");
541     } else {
542       $smarty->assign("flagsT", "");
543     }
544     if ($this->logoff_time_set=="1"){
545       $smarty->assign("flagsO", "checked");
546     } else {
547       $smarty->assign("flagsO", "");
548     }
549     if ($this->kickoff_time_set=="1"){
550       $smarty->assign("flagsK", "checked");
551     } else {
552       $smarty->assign("flagsK", "");
553     }
554     
555     $smarty->assign("allow_pwchangeACL", chkacl($this->acl, "allow_pwchange"));
556     $smarty->assign("password_expiresACL", chkacl($this->acl, "password_expires"));
557     $smarty->assign("no_password_requiredACL", chkacl($this->acl, "no_password_required"));
558     $smarty->assign("temporary_disableACL", chkacl($this->acl, "temporary_disable"));
559     $smarty->assign("sambaDomainNameACL", chkacl($this->acl, "sambaDomainName"));
560     $smarty->assign("logon_time_setACL", chkacl($this->acl, "logon_time_set"));
561     $smarty->assign("logoff_time_setACL", chkacl($this->acl, "logoff_time_set"));
562     $smarty->assign("kickoff_time_setACL", chkacl($this->acl, "kickoff_time_set"));
563     $smarty->assign("sambaLogonTimeACL", chkacl($this->acl, "sambaLogonTime"));
564     $smarty->assign("sambaLogoffTimeACL", chkacl($this->acl, "sambaLogoffTime"));
565     $smarty->assign("sambaKickoffTimeACL", chkacl($this->acl, "sambaKickoffTime"));
568     /* In case of javascript, disable some fields on demand */
569     if ($this->samba3 && $_SESSION['js']){
570       foreach($this->mungedObject->getOnDemandFlags() as $key => $value) {
571         $smarty->assign("$key", "$value");
572       }
573     }
575     /* Show main page */
576     if ($this->samba3){
577       $display.= $smarty->fetch (get_template_path('samba3.tpl', TRUE, dirname(__FILE__)));
578     } else {
579       $display.= $smarty->fetch (get_template_path('samba2.tpl', TRUE, dirname(__FILE__)));
580     }
582     return ($display);
583   }
585   function remove_from_parent()
586   {
587     /* Cancel if there's nothing to do here */
588    if (!$this->initially_was_account){
589      return;
590    }
591     
592     /* include global link_info */
593     $ldap= $this->config->get_ldap_link();
595     plugin::remove_from_parent();
597     /* Keep uid attribute for gosaAccount */
598     unset($this->attrs['uid']);
599     unset($this->attrs['uidNumber']);
600     unset($this->attrs['gidNumber']);
601     @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__,
602         $this->attributes, "Save");
603     $ldap->cd($this->dn);
604     $ldap->modify($this->attrs);
605     show_ldap_error($ldap->get_error());
607     /* Optionally execute a command after we're done */
608     $this->handle_post_events("remove");
609   }
612   /* Check for input problems */
613   function check()
614   {
615     $message= array();
617     if ($this->samba3){
619       /* Strings */
620       foreach (array( "sambaHomePath" => _("Home directory"),
621             "sambaProfilePath" => _("Profile path")) as $key => $val){
622         if (!$this->mungedObject->is_samba_path($this->$key)){
623           $message[]= sprintf(_("The value specified as '%s' contains invalid characters!"), $val);
624         }
625       }
627       /* Numeric values */
628       foreach (array(   "CtxMaxConnectionTime" => _("Connection"),
629             "CtxMaxDisconnectionTime" => _("Disconnection"),
630             "CtxMaxIdleTime" => _("IDLE")) as $key => $val){
632         if (isset($this->mungedObject->ctx[$key]) && !is_id($this->mungedObject->ctx[$key]) && $val != 0){
633           $message[]= sprintf(_("The timeout property '%s' is checked and contains invalid or no characters!"), $val);
634         }
635       }
637       /* Too many workstations? Windows usrmgr only supports eight */
638       if (substr_count($this->sambaUserWorkstations, ",") >= 8){
639         $message[]= _("The windows user manager only allows eight clients. You've specified more than eight.");
640       }
641     }
643     return ($message);
644   }
647   /* Save data to object */
648   function save_object()
649   {
650     /* We only care if we are on the sambaTab... */
651     if (isset($_POST['sambaTab'])){
652       plugin::save_object();
654       /* Take care about access options */
655       if (chkacl ($this->acl, "acctFlags") == ""){
656         if ($this->samba3){
657           $attrname= "sambaPwdCanChange";
658         } else {
659           $attrname= "pwdCanChange";
660         }
661         if (isset($_POST["allow_pwchange"]) && $_POST["allow_pwchange"] == 1){
662           $tmp= 1;
663         } else {
664           $tmp= 0;
665         }
666         if ($this->$attrname != $tmp){
667           $this->is_modified= TRUE;
668         }
669         $this->pwdCanChange= $tmp;
670         $this->sambaPwdCanChange= $tmp;
671       }
672       $tmp= "UX";
673       if (isset($_POST["no_password_required"])){
674         if ($_POST["no_password_required"] == 1){
675           $tmp.= "N";
676         }
677       }
678       if (isset($_POST["password_expires"])){
679         if ($_POST["password_expires"] == 1){
680           $this->password_expires= 1;
681         }
682       } else {
683         $this->password_expires= 0;
684       }
685       if (isset($_POST["temporary_disable"])){
686         if ($_POST["temporary_disable"] == 1){
687           if (is_integer(strpos($this->sambaAcctFlags, "L"))) {
688             $tmp.= "L";
689           } else {
690             $tmp.= "D";
691           }
692         }
693       }
694       if (isset($_POST["logon_time_set"])){
695         if ($_POST["logon_time_set"] == 1){
696           $this->logon_time_set= 1;
697         }
698       } else {
699         $this->logon_time_set= 0;
700       }
701       if (isset($_POST["logoff_time_set"])){
702         if ($_POST["logoff_time_set"] == 1){
703           $this->logoff_time_set= 1;
704         }
705       } else {
706         $this->logoff_time_set= 0;
707       }
708       if (isset($_POST["kickoff_time_set"])){
709         if ($_POST["kickoff_time_set"] == 1){
710           $this->kickoff_time_set= 1;
711         }
712       } else {
713         $this->kickoff_time_set= 0;
714       }
715       
716       $fill= "";
717       for ($i= strlen($tmp); $i<12; $i++){
718         $fill.= " ";
719       }
721       $tmp= "[$tmp$fill]";
723       /* Only save if acl's are set */
724       if (chkacl ($this->acl, "acctFlags") == ""){
725         if ($this->samba3){
726           $attrname= "sambaAcctFlags";
727         } else {
728           $attrname= "acctFlags";
729         }
730         if ($this->$attrname != $tmp){
731           $this->is_modified= TRUE;
732         }
733         $this->$attrname= $tmp;
734       }
736       /* Save sambaDomain attribute */
737       if (chkacl ($this->acl, "sambaDomainName") == "" && $this->samba3 &&
738           isset ($_POST['sambaDomainName'])){
740         $this->sambaDomainName= validate($_POST['sambaDomainName']);
741       }
743       /* Save CTX values */
744       if ($this->samba3){
745         /* Save obvious values */
746         foreach($this->ctxattributes as $val){
747           if (isset($_POST[$val]) && chkacl($this->acl, "$val") == ""){
748             if (get_magic_quotes_gpc()) {
749               $this->mungedObject->ctx[$val]= stripcslashes(validate($_POST[$val]));
750             } else {
751               $this->mungedObject->ctx[$val]= validate($_POST[$val]);
752             }
753           }
754         }
756         /* Save checkbox states. */
757         $this->mungedObject->setTsLogin(!isset($_POST['tslogin'])
758                         && chkacl($this->acl, "tslogin") == "");
759         $this->mungedObject->setBrokenConn($_POST['brokenconn'] == '1'
760                         && chkacl($this->acl, "brokenconn") == "");
761         $this->mungedObject->setReConn($_POST['reconn'] == '1'
762                         && chkacl($this->acl, "reconn") == "");
763         $this->mungedObject->setInheritMode(isset($_POST['inherit'])
764                         && chkacl($this->acl, "inherit") == "");
765         $this->mungedObject->setCtxMaxConnectionTimeF(!isset($_POST['CtxMaxConnectionTimeF'])
766                         && chkacl($this->acl, "CtxMaxConnectionTime") == "");
767         $this->mungedObject->setCtxMaxDisconnectionTimeF(
768                         !isset($_POST['CtxMaxDisconnectionTimeF']) 
769                         && chkacl($this->acl, "CtxMaxDisconnectionTime") == "");
770         $this->mungedObject->setCtxMaxIdleTimeF(!isset($_POST['CtxMaxIdleTimeF'])
771                         && chkacl($this->acl, "CtxMaxIdleTime") == "");
772         $this->mungedObject->setConnectClientDrives(isset($_POST['connectclientdrives'])
773                         && chkacl($this->acl, "connectclientdrives") == "");
774         $this->mungedObject->setConnectClientPrinters(isset($_POST['connectclientprinters'])  
775                         && chkacl($this->acl, "connectclientprinters") == "");
776         $this->mungedObject->setDefaultPrinter(isset($_POST['defaultprinter'])
777                         && chkacl($this->acl, "defaultprinter") == "");
779         /* Save combo boxes. Takes two values */
780         $this->mungedObject->setShadow((isset($_POST['shadow'])
781                         && chkacl($this->acl, "shadow") == ""), $_POST['shadow']);
783         /* Check for changes */
784         if ($this->sambaMungedDial != $this->mungedObject->getMunged()){
785           $this->is_modified= TRUE;
786         }
787       }
788     }
789   }
792   /* Save to LDAP */
793   function save()
794   {
795     /* Load uid and gid of this 'dn' */
796     $ldap= $this->config->get_ldap_link();
797     $ldap->cat($this->dn);
798     $tmp= $ldap->fetch();
799     $this->uidNumber= $tmp['uidNumber'][0];
800     $this->gidNumber= $tmp['gidNumber'][0];
802     plugin::save();
804     /* Remove objectClass for sambaIdmapEntry */
805     $tmp= array();
806     for ($i= 0; $i<count($this->attrs["objectClass"]); $i++){
807       if ($this->attrs['objectClass'][$i] != 'sambaIdmapEntry'){
808         $tmp[]= $this->attrs['objectClass'][$i];
809       }
810     }
811     $this->attrs['objectClass']= $tmp;
813     /* Generate rid / primaryGroupId */
814     if ($this->samba3){
815       if (!isset($this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName]['SID'])){
816         print_red (_("Warning: This account has an undefined samba SID assigned. The problem can not be fixed by GOsa!"));
817       } else {
818         $this->SID= $this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName]['SID'];
819         $this->ridBase= $this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName]['RIDBASE'];
820       }
822       /* Need to generate a new uniqe uid/gid combination? */
823       if ($this->sambaSID == "" || $this->orig_sambaDomainName != $this->sambaDomainName){
824         $uidNumber= $this->uidNumber;
825         while(TRUE){
826           $sid= $this->SID."-".($uidNumber*2 + $this->ridBase);
827           $ldap->cd($this->config->current['BASE']);
828           $ldap->search("(sambaSID=$sid)", array("sambaSID"));
829           if ($ldap->count() == 0){
830             break;
831           }
832           $uidNumber++;
833         }
834         $this->attrs['sambaSID']= $sid;
836         /* Check for users primary group */
837         $ldap->cd($this->config->current['BASE']);
838         $ldap->search("(&(objectClass=posixGroup)(gidNumber=".$this->gidNumber."))",
839                       array("cn"));
840         if ($ldap->count() != 1){
841           print_red(_("Warning: Can't identify users primary group - no conversion to a samba group possible!"));
842         } else {
843           $attrs= $ldap->fetch();
844           $g= new group($this->config, $ldap->getDN());
845           if ($g->sambaSID == ""){
846             $g->sambaDomainName= $this->sambaDomainName;
847             $g->smbgroup= TRUE;
848             $g->save ();
849           }
850           $this->attrs['sambaPrimaryGroupSID']= $g->sambaSID;
851         }
852       }
854       if ($this->sambaHomeDrive == ""){
855         $this->attrs["sambaHomeDrive"]= array();
856       }
858       /* Generate munged dial value */
859       $this->attrs["sambaMungedDial"]= $this->mungedObject->getMunged();
861       /* User wants me to fake the idMappings? This is useful for
862          making winbind resolve the user names in a reasonable amount
863          of time in combination with larger databases. */
864       if (isset($this->config->current['SAMBAIDMAPPING']) &&
865           preg_match('/true/i', $this->config->current['SAMBAIDMAPPING'])){
866         $this->attrs['objectClass'][]= "sambaIdmapEntry";
867       }
870       /* Password expiery */
871       if ($this->password_expires == "1"){
872         $this->attrs['sambaPwdMustChange']= $this->sambaPwdMustChange;
873       } else {
874         $this->attrs['sambaPwdMustChange']= array();
875       }
876       /* Account expiery */
877       if ($this->logon_time_set == "1"){
878         $this->attrs['sambaLogonTime']= $this->sambaLogonTime;
879       } else {
880         # $this->attrs['sambaLogonTime']= array();
881         # Set more useful default setting
882         $this->attrs['sambaLogonTime']= 0;
883       }
884       if ($this->logoff_time_set == "1"){
885         $this->attrs['sambaLogoffTime']= $this->sambaLogoffTime;
886       } else {
887         # $this->attrs['sambaLogoffTime']= array();
888         # Set more useful default setting
889         $this->attrs['sambaLogoffTime']= 2147483647;
890       }
891       if ($this->kickoff_time_set == "1"){
892         # Add one day in unixtime format to be compatible with usrmgr
893         $this->attrs['sambaKickoffTime']= $this->sambaKickoffTime + 86400;
894       } else {
895         # $this->attrs['sambaKickoffTime']= array();
896         # Set more useful default setting
897         $this->attrs['sambaKickoffTime']= 2147483647;
898       }
899     } else {
900     /* Not samba3 */
901       $this->attrs['rid']= $this->uidNumber*2 + 1000;
902       $this->attrs['primaryGroupID']= $this->gidNumber*2 +1001;
904       if ($this->homeDrive == ""){
905         $this->attrs["homeDrive"]= array();
906       }
908       /* Password expiery */
909       if ($this->password_expires == "1"){
910         $this->attrs['pwdMustChange']= $this->pwdMustChange;
911       } else {
912         $this->attrs['pwdMustChange']= 2147483647;
913       }
914       /* Account expiery */
915       if ($this->logon_time_set == "1"){
916         $this->attrs['logonTime']= $this->logonTime;
917       } else {
918         $this->attrs['logonTime']= 0;
919       }
920       if ($this->logoff_time_set == "1"){
921         $this->attrs['logoffTime']= $this->logoffTime;
922       } else {
923         $this->attrs['logoffTime']= 2147483647;
924       }
925       if ($this->kickoff_time_set == "1"){
926         # Add one day in unixtime format to be compatible with usrmgr
927         $this->attrs['kickoffTime']= $this->kickoffTime + 86400;
928       } else {
929         $this->attrs['kickoffTime']= 2147483647;
930       }
931     }
933     /* Write back to ldap */
934     $ldap->cd($this->dn);
935     $ldap->modify($this->attrs);
936     show_ldap_error($ldap->get_error());
938     /* Optionally execute a command after we're done */
939     if ($this->initially_was_account == $this->is_account){
940       if ($this->is_modified){
941         $this->handle_post_events("modify");
942       }
943     } else {
944       $this->handle_post_events("add");
945     }
947   }
949   function adapt_from_template($dn)
950   {
951     plugin::adapt_from_template($dn);
952     $this->sambaSID= "";
953     $this->sambaPrimaryGroupSID= "";
954   }
958 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
959 ?>