Code

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