From ed5a89ec49d19691e6956eb10974035fb0f0ea83 Mon Sep 17 00:00:00 2001 From: hickert Date: Wed, 21 Jul 2010 09:54:51 +0000 Subject: [PATCH] Cleaned up the samba plugin -A lot of very old and unused stuff was removed. git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6@19030 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../personal/samba/class_sambaAccount.inc | 2865 ++++++++--------- gosa-plugins/samba/personal/samba/samba3.tpl | 34 +- 2 files changed, 1298 insertions(+), 1601 deletions(-) diff --git a/gosa-plugins/samba/personal/samba/class_sambaAccount.inc b/gosa-plugins/samba/personal/samba/class_sambaAccount.inc index 15952a510..0398ff7a1 100644 --- a/gosa-plugins/samba/personal/samba/class_sambaAccount.inc +++ b/gosa-plugins/samba/personal/samba/class_sambaAccount.inc @@ -20,1772 +20,1465 @@ class sambaAccount extends plugin { - /* Definitions */ - var $plHeadline= "Samba"; - var $plDescription= "This does something"; - var $view_logged = FALSE; - var $password_expires= 0; - - /* Switch for Samba version */ - var $uidNumber= 65535; - var $gidNumber= 65535; - - /* Samba attributes */ - var $SID= ""; - var $ridBase= 0; - var $sambaSID= ""; - var $sambaPwdLastSet= "0"; - var $sambaLogonTime= "0"; - var $sambaLogoffTime= "2147483647"; - var $sambaKickoffTime= "2147483647"; - var $sambaPwdCanChange= ""; - var $sambaPwdMustChange= "0"; - var $sambaAcctFlags= "[UX ]"; - var $sambaHomePath= ""; - var $sambaHomeDrive= ""; - var $sambaLogonScript= ""; - var $sambaProfilePath= ""; - var $sambaPrimaryGroupSID= ""; - var $sambaDomainName= ""; - var $sambaUserWorkstations= ""; - var $sambaBadPasswordCount= ""; - var $sambaBadPasswordTime= ""; - var $sambaPasswordHistory= ""; - var $sambaLogonHours= ""; - var $orig_sambaDomainName= ""; - var $sambaMungedDial= ""; - var $mungedObject; - - /* Helper */ - var $cache = array(); - var $trustSelect= FALSE; - var $logon_time_set= 0; - var $logoff_time_set= 0; - var $kickoff_time_set= 0; - - /* attribute list for save action */ - var $ctxattributes= array(); - var $attributes= array("sambaSID", "sambaPwdLastSet", "sambaLogonTime", - "sambaLogoffTime", "sambaKickoffTime", "sambaPwdCanChange", - "sambaPwdMustChange", "sambaAcctFlags", "uid", "sambaMungedDial", - "sambaHomePath", "sambaHomeDrive", "sambaLogonScript", - "sambaProfilePath", "sambaPrimaryGroupSID", "sambaDomainName", - "sambaUserWorkstations", "sambaPasswordHistory", - "sambaLogonHours", "sambaBadPasswordTime", - "sambaBadPasswordCount"); - var $objectclasses= array('sambaSamAccount'); - - var $uid= ""; - var $CopyPasteVars = array("kickoff_time_set","logoff_time_set","logon_time_set","mungedObject","orig_sambaDomainName","enforcePasswordChange"); - - var $multiple_support = TRUE; - - /* Only used for multiple edit */ - var $temporary_disable = FALSE; - var $no_password_required = FALSE; - var $no_expiry = FALSE; - var $multiple_sambaUserWorkstations = array(); - - var $enforcePasswordChange = FALSE; - - function sambaAccount (&$config, $dn= NULL) - { - $this->mungedObject= new sambaMungedDial; - $this->ctxattributes= $this->mungedObject->ctxattributes; - - plugin::plugin ($config, $dn); - - /* Setting uid to default */ - if(isset($this->attrs['uid'][0])){ - $this->uid = $this->attrs['uid'][0]; - } - - /* Get samba Domain in case of samba 3 */ - if ($this->sambaSID != ""){ - $this->SID= preg_replace ("/-[^-]+$/", "", $this->sambaSID); - $ldap= $this->config->get_ldap_link(); - $ldap->cd($this->config->current['BASE']); - $ldap->search ("(&(objectClass=sambaDomain)(sambaSID=$this->SID))",array("sambaAlgorithmicRidBase","sambaDomainName")); - if ($ldap->count() != 0){ - $attrs= $ldap->fetch(); - if(isset($attrs['sambaAlgorithmicRidBase'])){ - $this->ridBase= $attrs['sambaAlgorithmicRidBase'][0]; - } else { - $this->ridBase= $this->config->get_cfg_value("sambaRidBase"); + /* Definitions */ + var $plHeadline= "Samba"; + var $plDescription= "This does something"; + var $view_logged = FALSE; + + // Domaind information, gid, sid, rid + var $uid= ""; + var $uidNumber= 65535; + var $gidNumber= 65535; + var $SID= ""; + var $ridBase= 0; + var $sambaSID= ""; + var $orig_sambaDomainName= ""; + var $sambaDomainName= ""; + + // Some of these attributes are just used to + // display the domain information dialog, and + // thus not writte back to the ldap. + var $sambaBadPasswordCount= ""; + var $sambaBadPasswordTime= ""; + var $sambaPasswordHistory= ""; + var $sambaLogonHours= ""; + var $sambaPwdLastSet= "0"; + var $sambaLogonTime= "0"; + var $sambaLogoffTime= "2147483647"; + var $sambaKickoffTime= "2147483647"; + var $sambaPwdCanChange= ""; + var $sambaPwdMustChange= "0"; + + // Flags (checkboxes) to restrict account settings. + var $sambaAcctFlags= "[UX ]"; + var $flag_enforcePasswordChange = FALSE; + var $flag_passwordNeverExpires = FALSE; + var $flag_noPasswordRequired = FALSE; + var $flag_temporaryDisabled = FALSE; + var $flag_cannotChangePassword = FALSE; + + // String values + var $sambaHomePath= ""; + var $sambaHomeDrive= ""; + var $sambaLogonScript= ""; + var $sambaProfilePath= ""; + var $sambaPrimaryGroupSID= ""; + var $sambaUserWorkstations= ""; + + // Munged object. + var $sambaMungedDial= ""; + var $mungedObject; + + /* Helper */ + var $cache = array(); + var $trustSelect= FALSE; + + /* attribute list for save action */ + var $ctxattributes= array(); + var $attributes= array("sambaSID", "sambaPwdLastSet", "sambaLogonTime", + "sambaLogoffTime", "sambaKickoffTime", "sambaPwdCanChange", + "sambaPwdMustChange", "sambaAcctFlags", "uid", "sambaMungedDial", + "sambaHomePath", "sambaHomeDrive", "sambaLogonScript", + "sambaProfilePath", "sambaPrimaryGroupSID", "sambaDomainName", + "sambaUserWorkstations", "sambaPasswordHistory", + "sambaLogonHours", "sambaBadPasswordTime", + "sambaBadPasswordCount"); + var $objectclasses= array('sambaSamAccount'); + + var $CopyPasteVars = array("mungedObject","orig_sambaDomainName"); + + var $multiple_support = TRUE; + var $multiple_sambaUserWorkstations = array(); + + + function sambaAccount (&$config, $dn= NULL) + { + + plugin::plugin ($config, $dn); + + // Set current uid if possible. + if(isset($this->attrs['uid'][0])){ + $this->uid = $this->attrs['uid'][0]; } - if ($this->sambaDomainName == ""){ - $this->sambaDomainName= $attrs['sambaDomainName'][0]; - } - } else { - if ($this->sambaDomainName == ""){ - $this->sambaDomainName= "DEFAULT"; - } - $this->ridBase= $this->config->get_cfg_value("sambaRidBase"); - $this->SID= $this->config->get_cfg_value("sambaSid"); - } - - /* Save in order to compare later on */ - $this->orig_sambaDomainName= $this->sambaDomainName; - } - /* Fill mungedDial field */ - if (isset($this->attrs['sambaMungedDial'])){ - $this->mungedObject->load($this->sambaMungedDial); - } + // Get samba domain and its sid/rid base + if ($this->sambaSID != ""){ + $this->SID= preg_replace ("/-[^-]+$/", "", $this->sambaSID); + $ldap= $this->config->get_ldap_link(); + $ldap->cd($this->config->current['BASE']); + $ldap->search ("(&(objectClass=sambaDomain)(sambaSID=$this->SID))",array("sambaAlgorithmicRidBase","sambaDomainName")); + if ($ldap->count() != 0){ + $attrs= $ldap->fetch(); + if(isset($attrs['sambaAlgorithmicRidBase'])){ + $this->ridBase= $attrs['sambaAlgorithmicRidBase'][0]; + } else { + $this->ridBase= $this->config->get_cfg_value("sambaRidBase"); + } + if ($this->sambaDomainName == ""){ + $this->sambaDomainName= $attrs['sambaDomainName'][0]; + } + } else { + + // Fall back to a 'DEFAULT' domain, if none was found in LDAP. + if ($this->sambaDomainName == "") $this->sambaDomainName= "DEFAULT"; + + // Nothing in ldap, use configured sid and rid values. + $this->ridBase= $this->config->get_cfg_value("sambaRidBase"); + $this->SID= $this->config->get_cfg_value("sambaSid"); + } + } - /* Password expiery */ - if(isset($this->attrs['sambaPwdMustChange']) && - $this->attrs['sambaPwdMustChange'][0] != 0){ - $this->password_expires= 1; - } + // Keep original domain name and plugin status, to be able to detect modifications. + $this->orig_sambaDomainName= $this->sambaDomainName; + $this->initially_was_account= $this->is_account; - if(isset($this->attrs['sambaLogonTime']) && ! ( - $this->attrs['sambaLogonTime'][0] == 0 || - $this->attrs['sambaLogonTime'][0] == 2147483647 - )){ - $this->logon_time_set= 1; - } - if(isset($this->attrs['sambaLogoffTime']) && ! ( - $this->attrs['sambaLogoffTime'][0] == 0 || - $this->attrs['sambaLogoffTime'][0] == 2147483647 - )){ - $this->logoff_time_set= 1; - } - - /* Account expiery */ - if(isset($this->attrs['sambaKickoffTime']) && ! ( - $this->attrs['sambaKickoffTime'][0] == 0 || - $this->attrs['sambaKickoffTime'][0] == 2147483647 - )){ - $this->kickoff_time_set= 1; - } + // Instantiate munged object and load info. + $this->mungedObject= new sambaMungedDial; + $this->ctxattributes= $this->mungedObject->ctxattributes; + if (isset($this->attrs['sambaMungedDial'])){ + $this->mungedObject->load($this->sambaMungedDial); + } - /* Get global filter config */ - if (!session::is_set("sambafilter")){ - $ui= get_userinfo(); - $base= get_base_from_people($ui->dn); - $sambafilter= array( "depselect" => $base, "regex" => "*"); - session::set("sambafilter", $sambafilter); - } - /* Save initial account state */ - $this->initially_was_account= $this->is_account; + // Samba flag description + // ---------------------- + // The Official Samba 3.2.x HOWTO and Reference Guide + // Jelmer R. Vernooij, John H. Terpstra, and Gerald (Jerry) Carter + // May 27, 2009 + // ---------------------- + // D - Account is disabled. + // H - A home directory is required. + // I - An inter-domain trust account. + // L - Account has been auto-locked. + // M - An MNS (Microsoft network service) logon account. + // N - Password not required. + // S - A server trust account. + // T - Temporary duplicate account entry. + // U - A normal user account. + // W - A workstation trust account. + // X - Password does not expire. + + // sambaPwdCanChange + // _______________ + // Specifies the time (UNIX time format) after which the user is allowed to change his password. + // If this attribute is not set, the user will be free to change his password whenever he wants. + + // sambaPwdLastSet + // _______________ + // The integer time in seconds since 1970 when the sambaLMPassword and sambaNTPassword attributes were last set. + + // sambaPwdMustChange + // _______________ + // Specifies the time (UNIX time format) when the user is forced to change his password. If this + // value is set to 0, the user will have to change his password at first login. If this attribute is not + // set, then the password will never expire. + + + // A password change is enforced by using a timestamp in sambaPwdMustChange. + // We simple set it to '0' to enforce a change. + // -------------------------------- + // Normally it contains a timestamp, which specifies and expiration date. + $this->flag_enforcePasswordChange = (isset($this->attrs['sambaPwdMustChange']) && $this->attrs['sambaPwdMustChange'][0] == '0'); + + // A user cannot change his password until the given timestamp has reached. + // We simply set it to max int to disallow a password change till the timestamp reaches 4294967295, + // this is definitly far in the future and thus disallows a password change at all. + // -------------------------------- + // The user is not able to change his password while sambaPwdCanChange is 4294967295 (Integer 32 Bit max) + $this->flag_cannotChangePassword = (isset($this->attrs['sambaPwdCanChange']) && $this->attrs['sambaPwdCanChange'][0] == '4294967295'); + + // A password never expires if 'sambaAcctFlags' contains 'X'. + // (See flags above for details) + $this->flag_passwordNeverExpires = preg_match("/X/i", $this->sambaAcctFlags); + + // A password is NOT required if 'sambaAcctFlags' contains 'N'. + // (See flags above for details) + $this->flag_noPasswordRequired = preg_match("/N/i", $this->sambaAcctFlags); + + // A account is locked if if 'sambaAcctFlags' contains 'L' or 'D'. + // (See flags above for details) + $this->flag_temporaryDisabled = preg_match("/L/i", $this->sambaAcctFlags) || + preg_match("/D/i", $this->sambaAcctFlags); + } + + function execute() + { + /* Call parent execute */ + plugin::execute(); + + /* Log view */ + if($this->is_account && !$this->view_logged){ + $this->view_logged = TRUE; + new log("view","users/".get_class($this),$this->dn); + } - /* Convert kickoff */ - #TODO: use date format - $this->sambaKickoffTime= $this->sambaKickoffTime == 0?"":date('d.m.Y', $this->sambaKickoffTime); - $this->sambaPwdMustChange= $this->sambaPwdMustChange == 2147483647?"":date('d.m.Y', $this->sambaPwdMustChange); + /* Do we need to flip is_account state? */ + if (isset($_POST['modify_state'])){ + $this->is_account= !$this->is_account; + } + /* Do we represent a valid account? */ + if (!$this->is_account && $this->parent === NULL){ + $display= "\"\"src=\"images/small-error.png\" ". + msgPool::noValidExtension(_("Samba")).""; + $display.= back_to_main(); + return ($display); + } - // Enforce password change? - // ------------------------ - // Check if we've the attribute 'sambaPwdLastSet' set and if its value is 0, - // in this case a password change is forced for this account. - $this->enforcePasswordChange = (isset($this->attrs['sambaPwdLastSet']) && $this->attrs['sambaPwdLastSet'][0] == '0'); + $display =""; + if(!$this->multiple_support_active){ + + // Show tab heades to activate and deactivate the samba extension. + $display= ""; + if ($this->parent !== NULL){ + if ($this->is_account){ + $display= $this->show_disable_header(msgPool::removeFeaturesButton(_("Samba")), + msgPool::featuresEnabled(_("Samba"))); + } else { + + // Samba3 dependency on posix accounts are enabled in the moment, because I need to rely on unique + // uidNumbers. There'll be a better solution later on. + $obj= $this->parent->by_object['posixAccount']; + if ($obj->is_account){ + $display= $this->show_enable_header(msgPool::addFeaturesButton(_("Samba")), + msgPool::featuresDisabled(_("Samba"))); + } else { + $display= $this->show_enable_header(msgPool::addFeaturesButton(_("Samba")), + msgPool::featuresDisabled(_("Samba"), _("POSIX")), TRUE); + } + return ($display); + } + } + } - // User cannot change his password? (sambaPwdLastSet int max(Int)) - // -------------------------------- - // The user is not able to change his password while sambaPwdCanChange is 4294967295 (Integer 32 Bit max) - $this->cannotChangePassword = (isset($this->attrs['sambaPwdCanChange']) && $this->attrs['sambaPwdCanChange'][0] == '4294967295'); + // Editing from the MyAccount/Personal section may be disabled until we've pressed the 'edit' button. + $SkipWrite = (!isset($this->parent) || !$this->parent) && !session::is_set('edit'); - } - function execute() - { - /* Call parent execute */ - plugin::execute(); + // Handle the samba logon hours dialog here, instantiate it on request. + if(isset($_POST['SetSambaLogonHours']) && $this->acl_is_readable("sambaLogonHours")){ + $this->dialog = new sambaLogonHours($this->config,$this->dn,$this->sambaLogonHours, $this->getacl('sambaLogonHours')); + } + if(isset($_POST['cancel_logonHours'])){ + $this->dialog = FALSE; + } + if(isset($_POST['save_logonHours'])){ + $this->dialog->save_object(); + if($this->acl_is_writeable("sambaLogonHours")){ + $this->sambaLogonHours = $this->dialog->save(); + } + $this->dialog = FALSE; + } + if((isset($this->dialog)) && (is_object($this->dialog))){ + $this->dialog->save_object(); + return($this->dialog->execute()); + } - /* Log view */ - if($this->is_account && !$this->view_logged){ - $this->view_logged = TRUE; - new log("view","users/".get_class($this),$this->dn); - } - /* Do we need to flip is_account state? */ - if (isset($_POST['modify_state'])){ - $this->is_account= !$this->is_account; - } - /* Do we represent a valid account? */ - if (!$this->is_account && $this->parent === NULL){ - $display= "\"\"src=\"images/small-error.png\" ". - msgPool::noValidExtension(_("Samba")).""; - $display.= back_to_main(); - return ($display); - } + // Get smarty + $smarty= get_smarty(); + $smarty->assign("usePrototype", "true"); - $display =""; - if(!$this->multiple_support_active){ + // Assign GOsa ACLs + $tmp = $this->plInfo(); + foreach($tmp['plProvidedAcls'] as $var => $rest){ + $smarty->assign($var."ACL",$this->getacl($var,$SkipWrite)); + } - /* Show tab dialog headers */ - $display= ""; - if ($this->parent !== NULL){ - if ($this->is_account){ - $display= $this->show_disable_header(msgPool::removeFeaturesButton(_("Samba")), - msgPool::featuresEnabled(_("Samba"))); - } else { - $obj= $this->parent->by_object['posixAccount']; - - /* Samba3 dependency on posix accounts are enabled - in the moment, because I need to rely on unique - uidNumbers. There'll be a better solution later - on. */ - if ($obj->is_account){ - $display= $this->show_enable_header(msgPool::addFeaturesButton(_("Samba")), - msgPool::featuresDisabled(_("Samba"))); - } else { - $display= $this->show_enable_header(msgPool::addFeaturesButton(_("Samba")), - msgPool::featuresDisabled(_("Samba"), _("POSIX")), TRUE); - } - return ($display); - } - } - } + if(!session::is_set('edit') && !isset($this->parent)){ + $smarty->assign("sambaLogonHoursACL",""); + } - $SkipWrite = (!isset($this->parent) || !$this->parent) && !session::is_set('edit'); - /* Open Samaba Logong hours dialog */ - if(isset($_POST['SetSambaLogonHours']) && $this->acl_is_readable("sambaLogonHours")){ - $this->dialog = new sambaLogonHours($this->config,$this->dn,$this->sambaLogonHours, $this->getacl('sambaLogonHours')); - } + // Handle workstation list - Remove entries. + if (isset($_POST["delete_ws"]) && isset($_POST['workstation_list'])){ + if($this->acl_is_writeable("sambaUserWorkstations",$SkipWrite)){ + if($this->multiple_support_active){ + foreach($_POST['workstation_list'] as $name){ + if(isset($this->multiple_sambaUserWorkstations[trim($name)])){ + unset($this->multiple_sambaUserWorkstations[trim($name)]); + } + } + }else{ + $tmp= $this->sambaUserWorkstations; + foreach($_POST['workstation_list'] as $name){ + $tmp= preg_replace("/$name/", '', $tmp); + $this->is_modified= TRUE; + } + $tmp= preg_replace('/,+/', ',', $tmp); + $this->sambaUserWorkstations= trim($tmp, ','); + } + } + } - /* Cancel dialog */ - if(isset($_POST['cancel_logonHours'])){ - $this->dialog = FALSE; - } + // Handle trust maschines/accessTo list + if (isset($_POST["add_ws"])){ + if($this->acl_is_writeable("sambaUserWorkstations",$SkipWrite)){ + $this->trustSelect= new trustSelect($this->config,get_userinfo()); + $this->dialog= TRUE; + } + } - /* Save selected logon hours */ - if(isset($_POST['save_logonHours'])){ - $this->dialog->save_object(); - if($this->acl_is_writeable("sambaLogonHours")){ - $this->sambaLogonHours = $this->dialog->save(); - } - $this->dialog = FALSE; - } + // Dialog canceled + if (isset($_POST["add_ws_cancel"])){ + $this->trustSelect= FALSE; + $this->dialog= FALSE; + } - /* Display dialog */ - if((isset($this->dialog)) && (is_object($this->dialog))){ - $this->dialog->save_object(); - return($this->dialog->execute()); - } + // Add selected machines to trusted ones. + if (isset($_POST["add_ws_finish"]) && $this->trustSelect){ + $trusts = $this->trustSelect->detectPostActions(); + if(isset($trusts['targets'])){ + $headpage = $this->trustSelect->getHeadpage(); + if($this->multiple_support_active){ + foreach($trusts['targets'] as $id){ + $attrs = $headpage->getEntry($id); + $we =$attrs['cn'][0]; + $this->multiple_sambaUserWorkstations[trim($we)] = array("Name" => trim($ws), "UsedByAllUsers" => TRUE); + } + }else{ + + $tmp= $this->sambaUserWorkstations; + foreach($trusts['targets'] as $id){ + $attrs = $headpage->getEntry($id); + $we =$attrs['cn'][0]; + $tmp.= ",$we"; + } + $tmp= preg_replace('/,+/', ',', $tmp); + $this->sambaUserWorkstations= trim($tmp, ','); + } + + $this->is_modified= TRUE; + } + $this->trustSelect= NULL; + $this->dialog= FALSE; + } - /* Prepare templating */ - $smarty= get_smarty(); - $smarty->assign("usePrototype", "true"); + // Display trust dialog + if ($this->trustSelect){ + session::set('filterBlacklist', array('cn' => preg_split('/,/',$this->sambaUserWorkstations))); + return($this->trustSelect->execute()); + } - $tmp = $this->plInfo(); - foreach($tmp['plProvidedAcls'] as $var => $rest){ - $smarty->assign($var."ACL",$this->getacl($var,$SkipWrite)); - } - if(!session::is_set('edit') && !isset($this->parent)){ - $smarty->assign("sambaLogonHoursACL",""); - } + // Fill domain selection. + $domains= array_keys($this->config->data['SERVERS']['SAMBA']); + $smarty->assign("domains", $domains); - if ($this->sambaLogonTime=="2147483647" || $this->sambaLogonTime=="0"){ - $sambaLogonTime_date= getdate(); - } else { - $sambaLogonTime_date= getdate($this->sambaLogonTime); - } - - if ($this->sambaLogoffTime=="2147483647" || $this->sambaLogoffTime=="0"){ - $sambaLogoffTime_date= getdate(); - } else { - $sambaLogoffTime_date= getdate($this->sambaLogoffTime); - } - - /* Remove user workstations? */ - if (isset($_POST["delete_ws"]) && isset($_POST['workstation_list'])){ + // Fill drive letters. + $letters= array(""); + for ($i= 68; $i<91; $i++){ + $letters[]= chr($i).":"; + } + $smarty->assign("drives", $letters); + + + // Fill terminal server setttings + foreach ($this->ctxattributes as $attr){ + if (isset($this->mungedObject->ctx[$attr])){ + $smarty->assign("$attr", $this->mungedObject->ctx[$attr]); + + // Set field to blank if value is 0 + if(in_array($attr, array("CtxMaxConnectionTime", "CtxMaxDisconnectionTime", "CtxMaxIdleTime"))) { + if($this->mungedObject->ctx[$attr] == 0) { + $smarty->assign("$attr", ""); + } + } + } else { + $smarty->assign("$attr", ""); + } + } - if($this->acl_is_writeable("sambaUserWorkstations",$SkipWrite)){ + // Assign enum values for preset items. + $shadowModeVals= array( + "0" => _("disabled"), + "1" => _("input on, notify on"), + "2" => _("input on, notify off"), + "3" => _("input off, notify on"), + "4" => _("input off, nofify off")); + $brokenConnModeVals= array( + "0" => _("disconnect"), + "1" => _("reset")); + $reConnModeVals= array( "0" => _("from any client"), + "1" => _("from previous client only")); + $smarty->assign("shadow", $shadowModeVals); + $smarty->assign("brokenconn", $brokenConnModeVals); + $smarty->assign("reconn", $reConnModeVals); + + // Fill preset items with values + $smarty->assign("shadowmode", $this->mungedObject->getShadow()); + $smarty->assign("brokenconnmode", $this->mungedObject->getBrokenConn()); + $smarty->assign("reconnmode", $this->mungedObject->getReConn()); + + + // Set form elements to disabled/enable state + $smarty->assign("tsloginstate", $this->mungedObject->getTsLogin()?"":"disabled"); + $smarty->assign("inheritstate", ""); + if($this->acl_is_writeable("AllowLoginOnTerminalServer",$SkipWrite)){ + $smarty->assign("inheritstate", $this->mungedObject->getInheritMode()?"disabled":""); + } + // Set checkboxes to checked or unchecked state + $smarty->assign("tslogin", $this->mungedObject->getTsLogin()?"checked":""); + $smarty->assign("inherit", $this->mungedObject->getInheritMode()?"checked":""); + $smarty->assign("connectclientdrives", + $this->mungedObject->getConnectClientDrives()?"checked":""); + $smarty->assign("connectclientprinters", + $this->mungedObject->getConnectClientPrinters()?"checked":""); + $smarty->assign("defaultprinter", + $this->mungedObject->getDefaultPrinter()?"checked":""); + $smarty->assign("CtxMaxConnectionTimeF", + $this->mungedObject->getCtxMaxConnectionTimeF()?"checked":""); + $smarty->assign("CtxMaxDisconnectionTimeF", + $this->mungedObject->getCtxMaxDisconnectionTimeF()?"checked":""); + $smarty->assign("CtxMaxIdleTimeF", + $this->mungedObject->getCtxMaxIdleTimeF()?"checked":""); + + + // Fill sambaUserWorkstations + $ws= explode(",", $this->sambaUserWorkstations); + sort($ws); + + // Tidy checks for empty option, and smarty will produce one if array[0]="" + if(($ws[0]=="")&&(count($ws)==1)) $ws=array(); if($this->multiple_support_active){ - foreach($_POST['workstation_list'] as $name){ - if(isset($this->multiple_sambaUserWorkstations[trim($name)])){ - unset($this->multiple_sambaUserWorkstations[trim($name)]); - } - } - }else{ - $tmp= $this->sambaUserWorkstations; - foreach($_POST['workstation_list'] as $name){ - $tmp= preg_replace("/$name/", '', $tmp); - $this->is_modified= TRUE; - } - $tmp= preg_replace('/,+/', ',', $tmp); - $this->sambaUserWorkstations= trim($tmp, ','); - } - } - } + $smarty->assign("multiple_workstations",$this->multiple_sambaUserWorkstations); + } + $smarty->assign("workstations", $ws); - /* Add user workstation? */ - if (isset($_POST["add_ws"])){ - if($this->acl_is_writeable("sambaUserWorkstations",$SkipWrite)){ - $this->trustSelect= new trustSelect($this->config,get_userinfo()); - $this->dialog= TRUE; - } - } - /* Add user workstation finished? */ - if (isset($_POST["add_ws_cancel"])){ - $this->trustSelect= FALSE; - $this->dialog= FALSE; - } + // Assign plugin values + foreach($this->attributes as $val){ + $smarty->assign("$val", $this->$val); + } - // Add selected machines to trusted ones. - if (isset($_POST["add_ws_finish"]) && $this->trustSelect){ - $trusts = $this->trustSelect->detectPostActions(); - if(isset($trusts['targets'])){ + // Assign munged attributes + foreach($this->mungedObject->getOnDemandFlags() as $key => $value) { + $smarty->assign("$key", "$value"); + } - $headpage = $this->trustSelect->getHeadpage(); - if($this->multiple_support_active){ - foreach($trusts['targets'] as $id){ - $attrs = $headpage->getEntry($id); - $we =$attrs['cn'][0]; - $this->multiple_sambaUserWorkstations[trim($we)] = array("Name" => trim($ws), "UsedByAllUsers" => TRUE); - } - }else{ + // Assign selected multi edit checkbox values. + foreach($this->attributes as $attr){ + if(in_array($attr,$this->multi_boxes)){ + $smarty->assign("use_".$attr,TRUE); + }else{ + $smarty->assign("use_".$attr,FALSE); + } + } + foreach(array("tslogin","CtxWFHomeDir","CtxWFHomeDirDrive","CtxWFProfilePath", + "inherit","CtxWorkDirectory","CtxInitialProgram","CtxMaxConnectionTimeF", + "CtxMaxConnectionTime","CtxMaxDisconnectionTimeF", + "CtxMaxDisconnectionTime","CtxMaxIdleTimeF","CtxMaxIdleTime","connectclientdrives", + "onnectclientprinters","defaultprinter","shadow","brokenconn", + "reconn","connectclientprinters","SetSambaLogonHours", + "workstation_list", + "enforcePasswordChange", "passwordNeverExpires", "noPasswordRequired", + "temporaryDisabled","cannotChangePassword") as $attr){ + + if(in_array($attr,$this->multi_boxes)){ + $smarty->assign("use_".$attr,TRUE); + }else{ + $smarty->assign("use_".$attr,FALSE); + } + } - $tmp= $this->sambaUserWorkstations; - foreach($trusts['targets'] as $id){ - $attrs = $headpage->getEntry($id); - $we =$attrs['cn'][0]; - $tmp.= ",$we"; - } - $tmp= preg_replace('/,+/', ',', $tmp); - $this->sambaUserWorkstations= trim($tmp, ','); + if($this->multiple_support_active){ + $smarty->assign("tsloginstate",""); } - $this->is_modified= TRUE; - } - $this->trustSelect= NULL; - $this->dialog= FALSE; - } + // Create additional info for sambaKickOffTime and sambaPwdMustChange. + // e.g. Display effective kickoff time. Domain policy + user settings. + $additional_info_PwdMustChange = ""; + + // Calculate effective max Password Age + // This can only be calculated if sambaPwdLastSet ist set. + if(isset($this->attrs['sambaPwdLastSet'][0])){ + $last = $this->attrs['sambaPwdLastSet'][0]; + $sid = $this->get_domain_info(); + if(isset($sid['sambaMaxPwdAge'][0])){ + $d = ($last + $sid['sambaMaxPwdAge'][0]) - time(); + + // A negative value means the password is outdated + if($d < 0){ + $additional_info_PwdMustChange = sprintf(_("The password is outdated since %s, by domain policy."), + date("d.m.Y H:i:s",$last + $sid['sambaMaxPwdAge'][0])); + }else{ + if($this->password_expires && ($last + $sid['sambaMaxPwdAge'][0]) > $this->sambaPwdMustChange){ + $additional_info_PwdMustChange = sprintf(_("The password is valid till %s, by user policy."), + date("d.m.Y H:i:s", $this->sambaPwdMustChange)); + }else{ + $additional_info_PwdMustChange = sprintf(_("The password is valid till %s, by domain policy."), + date("d.m.Y H:i:s", ($last + $sid['sambaMaxPwdAge'][0]))); + } + } + } + } - /* Show ws dialog */ - if ($this->trustSelect){ + // Assign flags + foreach(array("flag_enforcePasswordChange", "flag_passwordNeverExpires", "flag_noPasswordRequired", + "flag_temporaryDisabled","flag_cannotChangePassword") as $attr){ + $smarty->assign($attr, $this->$attr); + } - // Build up blocklist - session::set('filterBlacklist', array('cn' => preg_split('/,/',$this->sambaUserWorkstations))); - return($this->trustSelect->execute()); + $smarty->assign("additional_info_PwdMustChange",$additional_info_PwdMustChange); + $smarty->assign("multiple_support",$this->multiple_support_active); + $display.= $smarty->fetch (get_template_path('samba3.tpl', TRUE, dirname(__FILE__))); + return ($display); } - /* Fill boxes */ - $domains= array(); - foreach($this->config->data['SERVERS']['SAMBA'] as $name => $content){ - $domains[]= $name; - } - $smarty->assign("domains", $domains); - $letters= array(""); - for ($i= 68; $i<91; $i++){ - $letters[]= chr($i).":"; - } - $smarty->assign("drives", $letters); - - /* Fill terminal server settings */ - foreach ($this->ctxattributes as $attr){ - /* Fill common attributes */ - if (isset($this->mungedObject->ctx[$attr])){ - $smarty->assign("$attr", $this->mungedObject->ctx[$attr]); - // Set field to blank if value is 0 - if(in_array($attr, array("CtxMaxConnectionTime", "CtxMaxDisconnectionTime", "CtxMaxIdleTime"))) { - if($this->mungedObject->ctx[$attr] == 0) { - $smarty->assign("$attr", ""); - } - } - } else { - $smarty->assign("$attr", ""); - } - } - /* Assign enum values for preset items */ - $shadowModeVals= array( "0" => _("disabled"), - "1" => _("input on, notify on"), - "2" => _("input on, notify off"), - "3" => _("input off, notify on"), - "4" => _("input off, nofify off")); - - $brokenConnModeVals= array( "0" => _("disconnect"), - "1" => _("reset")); - - $reConnModeVals= array( "0" => _("from any client"), - "1" => _("from previous client only")); - - /* Fill preset items */ - $smarty->assign("shadow", $shadowModeVals); - $smarty->assign("brokenconn", $brokenConnModeVals); - $smarty->assign("reconn", $reConnModeVals); - - /* Fill preset items with values */ - $smarty->assign("shadowmode", $this->mungedObject->getShadow()); - $smarty->assign("brokenconnmode", $this->mungedObject->getBrokenConn()); - $smarty->assign("reconnmode", $this->mungedObject->getReConn()); - - if(session::get('js')){ - /* Set form elements to disabled/enable state */ - $smarty->assign("tsloginstate", $this->mungedObject->getTsLogin()?"":"disabled"); - - $smarty->assign("inheritstate", ""); - if($this->acl_is_writeable("AllowLoginOnTerminalServer",$SkipWrite)){ - $smarty->assign("inheritstate", $this->mungedObject->getInheritMode()?"disabled":""); - } - }else{ - $smarty->assign("tsloginstate", ""); - $smarty->assign("inheritstate", ""); - } - - /* Set checkboxes to checked or unchecked state */ - $smarty->assign("tslogin", $this->mungedObject->getTsLogin()?"checked":""); - $smarty->assign("inherit", $this->mungedObject->getInheritMode()?"checked":""); - $smarty->assign("connectclientdrives", - $this->mungedObject->getConnectClientDrives()?"checked":""); - $smarty->assign("connectclientprinters", - $this->mungedObject->getConnectClientPrinters()?"checked":""); - $smarty->assign("defaultprinter", - $this->mungedObject->getDefaultPrinter()?"checked":""); - $smarty->assign("CtxMaxConnectionTimeF", - $this->mungedObject->getCtxMaxConnectionTimeF()?"checked":""); - $smarty->assign("CtxMaxDisconnectionTimeF", - $this->mungedObject->getCtxMaxDisconnectionTimeF()?"checked":""); - $smarty->assign("CtxMaxIdleTimeF", - $this->mungedObject->getCtxMaxIdleTimeF()?"checked":""); - - - /* Fill sambaUserWorkstations */ - $ws= explode(",", $this->sambaUserWorkstations); - sort($ws); - - /* Tidy checks for empty option, and smarty will produce one if array[0]="" */ - if(($ws[0]=="")&&(count($ws)==1)) $ws=array(); - - if($this->multiple_support_active){ - $smarty->assign("multiple_workstations",$this->multiple_sambaUserWorkstations); - } - - $smarty->assign("workstations", $ws); - - - /* Variables */ - foreach($this->attributes as $val){ - $smarty->assign("$val", $this->$val); + /*! \brief Returns the samba Domain object, selected in the samba tab. + */ + function get_domain_info() + { + /* Only search once, return last result if available + */ + if(!isset($this->cache['DOMAIN'][$this->sambaDomainName])){ + $this->cache['DOMAIN'][$this->sambaDomainName] = array(); + if(!empty($this->sambaDomainName) && isset($this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName])){ + $cfg = $this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName]; + $ldap = $this->config->get_ldap_link(); + $ldap->cd($this->config->current['BASE']); + $ldap->search("(&(objectClass=sambaDomain)(sambaSID=".$cfg['SID']."))",array("*")); + if($ldap->count()){ + $this->cache['DOMAIN'][$this->sambaDomainName] = $ldap->fetch(); + } + } + } + return($this->cache['DOMAIN'][$this->sambaDomainName]); } - /* 'sambaAcctFlags' checkboxes */ - /* Check for 'lock-account'-flag: 'D' or 'L' */ - if (is_integer(strpos($this->sambaAcctFlags, "D")) || - is_integer(strpos($this->sambaAcctFlags, "L"))) { - $smarty->assign("flagsD", "checked"); - } else { - $smarty->assign("flagsD", ""); - } - - /* Check for no_password_required flag 'N' */ - if (is_integer(strpos($this->sambaAcctFlags, "N"))) { - $smarty->assign("flagsN", "checked"); - } else { - $smarty->assign("flagsN", ""); - } - // check if password never expires - if (is_integer(strpos($this->sambaAcctFlags, "X"))) { - $smarty->assign("flagsX", "checked"); - } else { - $smarty->assign("flagsX", ""); - } - if ($this->sambaPwdCanChange=="1"){ - $smarty->assign("flagsP", "checked"); - } else { - $smarty->assign("flagsP", ""); - } + function get_samba_information() + { + $zone = timezone::get_default_timezone(); - if ($this->password_expires=="1"){ - $smarty->assign("flagsC", "checked"); - } else { - $smarty->assign("flagsC", ""); - } - if ($this->logon_time_set=="1"){ - $smarty->assign("flagsT", "checked"); - } else { - $smarty->assign("flagsT", ""); - } - if ($this->logoff_time_set=="1"){ - $smarty->assign("flagsO", "checked"); - } else { - $smarty->assign("flagsO", ""); - } - if ($this->kickoff_time_set=="1"){ - $smarty->assign("flagsK", "checked"); - } else { - $smarty->assign("flagsK", ""); - } - + /* Defaults + */ + $sambaMinPwdLength = "unset"; + $sambaPwdHistoryLength = "unset"; + $sambaLogonToChgPwd = "unset"; + $sambaMaxPwdAge = "unset"; + $sambaMinPwdAge = "unset"; + $sambaLockoutDuration = "unset"; + $sambaLockoutThreshold = "unset"; + $sambaForceLogoff = "unset"; + $sambaRefuseMachinePwdChange = "unset"; + $sambaPwdLastSet = "unset"; + $sambaLogonTime = "unset"; + $sambaLogoffTime = "unset"; + + $sambaKickoffTime = "unset"; + $sambaPwdCanChange = "unset"; + $sambaPwdMustChange = "unset"; + $sambaBadPasswordCount = "unset"; + $sambaBadPasswordTime = "unset"; + + /* Domain attributes + */ + $domain_attributes = array("sambaMinPwdLength","sambaPwdHistoryLength","sambaMaxPwdAge", + "sambaMinPwdAge","sambaLockoutDuration","sambaRefuseMachinePwdChange", + "sambaLogonToChgPwd","sambaLockoutThreshold","sambaForceLogoff"); - /* In case of javascript, disable some fields on demand */ - foreach($this->mungedObject->getOnDemandFlags() as $key => $value) { - $smarty->assign("$key", "$value"); - } + /* User attributes + */ + $user_attributes = array("sambaBadPasswordTime","sambaPwdLastSet","sambaLogonTime","sambaLogoffTime", + "sambaKickoffTime","sambaPwdCanChange","sambaPwdMustChange","sambaBadPasswordCount", "sambaSID"); + /* Get samba SID object and parse settings. + */ + $ldap = $this->config->get_ldap_link(); + $ldap->cd($this->config->current['BASE']); + if(!empty($this->sambaDomainName) && isset($this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName])){ + $attrs = $this->get_domain_info(); + foreach($domain_attributes as $attr){ + if(isset($attrs[$attr])){ + $$attr = $attrs[$attr][0]; + } + } + } - foreach($this->attributes as $attr){ - if(in_array($attr,$this->multi_boxes)){ - $smarty->assign("use_".$attr,TRUE); - }else{ - $smarty->assign("use_".$attr,FALSE); - } - } - foreach(array("allow_pwchange","tslogin","CtxWFHomeDir","CtxWFHomeDirDrive","CtxWFProfilePath", - "inherit","CtxWorkDirectory","CtxInitialProgram","CtxMaxConnectionTimeF","CtxMaxConnectionTime","CtxMaxDisconnectionTimeF", - "CtxMaxDisconnectionTime","CtxMaxIdleTimeF","CtxMaxIdleTime","connectclientdrives", - "onnectclientprinters","defaultprinter","shadow","brokenconn", - "reconn","allow_pwchange","connectclientprinters","no_expiry","no_password_required","temporary_disable", - "password_expires","logon_time_set","logoff_time_set","kickoff_time_set","SetSambaLogonHours", - "workstation_list","enforcePasswordChange","cannotChangePassword") as $attr){ - if(in_array($attr,$this->multi_boxes)){ - $smarty->assign("use_".$attr,TRUE); - }else{ - $smarty->assign("use_".$attr,FALSE); - } - } + /* Get user infos + */ + foreach($user_attributes as $attr){ + if(isset($this->attrs[$attr])){ + $$attr = $this->attrs[$attr][0]; + } + } + if($this->password_expires){ + $sambaPwdMustChange = $this->sambaPwdMustChange; + } else { + if (is_numeric($sambaPwdMustChange)) { + $sambaPwdMustChange= date('d.m.Y', $sambaPwdMustChange); + } + } + if($this->kickoff_time_set){ + $sambaKickoffTime = $this->sambaKickoffTime; + } else { + if (is_numeric($sambaKickoffTime)) { + $sambaKickoffTime= date('d.m.Y', $sambaKickoffTime); + } + } + $sambaPwdCanChange = $this->sambaPwdCanChange; - if($this->multiple_support_active){ - $smarty->assign("tsloginstate",""); - } - /* Create additional info for sambaKickOffTime and sambaPwdMustChange. - e.g. Display effective kickoff time. Domain policy + user settings. - */ - $additional_info_PwdMustChange = ""; + /* DOMAIN Attributes + */ - /* Calculate effective max Password Age - This can only be calculated if sambaPwdLastSet ist set. - */ - if(isset($this->attrs['sambaPwdLastSet'][0])){ - $last = $this->attrs['sambaPwdLastSet'][0]; + /* sambaMinPwdLength: Password length has a default of 5 + */ + if($sambaMinPwdLength == "unset" || $sambaMinPwdLength == 5){ + $sambaMinPwdLength = "5 ("._("default").")"; + } - $sid = $this->get_domain_info(); - if(isset($sid['sambaMaxPwdAge'][0])){ - $d = ($last + $sid['sambaMaxPwdAge'][0]) - time(); + /* sambaPwdHistoryLength: Length of Password History Entries (default: 0 => off) + */ + if($sambaPwdHistoryLength == "unset" || $sambaPwdHistoryLength == 0){ + $sambaPwdHistoryLength = _("Off")." ("._("default").")"; + } - /* A negative value means the password is outdated + /* sambaLogonToChgPwd: Force Users to logon for password change (default: 0 => off, 2 => on) */ - if($d < 0){ - $additional_info_PwdMustChange = sprintf(_("The password is outdated since %s, by domain policy."), - date("d.m.Y H:i:s",$last + $sid['sambaMaxPwdAge'][0])); + if($sambaLogonToChgPwd == "unset" || $sambaLogonToChgPwd == 0){ + $sambaLogonToChgPwd = _("Off")." ("._("default").")"; }else{ - if($this->password_expires && ($last + $sid['sambaMaxPwdAge'][0]) > $this->sambaPwdMustChange){ - $additional_info_PwdMustChange = sprintf(_("The password is valid till %s, by user policy."), - date("d.m.Y H:i:s", $this->sambaPwdMustChange)); - }else{ - $additional_info_PwdMustChange = sprintf(_("The password is valid till %s, by domain policy."), - date("d.m.Y H:i:s", ($last + $sid['sambaMaxPwdAge'][0]))); - } - } - } - } - $smarty->assign("additional_info_PwdMustChange",$additional_info_PwdMustChange); - $smarty->assign("no_expiry",$this->no_expiry); + $sambaLogonToChgPwd = _("On"); + } - /* Show main page */ - $smarty->assign("multiple_support",$this->multiple_support_active); + /* sambaMaxPwdAge: Maximum password age, in seconds (default: -1 => never expire passwords)' + */ + if($sambaMaxPwdAge == "unset" || $sambaMaxPwdAge == "-1"){ + $sambaMaxPwdAge = _("disabled")." ("._("default").")"; + }else{ + $sambaMaxPwdAge .= " "._("seconds"); + } - $smarty->assign('enforcePasswordChange', $this->enforcePasswordChange); - $smarty->assign("cannotChangePassword", $this->cannotChangePassword); - $display.= $smarty->fetch (get_template_path('samba3.tpl', TRUE, dirname(__FILE__))); - return ($display); - } + /* sambaMinPwdAge: Minimum password age, in seconds (default: 0 => allow immediate password change + */ + if($sambaMinPwdAge == "unset" || $sambaMinPwdAge == 0){ + $sambaMinPwdAge = _("disabled")." ("._("default").")"; + }else{ + $sambaMinPwdAge .= " "._("seconds"); + } + /* sambaLockoutDuration: Lockout duration in minutes (default: 30, -1 => forever) + */ + if($sambaLockoutDuration == "unset" || $sambaLockoutDuration == 30){ + $sambaLockoutDuration = "30 "._("minutes")." ("._("default").")"; + }elseif($sambaLockoutDuration == -1){ + $sambaLockoutDuration = _("forever"); + }else{ + $sambaLockoutDuration .= " "._("minutes"); + } - /*! \brief Returns the samba Domain object, selected in the samba tab. - */ - function get_domain_info() - { - /* Only search once, return last result if available - */ - if(!isset($this->cache['DOMAIN'][$this->sambaDomainName])){ - $this->cache['DOMAIN'][$this->sambaDomainName] = array(); - if(!empty($this->sambaDomainName) && isset($this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName])){ - $cfg = $this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName]; - $ldap = $this->config->get_ldap_link(); - $ldap->cd($this->config->current['BASE']); - $ldap->search("(&(objectClass=sambaDomain)(sambaSID=".$cfg['SID']."))",array("*")); - if($ldap->count()){ - $this->cache['DOMAIN'][$this->sambaDomainName] = $ldap->fetch(); + /* sambaLockoutThreshold: Lockout users after bad logon attempts (default: 0 => off + */ + if($sambaLockoutThreshold == "unset" || $sambaLockoutThreshold == 0){ + $sambaLockoutThreshold = _("disabled")." ("._("default").")"; } - } - } - return($this->cache['DOMAIN'][$this->sambaDomainName]); - } + /* sambaForceLogoff: Disconnect Users outside logon hours (default: -1 => off, 0 => on + */ + if($sambaForceLogoff == "unset" || $sambaForceLogoff == -1){ + $sambaForceLogoff = _("off")." ("._("default").")"; + }else{ + $sambaForceLogoff = _("on"); + } + /* sambaRefuseMachinePwdChange: Allow Machine Password changes (default: 0 => off + */ + if($sambaRefuseMachinePwdChange == "none" || $sambaRefuseMachinePwdChange == 0){ + $sambaRefuseMachinePwdChange = _("off")." ("._("default").")"; + }else{ + $sambaRefuseMachinePwdChange = _("on"); + } - function get_samba_information() - { - $zone = timezone::get_default_timezone(); + /* USER Attributes + */ + /* sambaBadPasswordTime: Time of the last bad password attempt + */ + if($sambaBadPasswordTime == "unset" || empty($sambaBadPasswordTime)){ + $sambaBadPasswordTime = "("._("unset").")"; + }else{ + $sambaBadPasswordTime = date("d.m.Y H:i:s",$sambaBadPasswordTime); + } - /* Defaults - */ - $sambaMinPwdLength = "unset"; - $sambaPwdHistoryLength = "unset"; - $sambaLogonToChgPwd = "unset"; - $sambaMaxPwdAge = "unset"; - $sambaMinPwdAge = "unset"; - $sambaLockoutDuration = "unset"; - $sambaLockoutThreshold = "unset"; - $sambaForceLogoff = "unset"; - $sambaRefuseMachinePwdChange = "unset"; - $sambaPwdLastSet = "unset"; - $sambaLogonTime = "unset"; - $sambaLogoffTime = "unset"; - - $sambaKickoffTime = "unset"; - $sambaPwdCanChange = "unset"; - $sambaPwdMustChange = "unset"; - $sambaBadPasswordCount = "unset"; - $sambaBadPasswordTime = "unset"; - - /* Domain attributes - */ - $domain_attributes = array("sambaMinPwdLength","sambaPwdHistoryLength","sambaMaxPwdAge", - "sambaMinPwdAge","sambaLockoutDuration","sambaRefuseMachinePwdChange", - "sambaLogonToChgPwd","sambaLockoutThreshold","sambaForceLogoff"); + /* sambaBadPasswordCount: Bad password attempt count + */ + if($sambaBadPasswordCount == "unset" || empty($sambaBadPasswordCount)){ + $sambaBadPasswordCount = "("._("unset").")"; + }else{ + $sambaBadPasswordCount = date("d.m.Y H:i:s",$sambaBadPasswordCount); + } - /* User attributes - */ - $user_attributes = array("sambaBadPasswordTime","sambaPwdLastSet","sambaLogonTime","sambaLogoffTime", - "sambaKickoffTime","sambaPwdCanChange","sambaPwdMustChange","sambaBadPasswordCount", "sambaSID"); - - /* Get samba SID object and parse settings. - */ - $ldap = $this->config->get_ldap_link(); - $ldap->cd($this->config->current['BASE']); - if(!empty($this->sambaDomainName) && isset($this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName])){ - $attrs = $this->get_domain_info(); - foreach($domain_attributes as $attr){ - if(isset($attrs[$attr])){ - $$attr = $attrs[$attr][0]; - } - } - } - - /* Get user infos - */ - foreach($user_attributes as $attr){ - if(isset($this->attrs[$attr])){ - $$attr = $this->attrs[$attr][0]; - } - } - if($this->password_expires){ - $sambaPwdMustChange = $this->sambaPwdMustChange; - } else { - if (is_numeric($sambaPwdMustChange)) { - $sambaPwdMustChange= date('d.m.Y', $sambaPwdMustChange); - } - } - if($this->kickoff_time_set){ - $sambaKickoffTime = $this->sambaKickoffTime; - } else { - if (is_numeric($sambaKickoffTime)) { - $sambaKickoffTime= date('d.m.Y', $sambaKickoffTime); - } - } - $sambaPwdCanChange = $this->sambaPwdCanChange; + /* sambaPwdLastSet: Timestamp of the last password update + */ + if($sambaPwdLastSet == "unset" || empty($sambaPwdLastSet)){ + $sambaPwdLastSet = "("._("unset").")"; + }else{ + $sambaPwdLastSet = date("d.m.Y H:i:s",$sambaPwdLastSet); + } + /* sambaLogonTime: Timestamp of last logon + */ + if($sambaLogonTime == "unset" || empty($sambaLogonTime)){ + $sambaLogonTime = "("._("unset").")"; + }else{ + $sambaLogonTime = date("d.m.Y H:i:s",$sambaLogonTime); + } - /* DOMAIN Attributes - */ + /* sambaLogoffTime: Timestamp of last logoff + */ + if($sambaLogoffTime == "unset" || empty($sambaLogoffTime)){ + $sambaLogoffTime = "("._("unset").")"; + }else{ + $sambaLogoffTime = date("d.m.Y H:i:s",$sambaLogoffTime); + } - /* sambaMinPwdLength: Password length has a default of 5 - */ - if($sambaMinPwdLength == "unset" || $sambaMinPwdLength == 5){ - $sambaMinPwdLength = "5 ("._("default").")"; - } + /* sambaKickoffTime: Timestamp of when the user will be logged off automatically + */ + if($sambaKickoffTime == "unset" || empty($sambaKickoffTime)){ + $sambaKickoffTime = "("._("unset").")"; + } - /* sambaPwdHistoryLength: Length of Password History Entries (default: 0 => off) - */ - if($sambaPwdHistoryLength == "unset" || $sambaPwdHistoryLength == 0){ - $sambaPwdHistoryLength = _("Off")." ("._("default").")"; - } + /* sambaPwdMustChange: Timestamp of when the password will expire + */ + if($sambaPwdMustChange == "unset" || empty($sambaPwdMustChange)){ + $sambaPwdMustChange = "("._("unset").")"; + } - /* sambaLogonToChgPwd: Force Users to logon for password change (default: 0 => off, 2 => on) - */ - if($sambaLogonToChgPwd == "unset" || $sambaLogonToChgPwd == 0){ - $sambaLogonToChgPwd = _("Off")." ("._("default").")"; - }else{ - $sambaLogonToChgPwd = _("On"); - } - - /* sambaMaxPwdAge: Maximum password age, in seconds (default: -1 => never expire passwords)' - */ - if($sambaMaxPwdAge == "unset" || $sambaMaxPwdAge == "-1"){ - $sambaMaxPwdAge = _("disabled")." ("._("default").")"; - }else{ - $sambaMaxPwdAge .= " "._("seconds"); - } + /* sambaPwdCanChange: Timestamp of when the user is allowed to update the password + */ + if($sambaPwdCanChange == "unset" || empty($sambaPwdCanChange)){ + $sambaPwdCanChange = "("._("unset").")"; + }elseif($sambaPwdCanChange != "unset" && time() > $sambaPwdCanChange){ + $sambaPwdCanChange = _("immediately") ; + }else{ + $days = floor((($sambaPwdCanChange - time()) / 60 / 60 / 24)) ; + $hours = floor((($sambaPwdCanChange - time()) / 60 / 60) % 24) ; + $minutes = floor((($sambaPwdCanChange - time()) / 60 ) % 60) ; - /* sambaMinPwdAge: Minimum password age, in seconds (default: 0 => allow immediate password change - */ - if($sambaMinPwdAge == "unset" || $sambaMinPwdAge == 0){ - $sambaMinPwdAge = _("disabled")." ("._("default").")"; - }else{ - $sambaMinPwdAge .= " "._("seconds"); - } + $sambaPwdCanChange = " ".$days." "._("days"); + $sambaPwdCanChange.= " ".$hours." "._("hours"); + $sambaPwdCanChange.= " ".$minutes." "._("minutes"); + } - /* sambaLockoutDuration: Lockout duration in minutes (default: 30, -1 => forever) - */ - if($sambaLockoutDuration == "unset" || $sambaLockoutDuration == 30){ - $sambaLockoutDuration = "30 "._("minutes")." ("._("default").")"; - }elseif($sambaLockoutDuration == -1){ - $sambaLockoutDuration = _("forever"); - }else{ - $sambaLockoutDuration .= " "._("minutes"); - } + $str = + "\n
". + "\n". + "\n". + "\n". + "\n". + "\n". + "\n". + "\n". + "\n". + "\n". + "\n". + "\n". + "\n". + "\n". + "\n". + "\n". + "\n". + "\n". + "\n". + "\n". + "\n". + "\n"; + + if($this->no_expiry){ + $str .= "\n"; + $str .= "\n"; + }else{ + $str .= "\n"; + } - /* sambaLockoutThreshold: Lockout users after bad logon attempts (default: 0 => off - */ - if($sambaLockoutThreshold == "unset" || $sambaLockoutThreshold == 0){ - $sambaLockoutThreshold = _("disabled")." ("._("default").")"; + $str .= "\n". + "\n
"._("Domain attributes")."
"._("Min password length").": ".$sambaMinPwdLength."
"._("Min password length").": ".$sambaMinPwdLength."
"._("Password history").": ".$sambaPwdHistoryLength."
"._("Force password change").": ".$sambaLogonToChgPwd."
"._("Maximum password age").": ".$sambaMaxPwdAge."
"._("Minimum password age").": ".$sambaMinPwdAge."
"._("Lockout duration").": ".$sambaLockoutDuration."
"._("Bad lockout attempt").": ".$sambaLockoutThreshold."
"._("Disconnect time").": ".$sambaForceLogoff."
"._("Refuse machine password change").":".$sambaRefuseMachinePwdChange."
 
"._("User attributes")."
"._("SID").": ".$sambaSID."
"._("Last failed login").": ".$sambaBadPasswordTime."
"._("Logon attempts").": ".$sambaBadPasswordCount."
"._("Last password update").": ".$sambaPwdLastSet."
"._("Last logon").": ".$sambaLogonTime."
"._("Last logoff").": ".$sambaLogoffTime."
"._("Automatic logoff").": ".$sambaKickoffTime."
"._("Password expires").": "._("No")."
". + sprintf(_("The password would expire on %s, but the password expiry is disabled."),$sambaPwdMustChange). + "
"._("Password expires").": ".$sambaPwdMustChange."
"._("Password change available").": ".$sambaPwdCanChange."
"; + "\n
"; + return($str); } - /* sambaForceLogoff: Disconnect Users outside logon hours (default: -1 => off, 0 => on - */ - if($sambaForceLogoff == "unset" || $sambaForceLogoff == -1){ - $sambaForceLogoff = _("off")." ("._("default").")"; - }else{ - $sambaForceLogoff = _("on"); - } - /* sambaRefuseMachinePwdChange: Allow Machine Password changes (default: 0 => off - */ - if($sambaRefuseMachinePwdChange == "none" || $sambaRefuseMachinePwdChange == 0){ - $sambaRefuseMachinePwdChange = _("off")." ("._("default").")"; - }else{ - $sambaRefuseMachinePwdChange = _("on"); - } - - /* USER Attributes - */ - /* sambaBadPasswordTime: Time of the last bad password attempt - */ - if($sambaBadPasswordTime == "unset" || empty($sambaBadPasswordTime)){ - $sambaBadPasswordTime = "("._("unset").")"; - }else{ - $sambaBadPasswordTime = date("d.m.Y H:i:s",$sambaBadPasswordTime); - } + function remove_from_parent() + { + /* Cancel if there's nothing to do here */ + if (!$this->initially_was_account){ + return; + } - /* sambaBadPasswordCount: Bad password attempt count - */ - if($sambaBadPasswordCount == "unset" || empty($sambaBadPasswordCount)){ - $sambaBadPasswordCount = "("._("unset").")"; - }else{ - $sambaBadPasswordCount = date("d.m.Y H:i:s",$sambaBadPasswordCount); - } + /* include global link_info */ + $ldap= $this->config->get_ldap_link(); - /* sambaPwdLastSet: Timestamp of the last password update - */ - if($sambaPwdLastSet == "unset" || empty($sambaPwdLastSet)){ - $sambaPwdLastSet = "("._("unset").")"; - }else{ - $sambaPwdLastSet = date("d.m.Y H:i:s",$sambaPwdLastSet); - } + plugin::remove_from_parent(); - /* sambaLogonTime: Timestamp of last logon - */ - if($sambaLogonTime == "unset" || empty($sambaLogonTime)){ - $sambaLogonTime = "("._("unset").")"; - }else{ - $sambaLogonTime = date("d.m.Y H:i:s",$sambaLogonTime); - } + /* Keep uid attribute for gosaAccount */ + unset($this->attrs['uid']); + unset($this->attrs['uidNumber']); + unset($this->attrs['gidNumber']); - /* sambaLogoffTime: Timestamp of last logoff - */ - if($sambaLogoffTime == "unset" || empty($sambaLogoffTime)){ - $sambaLogoffTime = "("._("unset").")"; - }else{ - $sambaLogoffTime = date("d.m.Y H:i:s",$sambaLogoffTime); - } - - /* sambaKickoffTime: Timestamp of when the user will be logged off automatically - */ - if($sambaKickoffTime == "unset" || empty($sambaKickoffTime)){ - $sambaKickoffTime = "("._("unset").")"; - } + /* Remove objectClass for sambaIdmapEntry */ + $tmp= array(); + for ($i= 0; $iattrs["objectClass"]); $i++){ + if ($this->attrs['objectClass'][$i] != 'sambaIdmapEntry'){ + $tmp[]= $this->attrs['objectClass'][$i]; + } + } + $this->attrs['objectClass']= $tmp; - /* sambaPwdMustChange: Timestamp of when the password will expire - */ - if($sambaPwdMustChange == "unset" || empty($sambaPwdMustChange)){ - $sambaPwdMustChange = "("._("unset").")"; - } + @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__, + $this->attributes, "Save"); + $ldap->cd($this->dn); + $this->cleanup(); + $ldap->modify ($this->attrs); - /* sambaPwdCanChange: Timestamp of when the user is allowed to update the password - */ - if($sambaPwdCanChange == "unset" || empty($sambaPwdCanChange)){ - $sambaPwdCanChange = "("._("unset").")"; - }elseif($sambaPwdCanChange != "unset" && time() > $sambaPwdCanChange){ - $sambaPwdCanChange = _("immediately") ; - }else{ - $days = floor((($sambaPwdCanChange - time()) / 60 / 60 / 24)) ; - $hours = floor((($sambaPwdCanChange - time()) / 60 / 60) % 24) ; - $minutes = floor((($sambaPwdCanChange - time()) / 60 ) % 60) ; - - $sambaPwdCanChange = " ".$days." "._("days"); - $sambaPwdCanChange.= " ".$hours." "._("hours"); - $sambaPwdCanChange.= " ".$minutes." "._("minutes"); - } + new log("remove","users/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); + + if (!$ldap->success()){ + msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_MOD, get_class())); + } - $str = - "\n
". - "\n". - "\n". - "\n". - "\n". - "\n". - "\n". - "\n". - "\n". - "\n". - "\n". - "\n". - "\n". - "\n". - "\n". - "\n". - "\n". - "\n". - "\n". - "\n". - "\n". - "\n"; - - if($this->no_expiry){ - $str .= "\n"; - $str .= "\n"; - }else{ - $str .= "\n"; - } - - $str .= "\n". - "\n
"._("Domain attributes")."
"._("Min password length").": ".$sambaMinPwdLength."
"._("Min password length").": ".$sambaMinPwdLength."
"._("Password history").": ".$sambaPwdHistoryLength."
"._("Force password change").": ".$sambaLogonToChgPwd."
"._("Maximum password age").": ".$sambaMaxPwdAge."
"._("Minimum password age").": ".$sambaMinPwdAge."
"._("Lockout duration").": ".$sambaLockoutDuration."
"._("Bad lockout attempt").": ".$sambaLockoutThreshold."
"._("Disconnect time").": ".$sambaForceLogoff."
"._("Refuse machine password change").":".$sambaRefuseMachinePwdChange."
 
"._("User attributes")."
"._("SID").": ".$sambaSID."
"._("Last failed login").": ".$sambaBadPasswordTime."
"._("Logon attempts").": ".$sambaBadPasswordCount."
"._("Last password update").": ".$sambaPwdLastSet."
"._("Last logon").": ".$sambaLogonTime."
"._("Last logoff").": ".$sambaLogoffTime."
"._("Automatic logoff").": ".$sambaKickoffTime."
"._("Password expires").": "._("No")."
". - sprintf(_("The password would expire on %s, but the password expiry is disabled."),$sambaPwdMustChange). - "
"._("Password expires").": ".$sambaPwdMustChange."
"._("Password change available").": ".$sambaPwdCanChange."
"; - "\n
"; - return($str); - } - - - function remove_from_parent() - { - /* Cancel if there's nothing to do here */ - if (!$this->initially_was_account){ - return; - } - - /* include global link_info */ - $ldap= $this->config->get_ldap_link(); - - plugin::remove_from_parent(); - - /* Keep uid attribute for gosaAccount */ - unset($this->attrs['uid']); - unset($this->attrs['uidNumber']); - unset($this->attrs['gidNumber']); - - /* Remove objectClass for sambaIdmapEntry */ - $tmp= array(); - for ($i= 0; $iattrs["objectClass"]); $i++){ - if ($this->attrs['objectClass'][$i] != 'sambaIdmapEntry'){ - $tmp[]= $this->attrs['objectClass'][$i]; - } + /* Optionally execute a command after we're done */ + $this->handle_post_events("remove", array("uid" => $this->uid)); } - $this->attrs['objectClass']= $tmp; - @DEBUG (DEBUG_LDAP, __LINE__, __FUNCTION__, __FILE__, - $this->attributes, "Save"); - $ldap->cd($this->dn); - $this->cleanup(); - $ldap->modify ($this->attrs); - new log("remove","users/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); + /* Check for input problems */ + function check() + { + /* Call common method to give check the hook */ + $message= plugin::check(); - if (!$ldap->success()){ - msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_MOD, get_class())); - } + /* sambaHomePath requires sambaHomeDrive and vice versa */ + if(!empty($this->sambaHomePath) && empty($this->sambaHomeDrive)){ + $message[]= msgPool::required(_("Home drive")); + } + if(!empty($this->sambaHomeDrive) && empty($this->sambaHomePath)){ + $message[]= msgPool::required(_("Home path")); + } - /* Optionally execute a command after we're done */ - $this->handle_post_events("remove", array("uid" => $this->uid)); - } + /* Strings */ + foreach (array( "sambaHomePath" => _("Home directory"), + "sambaProfilePath" => _("Profile path")) as $key => $val){ + if (!$this->mungedObject->is_samba_path($this->$key)){ + $message[]= msgPool::invalid($val); + } + } + /* Numeric values */ + foreach (array( "CtxMaxConnectionTime" => _("Connection"), + "CtxMaxDisconnectionTime" => _("Disconnection"), + "CtxMaxIdleTime" => _("IDLE")) as $key => $val){ - /* Check for input problems */ - function check() - { - /* Call common method to give check the hook */ - $message= plugin::check(); + if (isset($this->mungedObject->ctx[$key]) && !tests::is_id($this->mungedObject->ctx[$key]) && $val != 0){ + $message[]= msgPool::invalid($val); + } + } - /* sambaHomePath requires sambaHomeDrive and vice versa */ - if(!empty($this->sambaHomePath) && empty($this->sambaHomeDrive)){ - $message[]= msgPool::required(_("Home drive")); - } - if(!empty($this->sambaHomeDrive) && empty($this->sambaHomePath)){ - $message[]= msgPool::required(_("Home path")); - } + /* Too many workstations? Windows usrmgr only supports eight */ + if (substr_count($this->sambaUserWorkstations, ",") >= 8){ + $message[]= _("The windows usermanager allows eight clients at maximum!"); + } - /* Strings */ - foreach (array( "sambaHomePath" => _("Home directory"), - "sambaProfilePath" => _("Profile path")) as $key => $val){ - if (!$this->mungedObject->is_samba_path($this->$key)){ - $message[]= msgPool::invalid($val); - } + return ($message); } - /* Numeric values */ - foreach (array( "CtxMaxConnectionTime" => _("Connection"), - "CtxMaxDisconnectionTime" => _("Disconnection"), - "CtxMaxIdleTime" => _("IDLE")) as $key => $val){ - if (isset($this->mungedObject->ctx[$key]) && !tests::is_id($this->mungedObject->ctx[$key]) && $val != 0){ - $message[]= msgPool::invalid($val); - } - } + /* Save data to object */ + function save_object() + { - /* Check dates */ - if (!tests::is_date($this->sambaKickoffTime)){ - $message[]= msgPool::invalid(_("Account expires after"), $this->sambaKickoffTime,"" ,"23.02.2009"); - } - if (!tests::is_date($this->sambaPwdMustChange)){ - $message[]= msgPool::invalid(_("Password expires on"), $this->sambaPwdMustChange,"" ,"23.02.2009"); - } + $SkipWrite = (!isset($this->parent) || !$this->parent) && !session::is_set('edit'); - /* Too many workstations? Windows usrmgr only supports eight */ - if (substr_count($this->sambaUserWorkstations, ",") >= 8){ - $message[]= _("The windows usermanager allows eight clients at maximum!"); - } + /* We only care if we are on the sambaTab... */ + if (isset($_POST['sambaTab'])){ + plugin::save_object(); - return ($message); - } + // Display domain info dialog + if(isset($_POST['display_information'])){ + msg_dialog::display(_("Information"), + $this->get_samba_information(), + INFO_DIALOG); + } + // Get posted flags. + foreach(array("enforcePasswordChange", "passwordNeverExpires", "noPasswordRequired", + "temporaryDisabled","cannotChangePassword") as $name){ + $flag = "flag_{$name}"; + if($this->acl_is_writeable($name)){ + $tmp = isset($_POST[$flag]); + $this->is_modified |= ($tmp != $this->$flag); + $this->$flag = isset($_POST[$flag]); + } + } - /* Save data to object */ - function save_object() - { - $SkipWrite = (!isset($this->parent) || !$this->parent) && !session::is_set('edit'); + // get sambaDomain attribute + if ($this->acl_is_writeable("sambaDomainName",$SkipWrite) && isset ($_POST['sambaDomainName'],$SkipWrite)){ + $this->sambaDomainName= validate($_POST['sambaDomainName']); + } - /* We only care if we are on the sambaTab... */ - if (isset($_POST['sambaTab'])){ - plugin::save_object(); + // Save CTX values + $TsAcl = $this->acl_is_writeable("AllowLoginOnTerminalServer",$SkipWrite); + foreach($this->ctxattributes as $val){ + if (isset($_POST[$val]) && $TsAcl){ + $this->mungedObject->ctx[$val]= get_post($val); + } + } - $this->enforcePasswordChange = (isset($_POST['enforcePasswordChange'])); - $this->cannotChangePassword = (isset($_POST['cannotChangePassword'])); + $this->mungedObject->setTsLogin(!isset($_POST['tslogin']) && $TsAcl); - if(isset($_POST['display_information'])){ - msg_dialog::display(_("Information"), - $this->get_samba_information(), - INFO_DIALOG); - } + // Need to do some index checking to avoid messages like "index ... not found" + if(isset($_POST['brokenconn'])) { + $this->mungedObject->setBrokenConn($_POST['brokenconn'] == '1' && $TsAcl); + } + if(isset($_POST['reconn'])) { + $this->mungedObject->setReConn($_POST['reconn'] == '1' && $TsAcl); + } + $this->mungedObject->setInheritMode(isset($_POST['inherit']) && $TsAcl); + $this->mungedObject->setCtxMaxConnectionTimeF(!isset($_POST['CtxMaxConnectionTimeF']) && $TsAcl); + $this->mungedObject->setCtxMaxDisconnectionTimeF(!isset($_POST['CtxMaxDisconnectionTimeF']) && $TsAcl); + $this->mungedObject->setCtxMaxIdleTimeF(!isset($_POST['CtxMaxIdleTimeF']) && $TsAcl); + $this->mungedObject->setConnectClientDrives(isset($_POST['connectclientdrives']) && $TsAcl); + $this->mungedObject->setConnectClientPrinters(isset($_POST['connectclientprinters']) && $TsAcl); + $this->mungedObject->setDefaultPrinter(isset($_POST['defaultprinter']) && $TsAcl); + + // Save combo boxes. Takes two values + if(isset($_POST['reconn'])) { + $this->mungedObject->setShadow(isset($_POST['shadow']) && $TsAcl,$_POST['shadow']); + } - /* Take care about access options */ - if ($this->acl_is_writeable("sambaAcctFlagsL",$SkipWrite) || ($this->acl_is_writeable("sambaAcctFlagsN",$SkipWrite))){ - $attrname= "sambaPwdCanChange"; - if (isset($_POST["allow_pwchange"]) && $_POST["allow_pwchange"] == 1){ - $tmp= 1; - } else { - $tmp= 0; - } - if ($this->$attrname != $tmp){ - $this->is_modified= TRUE; - } - $this->sambaPwdCanChange= $tmp; - } - $tmp= "U"; - - $this->no_expiry = FALSE; - if (isset($_POST["no_expiry"])){ - if ($_POST["no_expiry"] == 1){ - $tmp.= "X"; - $this->no_expiry = TRUE; - } - } - - $this->no_password_required = FALSE; - if (isset($_POST["no_password_required"])){ - if ($_POST["no_password_required"] == 1){ - $tmp.= "N"; - $this->no_password_required = TRUE; - } - } - if (isset($_POST["password_expires"])){ - if ($_POST["password_expires"] == 1){ - $this->password_expires= 1; - } - } else { - $this->password_expires= 0; - } - $this->temporary_disable = FALSE; - if (isset($_POST["temporary_disable"])){ - if ($_POST["temporary_disable"] == 1){ - $this->temporary_disable = TRUE; - if (is_integer(strpos($this->sambaAcctFlags, "L"))) { - $tmp.= "L"; - } else { - $tmp.= "D"; - } - } - } - if (isset($_POST["logon_time_set"])){ - if ($_POST["logon_time_set"] == 1){ - $this->logon_time_set= 1; - } - } else { - $this->logon_time_set= 0; - } - if (isset($_POST["logoff_time_set"])){ - if ($_POST["logoff_time_set"] == 1){ - $this->logoff_time_set= 1; - } - } else { - $this->logoff_time_set= 0; - } - if (isset($_POST["kickoff_time_set"])){ - if ($_POST["kickoff_time_set"] == 1){ - $this->kickoff_time_set= 1; - } - } else { - $this->kickoff_time_set= 0; - } - - $fill= ""; - for ($i= strlen($tmp); $i<12; $i++){ - $fill.= " "; - } - - $tmp= "[$tmp$fill]"; - - /* Only save if acl's are set */ - if ($this->acl_is_writeable("sambaAcctFlagsL",$SkipWrite) || ($this->acl_is_writeable("sambaAcctFlagsN",$SkipWrite))){ - $attrname= "sambaAcctFlags"; - if ($this->$attrname != $tmp){ - $this->is_modified= TRUE; - } - $this->$attrname= $tmp; - } - - /* Save sambaDomain attribute */ - if ($this->acl_is_writeable("sambaDomainName",$SkipWrite) && isset ($_POST['sambaDomainName'],$SkipWrite)){ - $this->sambaDomainName= validate($_POST['sambaDomainName']); - } - - /* Save CTX values */ - /* Save obvious values */ - foreach($this->ctxattributes as $val){ - if (isset($_POST[$val]) && $this->acl_is_writeable("AllowLoginOnTerminalServer",$SkipWrite)){ - if (get_magic_quotes_gpc()) { - $this->mungedObject->ctx[$val]= stripcslashes(validate($_POST[$val])); - } else { - $this->mungedObject->ctx[$val]= validate($_POST[$val]); - } - } - } - - /* Save checkbox states. */ - $this->mungedObject->setTsLogin(!isset($_POST['tslogin']) - && $this->acl_is_writeable("AllowLoginOnTerminalServer",$SkipWrite)); - // Need to do some index checking to avoid messages like "index ... not found" - if(isset($_POST['brokenconn'])) { - $this->mungedObject->setBrokenConn($_POST['brokenconn'] == '1' - && $this->acl_is_writeable("AllowLoginOnTerminalServer",$SkipWrite)); - } - if(isset($_POST['reconn'])) { - $this->mungedObject->setReConn($_POST['reconn'] == '1' - && $this->acl_is_writeable("AllowLoginOnTerminalServer",$SkipWrite)); - } - $this->mungedObject->setInheritMode(isset($_POST['inherit']) - && $this->acl_is_writeable("AllowLoginOnTerminalServer",$SkipWrite)); - $this->mungedObject->setCtxMaxConnectionTimeF(!isset($_POST['CtxMaxConnectionTimeF']) - && $this->acl_is_writeable("AllowLoginOnTerminalServer",$SkipWrite)); - $this->mungedObject->setCtxMaxDisconnectionTimeF( - !isset($_POST['CtxMaxDisconnectionTimeF']) - && $this->acl_is_writeable("AllowLoginOnTerminalServer",$SkipWrite)); - $this->mungedObject->setCtxMaxIdleTimeF(!isset($_POST['CtxMaxIdleTimeF']) - && $this->acl_is_writeable("AllowLoginOnTerminalServer",$SkipWrite)); - $this->mungedObject->setConnectClientDrives(isset($_POST['connectclientdrives']) - && $this->acl_is_writeable("AllowLoginOnTerminalServer",$SkipWrite)); - $this->mungedObject->setConnectClientPrinters(isset($_POST['connectclientprinters']) - && $this->acl_is_writeable("AllowLoginOnTerminalServer",$SkipWrite)); - $this->mungedObject->setDefaultPrinter(isset($_POST['defaultprinter']) - && $this->acl_is_writeable("AllowLoginOnTerminalServer",$SkipWrite)); - - /* Save combo boxes. Takes two values */ - if(isset($_POST['reconn'])) { - $this->mungedObject->setShadow(isset($_POST['shadow']) && $this->acl_is_writeable("AllowLoginOnTerminalServer",$SkipWrite),$_POST['shadow']); - } - - /* Check for changes */ - if ($this->sambaMungedDial != $this->mungedObject->getMunged()){ - $this->is_modified= TRUE; - } - - } - } - - - /* Save to LDAP */ - function save() - { - /* Load uid and gid of this 'dn' */ - $ldap= $this->config->get_ldap_link(); - $ldap->cat($this->dn, array('uidNumber', 'gidNumber')); - $tmp= $ldap->fetch(); - $this->uidNumber= $tmp['uidNumber'][0]; - $this->gidNumber= $tmp['gidNumber'][0]; - - plugin::save(); - - /* Remove objectClass for sambaIdmapEntry */ - $tmp= array(); - for ($i= 0; $iattrs["objectClass"]); $i++){ - if ($this->attrs['objectClass'][$i] != 'sambaIdmapEntry'){ - $tmp[]= $this->attrs['objectClass'][$i]; - } - } - $this->attrs['objectClass']= $tmp; - - // Enforce password change - if($this->enforcePasswordChange){ - $this->attrs['sambaPwdLastSet'] = 0; - }else{ - if ($this->sambaPwdLastSet != "0"){ - $this->attrs['sambaPwdLastSet']= $this->sambaPwdLastSet; - } else { - $this->attrs['sambaPwdLastSet']= array(); + // Check for changes + $this->is_modified |= ($this->sambaMungedDial != $this->mungedObject->getMunged()); } } - if($this->cannotChangePassword){ - $this->attrs['sambaPwdCanChange'] = 4294967295; - } - - /* Generate rid / primaryGroupId */ - if (!isset($this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName]['SID'])){ - msg_dialog::display(_("Warning"), _("Undefined Samba SID detected. Please fix this problem manually!"), WARNING_DIALOG); - } else { - $this->SID= $this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName]['SID']; - $this->ridBase= $this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName]['RIDBASE']; - } - /* Need to generate a new uniqe uid/gid combination? */ - if ($this->sambaSID == "" || $this->orig_sambaDomainName != $this->sambaDomainName){ - $uidNumber= $this->uidNumber; - while(TRUE){ - $sid= $this->SID."-".($uidNumber*2 + $this->ridBase); - $ldap->cd($this->config->current['BASE']); - $ldap->search("(sambaSID=$sid)", array("sambaSID")); - if ($ldap->count() == 0){ - break; - } - $uidNumber++; - } - $this->attrs['sambaSID']= $sid; - - /* Check for users primary group */ - $ldap->cd($this->config->current['BASE']); - $ldap->search("(&(objectClass=posixGroup)(gidNumber=".$this->gidNumber."))", array("cn")); - if ($ldap->count() != 1){ - msg_dialog::display(_("Warning"), _("Cannot convert primary group to samba group: group cannot be identified!"), WARNING_DIALOG); - } else { - $attrs= $ldap->fetch(); - $g= new group($this->config, $ldap->getDN()); - if ($g->sambaSID == ""){ - $g->sambaDomainName= $this->sambaDomainName; - $g->smbgroup= TRUE; - $g->save (); - } - $this->attrs['sambaPrimaryGroupSID']= $g->sambaSID; - } - } - if ($this->sambaHomeDrive == ""){ - $this->attrs["sambaHomeDrive"]= array(); - } + function save() + { + /* Load uid and gid of this 'dn' */ + $ldap= $this->config->get_ldap_link(); + $ldap->cat($this->dn, array('uidNumber', 'gidNumber')); + $tmp= $ldap->fetch(); + $this->uidNumber= $tmp['uidNumber'][0]; + $this->gidNumber= $tmp['gidNumber'][0]; - /* Generate munged dial value */ - $this->attrs["sambaMungedDial"]= $this->mungedObject->getMunged(); + plugin::save(); - /* User wants me to fake the idMappings? This is useful for - making winbind resolve the user names in a reasonable amount - of time in combination with larger databases. */ - if ($this->config->get_cfg_value("sambaidmapping") == "true"){ - $this->attrs['objectClass'][]= "sambaIdmapEntry"; - } + /* Remove objectClass for sambaIdmapEntry */ + $tmp= array(); + for ($i= 0; $iattrs["objectClass"]); $i++){ + if ($this->attrs['objectClass'][$i] != 'sambaIdmapEntry'){ + $tmp[]= $this->attrs['objectClass'][$i]; + } + } + $this->attrs['objectClass']= $tmp; - /* Password expiery */ - if ($this->password_expires == "1"){ - #TODO: check for date format - if ($this->attrs['sambaPwdMustChange'] == ""){ - $this->attrs['sambaPwdMustChange']= 0; - } else { - list($day, $month, $year)= explode('.', $this->sambaPwdMustChange); - $this->attrs['sambaPwdMustChange']= mktime(0,0,0,$month, $day, $year); - } - } else { - $this->attrs['sambaPwdMustChange']= array(); - } - /* Account expiery */ - if ($this->logon_time_set == "1"){ - $this->attrs['sambaLogonTime']= $this->sambaLogonTime; - } else { - $this->attrs['sambaLogonTime']= array(); - } - if ($this->logoff_time_set == "1"){ - $this->attrs['sambaLogoffTime']= $this->sambaLogoffTime; - } else { - $this->attrs['sambaLogoffTime']= array(); - } - if ($this->kickoff_time_set == "1"){ - /* Adapt values to be timestamps */ - #TODO: check for date format - if ($this->attrs['sambaKickoffTime'] == ""){ - $this->attrs['sambaKickoffTime']= 2147483647; - } else { - list($day, $month, $year)= explode('.', $this->sambaKickoffTime); - $this->attrs['sambaKickoffTime']= mktime(0,0,0,$month, $day, $year); - } - } else { - $this->attrs['sambaKickoffTime']= array(); - } + // Handle "enforce password change" flag. + if($this->flag_enforcePasswordChange){ + $this->attrs['sambaPwdMustChange'] = 0; + }else{ - /* Write back to ldap */ - $ldap->cd($this->dn); - $this->cleanup(); - $ldap->modify ($this->attrs); + // Keep old values if given. + if ($this->sambaPwdMustChange != "0"){ + $this->attrs['sambaPwdMustChange']= $this->sambaPwdMustChange; + } else { + $this->attrs['sambaPwdMustChange']= array(); + } + } - if($this->initially_was_account){ - new log("modify","users/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); - }else{ - new log("create","users/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); - } + // Handle "Cannot change password" flag. + if($this->flag_cannotChangePassword){ + $this->attrs['sambaPwdCanChange'] = 4294967295; + }else{ - if (!$ldap->success()){ - msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, 0, get_class())); - } + // Keep old values if given. + if ($this->sambaPwdCanChange != 4294967295){ + $this->attrs['sambaPwdCanChange']= $this->sambaPwdCanChange; + } else { + $this->attrs['sambaPwdCanChange']= array(); + } + } - /* Optionally execute a command after we're done */ - if ($this->initially_was_account == $this->is_account){ - if ($this->is_modified){ - $this->handle_post_events("modify", array("uid" => $this->uid)); - } - } else { - $this->handle_post_events("add", array("uid" => $this->uid)); - } - } - - - /* Force password set, if this account doesn't have any samba passwords */ - function password_change_needed() - { - if(!$this->initially_was_account && $this->is_account){ - $ldap = $this->config->get_ldap_link(); - $ldap->cat($this->dn,array("sambaLMPassword","sambaNTPassword")); - $attrs = $ldap->fetch(); - if(!isset($attrs['sambaLMPassword']) || !isset($attrs['sambaNTPassword'])){ - return(TRUE); - } - } - return(FALSE); - } + // Create sambaAcctFlags + $tmp = "U"; + if($this->flag_passwordNeverExpires) $tmp .="X"; + if($this->flag_noPasswordRequired) $tmp .="N"; + if($this->flag_temporaryDisabled){ + if(preg_match("/L/i", $this->sambaAcctFlags)){ + $tmp .= "L"; + }else{ + $tmp .= "D"; + } + } + // Fill flag list with whitespaces + $fill= ""; + for ($i= strlen($tmp); $i<12; $i++){ + $fill.= " "; + } + $this->attrs['sambaAcctFlags'] = "[{$tmp}{$fill}]"; - function adapt_from_template($dn, $skip= array()) - { - plugin::adapt_from_template($dn, $skip); + // Generate rid / primaryGroupId + if (!isset($this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName]['SID'])){ + msg_dialog::display(_("Warning"), _("Undefined Samba SID detected. Please fix this problem manually!"), WARNING_DIALOG); + } else { + $this->SID= $this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName]['SID']; + $this->ridBase= $this->config->data['SERVERS']['SAMBA'][$this->sambaDomainName]['RIDBASE']; + } - $this->sambaSID= ""; - $this->sambaPrimaryGroupSID= ""; + // Need to generate a new uniqe uid/gid combination? + if ($this->sambaSID == "" || $this->orig_sambaDomainName != $this->sambaDomainName){ + $uidNumber= $this->uidNumber; + while(TRUE){ + $sid= $this->SID."-".($uidNumber*2 + $this->ridBase); + $ldap->cd($this->config->current['BASE']); + $ldap->search("(sambaSID=$sid)", array("sambaSID")); + if ($ldap->count() == 0){ + break; + } + $uidNumber++; + } + $this->attrs['sambaSID']= $sid; + + // Check for users primary group + $ldap->cd($this->config->current['BASE']); + $ldap->search("(&(objectClass=posixGroup)(gidNumber=".$this->gidNumber."))", array("cn")); + if ($ldap->count() != 1){ + msg_dialog::display(_("Warning"), + _("Cannot convert primary group to samba group: group cannot be identified!"), + WARNING_DIALOG); + } else { + $attrs= $ldap->fetch(); + $g= new group($this->config, $ldap->getDN()); + if ($g->sambaSID == ""){ + $g->sambaDomainName= $this->sambaDomainName; + $g->smbgroup= TRUE; + $g->save (); + } + $this->attrs['sambaPrimaryGroupSID']= $g->sambaSID; + } + } - /* Fill mungedDial field */ - if (isset($this->attrs['sambaMungedDial']) && !in_array('sambaMungedDial', $skip)){ - $this->mungedObject->load($this->sambaMungedDial); - } + // Set or reset homeDrive - Why is this done seperataly? + if ($this->sambaHomeDrive == ""){ + $this->attrs["sambaHomeDrive"]= array(); + } - /* Adapt munged attributes */ - foreach($this->ctxattributes as $attr){ - if(isset($this->mungedObject->ctx[$attr])) - $val = $this->mungedObject->ctx[$attr]; + // Generate munged dial value + $this->attrs["sambaMungedDial"]= $this->mungedObject->getMunged(); - foreach (array("sn", "givenName", "uid") as $repl){ - if (preg_match("/%$repl/i", $val)){ - $val= preg_replace ("/%$repl/i", $this->parent->$repl, $val); + // User wants me to fake the idMappings? This is useful for + // making winbind resolve the user names in a reasonable amount + // of time in combination with larger databases. + if ($this->config->get_cfg_value("sambaidmapping") == "true"){ + $this->attrs['objectClass'][]= "sambaIdmapEntry"; } - } - $this->mungedObject->ctx[$attr] = $val; - } - /* Password expiery */ - if(isset($this->attrs['sambaPwdMustChange']) && - $this->attrs['sambaPwdMustChange'][0] != 0 && !in_array('sambaPwdMustChange', $skip)){ - $this->password_expires= 1; + // Write back to ldap + $ldap->cd($this->dn); + $this->cleanup(); + $ldap->modify ($this->attrs); + if (!$ldap->success()){ + msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, 0, get_class())); + }else{ + if ($this->initially_was_account == $this->is_account){ + if ($this->is_modified){ + $this->handle_post_events("modify", array("uid" => $this->uid)); + new log("modify","users/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); + } + } else { + $this->handle_post_events("add", array("uid" => $this->uid)); + new log("create","users/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); + } + } } - if(isset($this->attrs['sambaLogonTime']) && ! ( - $this->attrs['sambaLogonTime'][0] == 0 || - $this->attrs['sambaLogonTime'][0] == 2147483647 - ) && !in_array('sambaLogonTime', $skip)){ - $this->logon_time_set= 1; - } - if(isset($this->attrs['sambaLogoffTime']) && ! ( - $this->attrs['sambaLogoffTime'][0] == 0 || - $this->attrs['sambaLogoffTime'][0] == 2147483647 - ) && !in_array('sambaLogonTime', $skip)){ - $this->logoff_time_set= 1; - } - /* Account expiery */ - if(isset($this->attrs['sambaKickoffTime']) && ! ( - $this->attrs['sambaKickoffTime'][0] == 0 || - $this->attrs['sambaKickoffTime'][0] == 2147483647 - ) && !in_array('sambaKickoffTime', $skip)){ - $this->kickoff_time_set= 1; + /* Force password set, if this account doesn't have any samba passwords */ + function password_change_needed() + { + if(!$this->initially_was_account && $this->is_account){ + $ldap = $this->config->get_ldap_link(); + $ldap->cat($this->dn,array("sambaLMPassword","sambaNTPassword")); + $attrs = $ldap->fetch(); + if(!isset($attrs['sambaLMPassword']) || !isset($attrs['sambaNTPassword'])){ + return(TRUE); + } + } + return(FALSE); } - /* Get global filter config */ - if (!session::is_set("sambafilter")){ - $ui= get_userinfo(); - $base= get_base_from_people($ui->dn); - $sambafilter= array( "depselect" => $base, "regex" => "*"); - session::set("sambafilter", $sambafilter); - } - } - - - static function plInfo() - { - return (array( - "plShortName" => _("Samba"), - "plDescription" => _("Samba settings"), - "plSelfModify" => TRUE, - "plDepends" => array("user"), - "plPriority" => 5, - "plSection" => array("personal" => _("My account")), - "plCategory" => array("users"), - "plOptions" => array(), - - "plProvidedAcls" => array( - - "sambaHomePath" => _("Generic home directory") , - "sambaHomeDrive" => _("Generic samba home drive") , - "sambaDomainName" => _("Domain") , - "sambaLogonScript" => _("Generic script path") , - "sambaProfilePath" => _("Generic profile path") , - "AllowLoginOnTerminalServer" => _("Allow login on terminal server"), - "InheritClientConfig" => _("Inherit client config"), - "sambaPwdCanChange" => _("Allow user to change password") , - "sambaAcctFlagsN" => _("Login from windows client requires no password"), - "sambaAcctFlagsX" => _("Password never expires"), - "sambaAcctFlagsL" => _("Lock samba account"), - "sambaPwdMustChange" => _("Password expires") , - "enforcePasswordChange" => _("Enforce password change"), - "cannotChangePassword" => _("Cannot change password"), - "sambaLogonHours" => _("Logon hours") , - "sambaUserWorkstations" => _("Allow connection from")) - )); - } - - function enable_multiple_support() - { - plugin::enable_multiple_support(); - $this->multiple_support_active = TRUE; - } - - function multiple_save_object() - { - if (isset($_POST['sambaTab'])){ - $this->save_object(); - plugin::multiple_save_object(); - foreach(array("allow_pwchange","tslogin","CtxWFHomeDir","CtxWFHomeDirDrive","CtxWFProfilePath", - "inherit","CtxWorkDirectory","CtxInitialProgram","CtxMaxConnectionTimeF","CtxMaxConnectionTime","CtxMaxDisconnectionTimeF", - "CtxMaxDisconnectionTime","CtxMaxIdleTimeF","CtxMaxIdleTime","connectclientdrives", - "onnectclientprinters","defaultprinter","shadow","brokenconn", - "reconn","allow_pwchange","connectclientprinters","no_expiry","no_password_required","temporary_disable", - "password_expires","logon_time_set","logoff_time_set","kickoff_time_set","SetSambaLogonHours", - "workstation_list","enforcePasswordChange","cannotChangePassword") as $attr){ - if(isset($_POST["use_".$attr])){ - $this->multi_boxes[] = $attr; - } - } - } - } + function adapt_from_template($dn, $skip= array()) + { + plugin::adapt_from_template($dn, $skip); - function multiple_check() - { - $message = plugin::multiple_check(); - /* Strings */ - foreach (array( "sambaHomePath" => _("Home directory"), - "sambaProfilePath" => _("Profile path")) as $key => $val){ - if (in_array($key,$this->multi_boxes) && !$this->mungedObject->is_samba_path($this->$key)){ - $message[]= msgPool::invalid($val); - } - } + $this->sambaSID= ""; + $this->sambaPrimaryGroupSID= ""; - /* Numeric values */ - foreach (array( "CtxMaxConnectionTime" => _("Connection"), - "CtxMaxDisconnectionTime" => _("Disconnection"), - "CtxMaxIdleTime" => _("IDLE")) as $key => $val){ - if (in_array($key,$this->multi_boxes) && - isset($this->mungedObject->ctx[$key]) && - !tests::is_id($this->mungedObject->ctx[$key]) && $val != 0){ - $message[]=msgPool::invalid($val); - } - } + /* Fill mungedDial field */ + if (isset($this->attrs['sambaMungedDial']) && !in_array('sambaMungedDial', $skip)){ + $this->mungedObject->load($this->sambaMungedDial); + } - /* Too many workstations? Windows usrmgr only supports eight */ - if (substr_count($this->sambaUserWorkstations, ",") >= 8){ - $message[]= _("The windows user manager only allows eight clients. You've specified more than eight."); - } - return($message); - } + /* Adapt munged attributes */ + foreach($this->ctxattributes as $attr){ + if(isset($this->mungedObject->ctx[$attr])) + $val = $this->mungedObject->ctx[$attr]; - - function get_multi_init_values() - { - $ret = plugin::get_multi_init_values(); + foreach (array("sn", "givenName", "uid") as $repl){ + if (preg_match("/%$repl/i", $val)){ + $val= preg_replace ("/%$repl/i", $this->parent->$repl, $val); + } + } + $this->mungedObject->ctx[$attr] = $val; + } - /* Parse given sambaUserWorkstations into array - * to allow "init_multiple_support()" to detect multiple used workstations. - * Those workstations will be displayed in light grey. - */ - $tmp2 = array("count" => 0); - $tmp = explode(",", $this->sambaUserWorkstations); - foreach($tmp as $station){ - $station = trim($station); - if(!empty($station)){ - $tmp2[] = $station; - $tmp2['count'] ++; - } + // If you make changes here, please make the same changes in the constructor! + + // A password change is enforced by using a timestamp in sambaPwdMustChange. + // We simple set it to '0' to enforce a change. + // -------------------------------- + // Normally it contains a timestamp, which specifies and expiration date. + $this->flag_enforcePasswordChange = (isset($this->attrs['sambaPwdMustChange']) && $this->attrs['sambaPwdMustChange'][0] == '0'); + + // A user cannot change his password until the given timestamp has reached. + // We simply set it to max int to disallow a password change till the timestamp reaches 4294967295, + // this is definitly far in the future and thus disallows a password change at all. + // -------------------------------- + // The user is not able to change his password while sambaPwdCanChange is 4294967295 (Integer 32 Bit max) + $this->flag_cannotChangePassword = (isset($this->attrs['sambaPwdCanChange']) && $this->attrs['sambaPwdCanChange'][0] == '4294967295'); + + // A password never expires if 'sambaAcctFlags' contains 'X'. + // (See flags above for details) + $this->flag_passwordNeverExpires = preg_match("/X/i", $this->sambaAcctFlags); + + // A password is NOT required if 'sambaAcctFlags' contains 'N'. + // (See flags above for details) + $this->flag_noPasswordRequired = preg_match("/N/i", $this->sambaAcctFlags); + + // A account is locked if if 'sambaAcctFlags' contains 'L' or 'D'. + // (See flags above for details) + $this->flag_temporaryDisabled = preg_match("/L/i", $this->sambaAcctFlags) || + preg_match("/D/i", $this->sambaAcctFlags); + } + + + static function plInfo() + { + return (array( + "plShortName" => _("Samba"), + "plDescription" => _("Samba settings"), + "plSelfModify" => TRUE, + "plDepends" => array("user"), + "plPriority" => 5, + "plSection" => array("personal" => _("My account")), + "plCategory" => array("users"), + "plOptions" => array(), + + "plProvidedAcls" => array( + + "sambaHomePath" => _("Generic home directory") , + "sambaHomeDrive" => _("Generic samba home drive") , + "sambaDomainName" => _("Domain") , + "sambaLogonScript" => _("Generic script path") , + "sambaProfilePath" => _("Generic profile path") , + "AllowLoginOnTerminalServer" => _("Allow login on terminal server"), + "InheritClientConfig" => _("Inherit client config"), + + "enforcePasswordChange" => _("Enforce password change"), + "cannotChangePassword" => _("Disallow password change") , + "noPasswordRequired" => _("Login from windows client requires no password"), + "passwordNeverExpires" => _("Password never expires"), + "temporaryDisabled" => _("Lock samba account"), + + "sambaLogonHours" => _("Logon hours") , + "sambaUserWorkstations" => _("Allow connection from")) + )); + } + + function enable_multiple_support() + { + plugin::enable_multiple_support(); + $this->multiple_support_active = TRUE; } - $ret['sambaUserWorkstations'] = $tmp2; - return($ret); - } - + function multiple_save_object() + { + if (isset($_POST['sambaTab'])){ + $this->save_object(); + plugin::multiple_save_object(); + foreach(array("allow_pwchange","tslogin","CtxWFHomeDir","CtxWFHomeDirDrive","CtxWFProfilePath", + "inherit","CtxWorkDirectory","CtxInitialProgram","CtxMaxConnectionTimeF","CtxMaxConnectionTime","CtxMaxDisconnectionTimeF", + "CtxMaxDisconnectionTime","CtxMaxIdleTimeF","CtxMaxIdleTime","connectclientdrives", + "onnectclientprinters","defaultprinter","shadow","brokenconn", + "reconn","allow_pwchange","connectclientprinters","no_expiry","no_password_required","temporary_disable", + "password_expires","logon_time_set","logoff_time_set","kickoff_time_set","SetSambaLogonHours", + "workstation_list","enforcePasswordChange","cannotChangePassword") as $attr){ + if(isset($_POST["use_".$attr])){ + $this->multi_boxes[] = $attr; + } + } + } + } - function init_multiple_support($attrs,$all) - { - plugin::init_multiple_support($attrs,$all); - $this->multiple_sambaUserWorkstations = array(); - if(isset($all['sambaUserWorkstations'])){ - for($i = 0 ; $i < $all['sambaUserWorkstations']['count'] ; $i++){ - $station = trim($all['sambaUserWorkstations'][$i]); - $this->multiple_sambaUserWorkstations[$station] = array("Name" => $station, "UsedByAllUsers" => FALSE); - } - } - if(isset($attrs['sambaUserWorkstations'])){ - for($i = 0 ; $i < $attrs['sambaUserWorkstations']['count'] ; $i++){ - $station = trim($attrs['sambaUserWorkstations'][$i]); - $this->multiple_sambaUserWorkstations[$station] = array("Name" => $station, "UsedByAllUsers" => TRUE); - } - } - } + function multiple_check() + { + $message = plugin::multiple_check(); - function multiple_execute() - { - return($this->execute()); - } + /* Strings */ + foreach (array( "sambaHomePath" => _("Home directory"), + "sambaProfilePath" => _("Profile path")) as $key => $val){ + if (in_array($key,$this->multi_boxes) && !$this->mungedObject->is_samba_path($this->$key)){ + $message[]= msgPool::invalid($val); + } + } - function get_multi_edit_values() - { - $ret = plugin::get_multi_edit_values(); + /* Numeric values */ + foreach (array( "CtxMaxConnectionTime" => _("Connection"), + "CtxMaxDisconnectionTime" => _("Disconnection"), + "CtxMaxIdleTime" => _("IDLE")) as $key => $val){ + if (in_array($key,$this->multi_boxes) && + isset($this->mungedObject->ctx[$key]) && + !tests::is_id($this->mungedObject->ctx[$key]) && $val != 0){ + $message[]=msgPool::invalid($val); + } + } - /* Terminal Server */ - if(in_array("tslogin",$this->multi_boxes)){ - $ret['tslogin'] = $this->mungedObject->getTsLogin(); - } - if(in_array("CtxWFHomeDirDrive",$this->multi_boxes)){ - $ret['CtxWFHomeDirDrive'] = $this->mungedObject->ctx['CtxWFHomeDirDrive']; - } - if(in_array("CtxWFHomeDir",$this->multi_boxes)){ - $ret['CtxWFHomeDir'] = $this->mungedObject->ctx['CtxWFHomeDir']; - } - if(in_array("CtxWFProfilePath",$this->multi_boxes)){ - $ret['CtxWFProfilePath'] = $this->mungedObject->ctx['CtxWFProfilePath']; + /* Too many workstations? Windows usrmgr only supports eight */ + if (substr_count($this->sambaUserWorkstations, ",") >= 8){ + $message[]= _("The windows user manager only allows eight clients. You've specified more than eight."); + } + return($message); } - if(in_array("inherit",$this->multi_boxes)){ - $ret['inherit'] = $this->mungedObject->getInheritMode(); - } - if(in_array("CtxInitialProgram",$this->multi_boxes)){ - $ret['CtxInitialProgram'] = $this->mungedObject->ctx['CtxInitialProgram']; - } - if(in_array("CtxWorkDirectory",$this->multi_boxes)){ - $ret['CtxWorkDirectory'] = $this->mungedObject->ctx['CtxWorkDirectory']; - } - /* Time Limits. Be careful here, there are some negations */ - if(in_array("CtxMaxConnectionTimeF",$this->multi_boxes)){ - $ret["CtxMaxConnectionTimeF"] = !$this->mungedObject->getCtxMaxConnectionTimeF(); - if(!$ret["CtxMaxConnectionTimeF"]){ - $ret["CtxMaxConnectionTime"] = $this->mungedObject->ctx['CtxMaxConnectionTime']; - } - } - if(in_array("CtxMaxDisconnectionTimeF",$this->multi_boxes)){ - $ret["CtxMaxDisconnectionTimeF"]= !$this->mungedObject->getCtxMaxDisconnectionTimeF(); - if(!$ret["CtxMaxDisconnectionTimeF"]){ - $ret["CtxMaxDisconnectionTime"]= $this->mungedObject->ctx['CtxMaxDisconnectionTime']; - } - } - if(in_array("CtxMaxIdleTimeF",$this->multi_boxes)){ - $ret["CtxMaxIdleTimeF"] = !$this->mungedObject->getCtxMaxIdleTimeF(); - if(!$ret["CtxMaxIdleTimeF"]){ - $ret["CtxMaxIdleTime"] = $this->mungedObject->ctx['CtxMaxIdleTime']; - } - } + function get_multi_init_values() + { + $ret = plugin::get_multi_init_values(); - /* Client Devices */ - if(in_array("connectclientdrives",$this->multi_boxes)){ - $ret["connectclientdrives"] = $this->mungedObject->getConnectClientDrives(); - } - if(in_array("connectclientprinters",$this->multi_boxes)){ - $ret["connectclientprinters"] = $this->mungedObject->getConnectClientPrinters(); - } - if(in_array("defaultprinter",$this->multi_boxes)){ - $ret["defaultprinter"] = $this->mungedObject->getDefaultPrinter(); + /* Parse given sambaUserWorkstations into array + * to allow "init_multiple_support()" to detect multiple used workstations. + * Those workstations will be displayed in light grey. + */ + $tmp2 = array("count" => 0); + $tmp = explode(",", $this->sambaUserWorkstations); + foreach($tmp as $station){ + $station = trim($station); + if(!empty($station)){ + $tmp2[] = $station; + $tmp2['count'] ++; + } + } + $ret['sambaUserWorkstations'] = $tmp2; + return($ret); } - /* Misc */ - if(in_array("shadow",$this->multi_boxes)){ - $ret["shadow"] =$this->mungedObject->getShadow(); - } - if(in_array("brokenconn",$this->multi_boxes)){ - $ret["brokenconn"]=$this->mungedObject->getBrokenConn(); - } - if(in_array("reconn",$this->multi_boxes)){ - $ret["reconn"] =$this->mungedObject->getReConn(); - } - /* Flags */ - if(in_array("allow_pwchange",$this->multi_boxes)){ - $ret['sambaPwdCanChange'] = $this->sambaPwdCanChange; - } - - if(in_array("password_expires",$this->multi_boxes)){ - $ret['password_expires'] = $this->password_expires; - $ret['sambaPwdMustChange']= $this->sambaPwdMustChange; - } - if(in_array("logon_time_set",$this->multi_boxes)){ - $ret['logon_time_set'] = $this->logon_time_set; - $ret['sambaLogonTime'] = $this->sambaLogonTime; - } - if(in_array("logoff_time_set",$this->multi_boxes)){ - $ret['logoff_time_set'] = $this->logoff_time_set; - $ret['sambaLogoffTime'] = $this->sambaLogoffTime; - } - if(in_array("kickoff_time_set",$this->multi_boxes)){ - $ret['kickoff_time_set'] = $this->kickoff_time_set; - $ret['sambaKickoffTime'] = $this->sambaKickoffTime; - } - if(in_array("no_password_required",$this->multi_boxes)){ - $ret['no_password_required'] = $this->no_password_required; - } + function init_multiple_support($attrs,$all) + { + plugin::init_multiple_support($attrs,$all); - if(in_array("no_expiry",$this->multi_boxes)){ - $ret['no_expiry'] = $this->no_expiry; + $this->multiple_sambaUserWorkstations = array(); + if(isset($all['sambaUserWorkstations'])){ + for($i = 0 ; $i < $all['sambaUserWorkstations']['count'] ; $i++){ + $station = trim($all['sambaUserWorkstations'][$i]); + $this->multiple_sambaUserWorkstations[$station] = array("Name" => $station, "UsedByAllUsers" => FALSE); + } + } + if(isset($attrs['sambaUserWorkstations'])){ + for($i = 0 ; $i < $attrs['sambaUserWorkstations']['count'] ; $i++){ + $station = trim($attrs['sambaUserWorkstations'][$i]); + $this->multiple_sambaUserWorkstations[$station] = array("Name" => $station, "UsedByAllUsers" => TRUE); + } + } } - if(in_array("temporary_disable",$this->multi_boxes)){ - $ret['temporary_disable'] = $this->temporary_disable; - } - - if(in_array("enforcePasswordChange",$this->multi_boxes)){ - $ret['enforcePasswordChange'] = $this->enforcePasswordChange; - } - if(in_array("cannotChangePassword",$this->multi_boxes)){ - $ret['cannotChangePassword'] = $this->cannotChangePassword; - } + function multiple_execute() + { + return($this->execute()); + } - - if(in_array("SetSambaLogonHours",$this->multi_boxes)){ - $ret['sambaLogonHours'] = $this->sambaLogonHours; - } + function get_multi_edit_values() + { + $ret = plugin::get_multi_edit_values(); - if(in_array("workstation_list",$this->multi_boxes)){ - $ret['multiple_sambaUserWorkstations'] = $this->multiple_sambaUserWorkstations; - } - return($ret); - } + /* Terminal Server */ + if(in_array("tslogin",$this->multi_boxes)){ + $ret['tslogin'] = $this->mungedObject->getTsLogin(); + } + if(in_array("CtxWFHomeDirDrive",$this->multi_boxes)){ + $ret['CtxWFHomeDirDrive'] = $this->mungedObject->ctx['CtxWFHomeDirDrive']; + } + if(in_array("CtxWFHomeDir",$this->multi_boxes)){ + $ret['CtxWFHomeDir'] = $this->mungedObject->ctx['CtxWFHomeDir']; + } + if(in_array("CtxWFProfilePath",$this->multi_boxes)){ + $ret['CtxWFProfilePath'] = $this->mungedObject->ctx['CtxWFProfilePath']; + } - function set_multi_edit_values($values) - { - plugin::set_multi_edit_values($values); + if(in_array("inherit",$this->multi_boxes)){ + $ret['inherit'] = $this->mungedObject->getInheritMode(); + } + if(in_array("CtxInitialProgram",$this->multi_boxes)){ + $ret['CtxInitialProgram'] = $this->mungedObject->ctx['CtxInitialProgram']; + } + if(in_array("CtxWorkDirectory",$this->multi_boxes)){ + $ret['CtxWorkDirectory'] = $this->mungedObject->ctx['CtxWorkDirectory']; + } + + /* Time Limits. Be careful here, there are some negations */ + if(in_array("CtxMaxConnectionTimeF",$this->multi_boxes)){ + $ret["CtxMaxConnectionTimeF"] = !$this->mungedObject->getCtxMaxConnectionTimeF(); + if(!$ret["CtxMaxConnectionTimeF"]){ + $ret["CtxMaxConnectionTime"] = $this->mungedObject->ctx['CtxMaxConnectionTime']; + } + } + if(in_array("CtxMaxDisconnectionTimeF",$this->multi_boxes)){ + $ret["CtxMaxDisconnectionTimeF"]= !$this->mungedObject->getCtxMaxDisconnectionTimeF(); + if(!$ret["CtxMaxDisconnectionTimeF"]){ + $ret["CtxMaxDisconnectionTime"]= $this->mungedObject->ctx['CtxMaxDisconnectionTime']; + } + } + if(in_array("CtxMaxIdleTimeF",$this->multi_boxes)){ + $ret["CtxMaxIdleTimeF"] = !$this->mungedObject->getCtxMaxIdleTimeF(); + if(!$ret["CtxMaxIdleTimeF"]){ + $ret["CtxMaxIdleTime"] = $this->mungedObject->ctx['CtxMaxIdleTime']; + } + } - /* Prepare current workstation settings to be merged - * with multiple edit settings. - */ - if(isset($values['multiple_sambaUserWorkstations'])){ - $cur_ws = array(); - $m_ws = $values['multiple_sambaUserWorkstations']; - - /* Prepare current settings to be merged */ - if(isset($this->sambaUserWorkstations)){ - $ttmp = explode(",",$this->sambaUserWorkstations); - foreach($ttmp as $station){ - $station = trim($station); - if(!empty($station)){ - $cur_ws[$station] = array("Name" => $station, "UsedByAllUsers" => TRUE); - } - } - } - - /* Unset removed workstations */ - foreach($cur_ws as $cur_name => $cur_station){ - if(!isset($m_ws[$cur_name])){ - unset($cur_ws[$cur_name]); - } - } - - /* Add all added workstations */ - foreach($m_ws as $name => $station){ - if($station['UsedByAllUsers']){ - $cur_ws[$name] = $station; - } - } - - $this->sambaUserWorkstations = ""; - foreach($cur_ws as $name => $ws){ - $this->sambaUserWorkstations .= $name.","; - } - $this->sambaUserWorkstations=preg_replace("/,$/","",$this->sambaUserWorkstations); - } + /* Client Devices */ + if(in_array("connectclientdrives",$this->multi_boxes)){ + $ret["connectclientdrives"] = $this->mungedObject->getConnectClientDrives(); + } + if(in_array("connectclientprinters",$this->multi_boxes)){ + $ret["connectclientprinters"] = $this->mungedObject->getConnectClientPrinters(); + } + if(in_array("defaultprinter",$this->multi_boxes)){ + $ret["defaultprinter"] = $this->mungedObject->getDefaultPrinter(); + } - /* Enable disabled terminal login, this is inverted somehow */ - if(isset($values['tslogin'])) $this->mungedObject->setTsLogin(!$values['tslogin']); - - /* Imherit client configuration */ - if(isset($values['inherit'])) $this->mungedObject->setInheritMode($values['inherit']); - - /* Get all ctx values posted */ - $ctx = array("CtxWFHomeDirDrive","CtxWFHomeDir","CtxWFProfilePath","CtxInitialProgram","CtxWorkDirectory", - "CtxMaxConnectionTime","CtxMaxDisconnectionTime","CtxMaxIdleTime"); - foreach($ctx as $attr){ - if(isset($values[$attr])){ - $this->mungedObject->ctx[$attr] = $values[$attr] ; - } - } + /* Misc */ + if(in_array("shadow",$this->multi_boxes)){ + $ret["shadow"] =$this->mungedObject->getShadow(); + } + if(in_array("brokenconn",$this->multi_boxes)){ + $ret["brokenconn"]=$this->mungedObject->getBrokenConn(); + } + if(in_array("reconn",$this->multi_boxes)){ + $ret["reconn"] =$this->mungedObject->getReConn(); + } + + // Handle Flags. + foreach(array("flag_enforcePasswordChange", "flag_passwordNeverExpires", "flag_noPasswordRequired", + "flag_temporaryDisabled","flag_cannotChangePassword") as $attr){ + $ret[$attr] = $this->$attr; + } - if(isset($values['CtxMaxConnectionTimeF'])) $this->mungedObject->setCtxMaxConnectionTimeF($values['CtxMaxConnectionTimeF']); - if(isset($values['CtxMaxDisconnectionTimeF']))$this->mungedObject->setCtxMaxDisconnectionTimeF($values['CtxMaxDisconnectionTimeF']); - if(isset($values['CtxMaxIdleTimeF'])) $this->mungedObject->setCtxMaxIdleTimeF($values['CtxMaxIdleTimeF']); + if(in_array("SetSambaLogonHours",$this->multi_boxes)){ + $ret['sambaLogonHours'] = $this->sambaLogonHours; + } - if(isset($values['connectclientdrives'])) $this->mungedObject->setConnectClientDrives($values['connectclientdrives']); - if(isset($values['connectclientprinters'])) $this->mungedObject->setConnectClientPrinters($values['connectclientprinters']); - if(isset($values['defaultprinter'])) $this->mungedObject->setDefaultPrinter($values['defaultprinter']); + if(in_array("workstation_list",$this->multi_boxes)){ + $ret['multiple_sambaUserWorkstations'] = $this->multiple_sambaUserWorkstations; + } + return($ret); + } - if(isset($values['shadow'])) $this->mungedObject->setShadow($values['shadow'],$values['shadow']); - if(isset($values['brokenconn'])) $this->mungedObject->setBrokenConn($values['brokenconn'],$values['brokenconn']); - if(isset($values['reconn'])) $this->mungedObject->setReConn($values['reconn'],$values['reconn']); + function set_multi_edit_values($values) + { + plugin::set_multi_edit_values($values); - - if(isset($values['sambaPwdCanChange'])) $this->sambaPwdCanChange = $values['sambaPwdCanChange']; + /* Prepare current workstation settings to be merged + * with multiple edit settings. + */ + if(isset($values['multiple_sambaUserWorkstations'])){ + $cur_ws = array(); + $m_ws = $values['multiple_sambaUserWorkstations']; + + /* Prepare current settings to be merged */ + if(isset($this->sambaUserWorkstations)){ + $ttmp = explode(",",$this->sambaUserWorkstations); + foreach($ttmp as $station){ + $station = trim($station); + if(!empty($station)){ + $cur_ws[$station] = array("Name" => $station, "UsedByAllUsers" => TRUE); + } + } + } - - + /* Unset removed workstations */ + foreach($cur_ws as $cur_name => $cur_station){ + if(!isset($m_ws[$cur_name])){ + unset($cur_ws[$cur_name]); + } + } - if(isset($values['password_expires'])){ - $this->password_expires = $values['password_expires']; - $this->sambaPwdMustChange = $values['sambaPwdMustChange']; - } - if(isset($values['logon_time_set'])){ - $this->logon_time_set = $values['logon_time_set']; - $this->sambaLogonTime = $values['sambaLogonTime']; - } - if(isset($values['logoff_time_set'])){ - $this->logoff_time_set = $values['logoff_time_set']; - $this->sambaLogoffTime = $values['sambaLogoffTime']; - } - if(isset($values['kickoff_time_set'])){ - $this->kickoff_time_set = $values['kickoff_time_set']; - $this->sambaKickoffTime = $values['sambaKickoffTime']; - } + /* Add all added workstations */ + foreach($m_ws as $name => $station){ + if($station['UsedByAllUsers']){ + $cur_ws[$name] = $station; + } + } - if(isset($values['no_password_required'])){ - if($values['no_password_required']){ - if(!preg_match("/N/",$this->sambaAcctFlags)) { - $this->sambaAcctFlags = preg_replace("/ /","N",$this->sambaAcctFlags,1); - } - }else{ - $this->sambaAcctFlags = preg_replace("/N/"," ",$this->sambaAcctFlags,1); - } - } - - if(isset($values['no_expiry'])){ - if($values['no_expiry']){ - if(!preg_match("/N/",$this->sambaAcctFlags)) { - $this->sambaAcctFlags = preg_replace("/ /","N",$this->sambaAcctFlags,1); - } - }else{ - $this->sambaAcctFlags = preg_replace("/N/"," ",$this->sambaAcctFlags,1); - } - } - - if(isset($values['temporary_disable'])){ - if($values['temporary_disable']){ - if(preg_match("/L/",$this->sambaAcctFlags)) { - // Keep L - }else{ - $this->sambaAcctFlags = preg_replace("/ /","D",$this->sambaAcctFlags,1); + $this->sambaUserWorkstations = ""; + foreach($cur_ws as $name => $ws){ + $this->sambaUserWorkstations .= $name.","; + } + $this->sambaUserWorkstations=preg_replace("/,$/","",$this->sambaUserWorkstations); } - }else{ - $this->sambaAcctFlags = preg_replace("/D/"," ",$this->sambaAcctFlags,1); - } - } - } + /* Enable disabled terminal login, this is inverted somehow */ + if(isset($values['tslogin'])) $this->mungedObject->setTsLogin(!$values['tslogin']); - function PrepareForCopyPaste($source) - { - plugin::PrepareForCopyPaste($source); + /* Imherit client configuration */ + if(isset($values['inherit'])) $this->mungedObject->setInheritMode($values['inherit']); - /* Set a new SID */ - $this->sambaSID = ""; + /* Get all ctx values posted */ + $ctx = array("CtxWFHomeDirDrive","CtxWFHomeDir","CtxWFProfilePath","CtxInitialProgram","CtxWorkDirectory", + "CtxMaxConnectionTime","CtxMaxDisconnectionTime","CtxMaxIdleTime"); + foreach($ctx as $attr){ + if(isset($values[$attr])){ + $this->mungedObject->ctx[$attr] = $values[$attr] ; + } + } - /* Fill mungedDial field */ - if (isset($source['sambaMungedDial'])){ - $this->mungedObject->load($source['sambaMungedDial'][0]); - } + if(isset($values['CtxMaxConnectionTimeF'])) $this->mungedObject->setCtxMaxConnectionTimeF($values['CtxMaxConnectionTimeF']); + if(isset($values['CtxMaxDisconnectionTimeF']))$this->mungedObject->setCtxMaxDisconnectionTimeF($values['CtxMaxDisconnectionTimeF']); + if(isset($values['CtxMaxIdleTimeF'])) $this->mungedObject->setCtxMaxIdleTimeF($values['CtxMaxIdleTimeF']); - /* Password expiery */ - if(isset($source['sambaPwdMustChange']) && - $source['sambaPwdMustChange'][0] != 0){ - $this->password_expires= 1; - } + if(isset($values['connectclientdrives'])) $this->mungedObject->setConnectClientDrives($values['connectclientdrives']); + if(isset($values['connectclientprinters'])) $this->mungedObject->setConnectClientPrinters($values['connectclientprinters']); + if(isset($values['defaultprinter'])) $this->mungedObject->setDefaultPrinter($values['defaultprinter']); - if(isset($source['sambaLogonTime']) && ! ( - $source['sambaLogonTime'][0] == 0 || - $source['sambaLogonTime'][0] == 2147483647 - )){ - $this->logon_time_set= 1; - } - if(isset($source['sambaLogoffTime']) && ! ( - $source['sambaLogoffTime'][0] == 0 || - $source['sambaLogoffTime'][0] == 2147483647 - )){ - $this->logoff_time_set= 1; + if(isset($values['shadow'])) $this->mungedObject->setShadow($values['shadow'],$values['shadow']); + if(isset($values['brokenconn'])) $this->mungedObject->setBrokenConn($values['brokenconn'],$values['brokenconn']); + if(isset($values['reconn'])) $this->mungedObject->setReConn($values['reconn'],$values['reconn']); } - /* Account expiery */ - if(isset($source['sambaKickoffTime']) && ! ( - $source['sambaKickoffTime'][0] == 0 || - $source['sambaKickoffTime'][0] == 2147483647 - )){ - $this->kickoff_time_set= 1; - } + function PrepareForCopyPaste($source) + { + plugin::PrepareForCopyPaste($source); - if(isset($source['sambaKickoffTime'][0])){ - $this->sambaKickoffTime = date('d.m.Y', $source['sambaKickoffTime'][0]); + /* Set a new SID */ + $this->sambaSID = ""; + + /* Fill mungedDial field */ + if (isset($source['sambaMungedDial'])){ + $this->mungedObject->load($source['sambaMungedDial'][0]); + } } - } } diff --git a/gosa-plugins/samba/personal/samba/samba3.tpl b/gosa-plugins/samba/personal/samba/samba3.tpl index ba683c234..f631d7250 100644 --- a/gosa-plugins/samba/personal/samba/samba3.tpl +++ b/gosa-plugins/samba/personal/samba/samba3.tpl @@ -312,57 +312,61 @@ + -- 2.30.2
{render acl=$enforcePasswordChangeACL checkbox=$multiple_support checked=$use_enforcePasswordChange} - + {/render} - +
- {render acl=$sambaAcctFlagsXACL checkbox=$multiple_support checked=$use_no_expiry} - + {render acl=$passwordNeverExpiresACL checkbox=$multiple_support checked=$use_passwordNeverExpires} + {/render} - +
- {render acl=$sambaAcctFlagsNACL checkbox=$multiple_support checked=$use_no_password_required} - + {render acl=$noPasswordRequiredACL checkbox=$multiple_support checked=$use_noPasswordRequired} + {/render} - +
- {render acl=$sambaAcctFlagsLACL checkbox=$multiple_support checked=$use_temporary_disable} - + {render acl=$temporaryDisabledACL checkbox=$multiple_support checked=$use_temporaryDisabled} + {/render} - +
{render acl=$cannotChangePasswordACL checkbox=$multiple_support checked=$use_cannotChangePassword} - + {/render} - +