LDAPAccountManager/lam/lib/modules/posixAccount.inc

2420 lines
98 KiB
PHP
Raw Normal View History

<?php
/*
2004-10-16 14:28:06 +00:00
$Id$
2006-08-13 12:58:19 +00:00
2009-10-27 18:47:12 +00:00
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
2006-03-03 17:30:35 +00:00
Copyright (C) 2003 - 2006 Tilo Lutz
2012-01-04 19:08:19 +00:00
Copyright (C) 2005 - 2012 Roland Gruber
2006-08-13 12:58:19 +00:00
2004-10-16 14:28:06 +00:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
2006-08-13 12:58:19 +00:00
2004-10-16 14:28:06 +00:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2006-08-13 12:58:19 +00:00
2004-10-16 14:28:06 +00:00
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
2005-07-21 10:33:02 +00:00
/**
* Manages Unix accounts for users and hosts.
*
* @package modules
*
* @author Tilo Lutz
* @author Roland Gruber
* @author Michael Duergner
* @author Thomas Manninger
2005-07-21 10:33:02 +00:00
*/
/**
* Manages the object class "posixAccount" for users and hosts.
*
* @package modules
*/
class posixAccount extends baseModule implements passwordService {
2006-09-03 12:41:22 +00:00
// Variables
private static $SPLIT_DELIMITER = "###x##y##x###";
2006-09-03 12:41:22 +00:00
/* These two variables keep an array of groups the user is also member of. */
2007-10-13 17:28:37 +00:00
private $groups;
private $groups_orig;
2009-11-26 10:48:05 +00:00
2011-10-06 20:03:45 +00:00
/* list of group of names that the user is member of */
2011-12-14 19:11:33 +00:00
private $gonList = array();
private $gonList_orig = array();
2011-10-06 20:03:45 +00:00
private $lamdaemonServers = array();
2009-11-26 10:48:05 +00:00
private $groupCache = null;
2011-10-06 20:03:45 +00:00
private $gonCache = null;
private $clearTextPassword;
2010-11-23 21:12:13 +00:00
/** caches the list of known UIDs */
private $cachedUIDList = null;
/** if set to true the suggested user name for John Doe will be john.doe instead of jdoe */
private $SUGGEST_LONG_USER_NAME = false;
2006-09-03 12:41:22 +00:00
2006-05-18 08:50:51 +00:00
/**
* This function fills the error message array with messages.
**/
function load_Messages() {
// error messages for input checks
$this->messages['minUID'][0] = array('ERROR', _('Users') . ': &nbsp;' . _('Minimum UID number'), _("Minimum UID number is invalid!"));
$this->messages['maxUID'][0] = array('ERROR', _('Users') . ': &nbsp;' . _('Maximum UID number'), _("Maximum UID number is invalid!"));
$this->messages['minMachine'][0] = array('ERROR', _('Hosts') . ': &nbsp;' . _('Minimum UID number'), _("Minimum UID number is invalid!"));
$this->messages['maxMachine'][0] = array('ERROR', _('Hosts') . ': &nbsp;' . _('Maximum UID number'), _("Maximum UID number is invalid!"));
$this->messages['cmp_UID'][0] = array('ERROR', _('Users') . ': &nbsp;' . _('Maximum UID number'), _("Maximum UID number must be greater than minimum UID number!"));
$this->messages['cmp_Machine'][0] = array('ERROR', _('Hosts') . ': &nbsp;' . _('Maximum UID number'), _("Maximum UID number must be greater than minimum UID number!"));
2004-10-25 18:40:18 +00:00
$this->messages['cmp_both'][0] = array('ERROR', _('UID ranges for Unix accounts'), _("The UID ranges for users and hosts overlap! This is a problem because LAM uses the highest UID in use + 1 for new accounts. Please set the minimum UID to equal values or use independent ranges."));
$this->messages['homeDirectory'][0] = array('ERROR', _('Home directory'), _('Homedirectory contains invalid characters.'));
$this->messages['homeDirectory'][1] = array('INFO', _('Home directory'), _('Replaced $user or $group in homedir.'));
2004-10-17 18:29:39 +00:00
$this->messages['homeDirectory'][2] = array('ERROR', _('Account %s:') . ' posixAccount_homedir', _('Homedirectory contains invalid characters.'));
$this->messages['homeDirectory'][3] = array('INFO', _('Home directory'), _('Home directory changed. To keep home directory you have to run the following command as root: \'mv %s %s\''));
$this->messages['uidNumber'][1] = array('ERROR', _('ID-Number'), _('No free ID-Number!'));
$this->messages['uidNumber'][2] = array('WARN', _('ID-Number'), _('It is possible that this ID-number is reused. This can cause several problems because files with old permissions might still exist. To avoid this warning set maxUID to a higher value.'));
$this->messages['uidNumber'][3] = array('ERROR', _('ID-Number'), _('ID is already in use'));
$this->messages['uidNumber'][4] = array('ERROR', _('Account %s:') . ' posixAccount_uid', _('UID must be a number. It has to be inside the UID range which is defined in your configuration profile.'));
$this->messages['uidNumber'][5] = array('INFO', _('UID number'), _('UID number has changed. To keep file ownership you have to run the following command as root: \'find / -uid %s -exec chown %s {} \;\''));
2010-02-08 16:23:32 +00:00
$this->messages['userPassword'][0] = array('ERROR', _('Password'), _('Please enter the same password in both password fields.'));
$this->messages['userPassword'][1] = array('ERROR', _('Password'), _('Password contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and #*,.;:_-+!%&/|?{[()]}=@$ !'));
$this->messages['userPassword'][4] = array('ERROR', _('Account %s:') . ' posixAccount_password', _('Password contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and #*,.;:_-+!%&/|?{[()]}=@$ !')); // double "%" because of sprintf
$this->messages['uid'][0] = array('INFO', _('UID'), _('UID has changed. Do you want to change home directory?'));
2010-06-03 19:38:56 +00:00
$this->messages['uid'][1] = array('WARN', _('User name'), _('You are using capital letters. This can cause problems because Windows is not case-sensitive.'));
$this->messages['uid'][2] = array('ERROR', _('User name'), _('User name contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and .-_ !'));
2010-06-03 19:38:56 +00:00
$this->messages['uid'][3] = array('WARN', _('Host name'), _('You are using capital letters. This can cause problems because Windows is not case-sensitive.'));
$this->messages['uid'][4] = array('ERROR', _('Host name'), _('Host name contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and .-_ !'));
$this->messages['uid'][5] = array('WARN', _('User name'), _('User name in use. Selected next free user name.'));
$this->messages['uid'][6] = array('WARN', _('Host name'), _('Host name in use. Selected next free host name.'));
$this->messages['uid'][7] = array('ERROR', _('Account %s:') . ' posixAccount_userName', _('User name contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and .-_ !'));
$this->messages['uid'][8] = array('ERROR', _('Account %s:') . ' posixAccount_hostName', _('Host name contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and .-_ !'));
$this->messages['uid'][9] = array('ERROR', _('Account %s:') . ' posixAccount_userName', _('User name already exists!'));
$this->messages['uid'][10] = array('ERROR', _('Account %s:') . ' posixAccount_hostName', _('Host name already exists!'));
2004-10-17 18:29:39 +00:00
$this->messages['gidNumber'][0] = array('ERROR', _('Account %s:') . ' posixAccount_group', _('LAM was unable to find a group with this name!'));
$this->messages['gidNumber'][1] = array('ERROR', _('Account %s:') . ' posixAccount_group', _('This GID number is invalid! Please provide either a number or a group name.'));
$this->messages['gidNumber'][2] = array('INFO', _('GID number'), _('GID number has changed. To keep file ownership you have to run the following command as root: \'find / -gid %s -uid %s -exec chgrp %s {} \;\''));
$this->messages['gecos'][0] = array('ERROR', _('Account %s:') . ' posixAccount_gecos', _('This gecos value is invalid!'));
2004-10-17 18:29:39 +00:00
$this->messages['shell'][0] = array('ERROR', _('Account %s:') . ' posixAccount_shell', _('This login shell is invalid!'));
2010-08-15 16:22:50 +00:00
$this->messages['passwordDisabled'][0] = array('ERROR', _('Account %s:') . ' posixAccount_passwordDisabled', _('This value can only be "true" or "false".'));
$this->messages['cn'][0] = array('ERROR', _('Common name'), _('Please enter a valid common name!'));
$this->messages['cn'][1] = array('ERROR', _('Account %s:') . ' inetOrgPerson_cn', _('Please enter a valid common name!'));
}
/**
* Returns meta data that is interpreted by parent class
*
* @return array array with meta data
2008-02-03 14:28:28 +00:00
*
* @see baseModule::get_metaData()
*/
function get_metaData() {
$return = array();
2007-11-19 18:42:03 +00:00
// icon
$return['icon'] = 'tux.png';
2004-06-13 19:58:58 +00:00
// manages user and host accounts
$return["account_types"] = array("user", "host");
// user specific data
if ($this->get_scope() == "user") {
2004-06-11 15:44:49 +00:00
// LDAP filter
$return["ldap_filter"] = array('or' => "(objectClass=posixAccount)", 'and' => "(!(uid=*$))");
2004-06-20 17:32:02 +00:00
// module dependencies
2005-04-04 15:57:35 +00:00
$return['dependencies'] = array('depends' => array(), 'conflicts' => array());
2004-06-20 17:32:02 +00:00
}
elseif ($this->get_scope() == "host") {
2009-10-06 17:00:43 +00:00
// LDAP filter
$return["ldap_filter"] = array('or' => "(objectClass=posixAccount)");
2004-06-20 17:32:02 +00:00
// module dependencies
2005-04-04 15:57:35 +00:00
$return['dependencies'] = array('depends' => array(), 'conflicts' => array());
}
2004-06-14 16:05:36 +00:00
// alias name
$return["alias"] = _("Unix");
2004-10-06 18:17:22 +00:00
// RDN attributes
$return["RDN"] = array("uid" => "high", "cn" => "low");
// managed object classes
$return['objectClasses'] = array('posixAccount');
2006-05-01 16:13:10 +00:00
// LDAP aliases
2006-05-01 16:18:16 +00:00
$return['LDAPaliases'] = array('commonName' => 'cn', 'userid' => 'uid');
2006-05-13 08:55:31 +00:00
// managed attributes
$return['attributes'] = array('cn', 'uid', 'uidNumber', 'gidNumber', 'homeDirectory',
'userPassword', 'loginShell', 'gecos', 'INFO.userPasswordClearText');
2006-08-03 18:01:34 +00:00
if ($this->get_scope() == "user") {
// self service search attributes
$return['selfServiceSearchAttributes'] = array('uid');
// self service field settings
2011-12-14 18:41:59 +00:00
$return['selfServiceFieldSettings'] = array('password' => _('Password'), 'cn' => _('Common name'), 'loginShell' => _('Login shell'));
2006-11-21 17:37:12 +00:00
// self service configuration settings
2010-09-25 18:48:51 +00:00
$selfServiceContainer = new htmlTable();
$selfServiceContainer->addElement(new htmlTableExtendedSelect('posixAccount_pwdHash', array("CRYPT", "SHA", "SSHA", "MD5", "SMD5", "PLAIN"),
2011-03-23 17:52:45 +00:00
array('SSHA'), _("Password hash type")));
$selfServiceContainer->addElement(new htmlHelpLink('pwdHash', get_class($this)));
2010-09-25 18:48:51 +00:00
$return['selfServiceSettings'] = $selfServiceContainer;
2006-08-03 18:01:34 +00:00
}
2004-07-02 16:09:44 +00:00
// profile checks
2005-01-16 12:41:38 +00:00
$return['profile_checks']['posixAccount_homeDirectory'] = array('type' => 'ext_preg', 'regex' => 'homeDirectory',
'error_message' => $this->messages['homeDirectory'][0]);
2005-01-16 12:41:38 +00:00
// profile mappings
$return['profile_mappings'] = array(
'posixAccount_homeDirectory' => 'homeDirectory',
'posixAccount_loginShell' => 'loginShell'
);
// configuration options
2010-09-25 18:48:51 +00:00
$configUserContainer = new htmlTable();
$configUserContainer->addElement(new htmlSubTitle(_("Users")), true);
$minUid = new htmlTableExtendedInputField(_('Minimum UID number'), 'posixAccount_minUID', null, 'minMaxUser');
$minUid->setRequired(true);
$configUserContainer->addElement($minUid, true);
$maxUid = new htmlTableExtendedInputField(_('Maximum UID number'), 'posixAccount_maxUID', null, 'minMaxUser');
$maxUid->setRequired(true);
$configUserContainer->addElement($maxUid);
$return['config_options']['user'] = $configUserContainer;
$configHostContainer = new htmlTable();
$configHostContainer->addElement(new htmlSubTitle(_("Hosts")), true);
$minUid = new htmlTableExtendedInputField(_('Minimum UID number'), 'posixAccount_minMachine', null, 'minMaxHost');
$minUid->setRequired(true);
$configHostContainer->addElement($minUid, true);
$maxUid = new htmlTableExtendedInputField(_('Maximum UID number'), 'posixAccount_maxMachine', null, 'minMaxHost');
$maxUid->setRequired(true);
$configHostContainer->addElement($maxUid);
$return['config_options']['host'] = $configHostContainer;
$configOptionsContainer = new htmlTable();
$configOptionsContainer->addElement(new htmlSubTitle(_('Options')), true);
$configOptionsContainer->addElement(new htmlTableExtendedSelect('posixAccount_pwdHash', array("CRYPT", "SHA", "SSHA", "MD5", "SMD5", "PLAIN"),
array('SSHA'), _("Password hash type"), 'pwdHash'), true);
$configOptionsContainer->addElement(new htmlTableExtendedInputCheckbox('posixAccount_primaryGroupAsSecondary', false, _('Set primary group as memberUid'), 'primaryGroupAsSecondary'));
$return['config_options']['all'] = $configOptionsContainer;
2004-10-16 14:28:06 +00:00
// upload
$return['upload_preDepends'] = array('inetOrgPerson');
// user specific upload options
if (($this->get_scope() == 'user') && isset($_SESSION['loggedIn']) && ($_SESSION['loggedIn'] === true)) {
2004-10-16 14:28:06 +00:00
$return['upload_columns'] = array(
array(
'name' => 'posixAccount_userName',
'description' => _('User name'),
2005-06-02 20:30:18 +00:00
'help' => 'uid',
2004-10-16 14:28:06 +00:00
'example' => _('smiller'),
'required' => true,
'unique' => true
),
array(
'name' => 'posixAccount_cn',
'description' => _('Common name'),
'help' => 'cn',
'example' => _('Steve Miller')
),
2004-10-16 14:28:06 +00:00
array(
'name' => 'posixAccount_uid',
'description' => _('UID number'),
2005-06-02 20:30:18 +00:00
'help' => 'uidNumber',
'example' => '1234'
2004-10-16 14:28:06 +00:00
),
array(
'name' => 'posixAccount_group',
'description' => _('Primary group'),
2005-06-02 20:30:18 +00:00
'help' => 'group_upload',
2004-10-16 14:28:06 +00:00
'example' => _('users'),
'required' => true
),
array(
'name' => 'posixAccount_additionalGroups',
'description' => _('Additional groups'),
2005-06-02 20:30:18 +00:00
'help' => 'addgroup_upload',
2004-10-16 14:28:06 +00:00
'example' => _('group01,group02')
),
array(
'name' => 'posixAccount_homedir',
'description' => _('Home directory'),
2005-06-02 20:30:18 +00:00
'help' => 'homeDirectory_upload',
2004-10-16 14:28:06 +00:00
'example' => _('/home/smiller'),
2010-12-05 13:29:53 +00:00
'default' => '/home/{posixAccount_userName}'
2004-10-16 14:28:06 +00:00
),
2007-07-09 19:03:19 +00:00
array(
'name' => 'posixAccount_createHomeDir',
'description' => _('Create home directory'),
'help' => 'createhomedir',
'example' => 'localhost',
'values' => $_SESSION['config']->get_scriptServers()
),
2004-10-16 14:28:06 +00:00
array(
'name' => 'posixAccount_shell',
'description' => _('Login shell'),
2005-06-02 20:30:18 +00:00
'help' => 'loginShell',
'example' => '/bin/bash',
2004-10-16 14:28:06 +00:00
'values' => implode(", ", getshells()),
'default' => '/bin/bash'
),
array(
'name' => 'posixAccount_password',
'description' => _('Password'),
2005-06-02 20:30:18 +00:00
'help' => 'userPassword',
2004-10-16 14:28:06 +00:00
'example' => _('secret')
),
array(
'name' => 'posixAccount_passwordDisabled',
'description' => _('Lock password'),
2005-06-02 20:30:18 +00:00
'help' => 'userPassword_lock',
2004-10-24 20:36:02 +00:00
'example' => 'false',
2004-10-16 14:28:06 +00:00
'values' => 'true, false',
'default' => 'false'
),
array(
'name' => 'posixAccount_gecos',
'description' => _('Gecos'),
2004-10-16 14:28:06 +00:00
'help' => 'gecos',
'example' => _('Steve Miller,Room 2.14,123-123-1234,123-123-1234')
)
);
2012-04-09 13:20:24 +00:00
if (self::areGroupOfNamesActive()) {
2011-10-06 20:03:45 +00:00
$return['upload_columns'][] = array(
'name' => 'posixAccount_gon',
'description' => _('Group of names'),
'help' => 'addgroup_upload',
'example' => _('group01,group02')
);
}
2004-10-16 14:28:06 +00:00
}
// host specific upload options
2007-10-04 16:45:05 +00:00
elseif ($this->get_scope() == 'host') {
2004-10-16 14:28:06 +00:00
$return['upload_columns'] = array(
array(
'name' => 'posixAccount_hostName',
'description' => _('Host name'),
2005-06-02 20:30:18 +00:00
'help' => 'uid',
2004-10-16 14:28:06 +00:00
'example' => _('pc01$'),
'required' => true,
'unique' => true
),
array(
'name' => 'posixAccount_uid',
'description' => _('UID number'),
2005-06-02 20:30:18 +00:00
'help' => 'uidNumber',
'example' => '1234'
2004-10-16 14:28:06 +00:00
),
array(
'name' => 'posixAccount_group',
'description' => _('Primary group'),
2005-06-02 20:30:18 +00:00
'help' => 'group_upload',
2004-10-16 14:28:06 +00:00
'example' => _('machines'),
'required' => true
),
array(
'name' => 'posixAccount_gecos',
'description' => _('Gecos'),
2004-10-16 14:28:06 +00:00
'help' => 'gecos',
'example' => _('pc01,Room 2.34')
)
);
}
// available PDF fields
2004-10-16 14:28:06 +00:00
$return['PDF_fields'] = array(
2010-04-05 12:38:23 +00:00
'uid' => _('User name'),
'uidNumber' => _('UID number'),
'gidNumber' => _('GID number'),
'gecos' => _('Gecos'),
'primaryGroup' => _('Primary group'),
'additionalGroups' => _('Additional groups'),
'homeDirectory' => _('Home directory'),
'loginShell' => _('Login shell'),
'cn' => _('Common name'),
'userPassword' => _('Password')
2004-10-30 16:46:06 +00:00
);
2012-04-09 13:20:24 +00:00
if (self::areGroupOfNamesActive()) {
2011-10-06 20:03:45 +00:00
$return['PDF_fields']['gon'] = _('Group of names');
}
2004-09-08 14:41:57 +00:00
// help Entries
$return['help'] = array(
'primaryGroupAsSecondary' => array(
'Headline' => _('Set primary group as memberUid'),
'Text' => _('Usually, users are not added to groups as memberUid if they have this group as primary group. If your application ignores primary groups then you can select this option to override this behaviour.')
),
2004-10-30 16:46:06 +00:00
'minMaxUser' => array(
'Headline' => _('UID number'),
'Text' => _('These are the minimum and maximum numbers to use for user IDs when creating new user accounts. The range should be different from that of machines. New user accounts will always get the highest number in use plus one.')
),
'minMaxHost' => array(
'Headline' => _('UID number'),
'Text' => _('These are the minimum and maximum numbers to use for machine IDs when creating new accounts for hosts. The range should be different from that of users. New host accounts will always get the highest number in use plus one.')
2004-10-30 16:46:06 +00:00
),
'pwdHash' => array(
"Headline" => _("Password hash type"),
"Text" => _("LAM supports CRYPT, SHA, SSHA, MD5 and SMD5 to generate the hash value of passwords. SSHA and CRYPT are the most common but CRYPT does not support passwords greater than 8 letters. We do not recommend to use plain text passwords.")
),
'uidNumber' => array(
2012-02-04 15:56:31 +00:00
"Headline" => _("UID number"), 'attr' => 'uidNumber',
2004-10-30 16:46:06 +00:00
"Text" => _("If empty UID number will be generated automaticly.")
),
2005-06-02 20:30:18 +00:00
'group_upload' => array(
"Headline" => _("Primary group"),
"Text" => _("The primary group for this account. You can insert a GID number or a group name.")
),
'addgroup_upload' => array(
"Headline" => _("Additional groups"),
"Text" => _("Here you can enter a list of additional group memberships. The group names are separated by commas.")
),
'homeDirectory_upload' => array(
"Headline" => _("Home directory"),
"Text" => _("Please enter the path to the user's home directory.")
),
'deletehomedir' => array(
"Headline" => _("Home directory"),
"Text" => _("Activating this checkbox will remove the user's home directory.")
),
2007-07-09 19:03:19 +00:00
'createhomedir' => array(
"Headline" => _("Home directory"),
"Text" => _("This will create the user's home directory on the specified server.")
),
2004-10-30 16:46:06 +00:00
'user' => array(
'uid' => array(
2012-02-04 15:56:31 +00:00
"Headline" => _("User name"), 'attr' => 'uid',
2012-03-10 19:43:57 +00:00
"Text" => _("User name of the user who should be created. Valid characters are: a-z,A-Z,0-9, @.-_. If user name is already used user name will be expanded with a number. The next free number will be used.")
2004-10-30 16:46:06 +00:00
),
'gecos' => array(
"Headline" => _("Gecos"),
2005-06-07 18:28:28 +00:00
"Text" => _("User description. If left empty first and last name will be used.")
2004-10-30 16:46:06 +00:00
),
'gidNumber' => array(
2012-02-04 15:56:31 +00:00
"Headline" => _("Primary group"), 'attr' => 'gidNumber',
"Text" => _("The primary group the user should be member of.")
2004-10-30 16:46:06 +00:00
),
'homeDirectory' => array(
2012-02-04 15:56:31 +00:00
"Headline" => _("Home directory"), 'attr' => 'homeDirectory',
2009-12-08 21:29:19 +00:00
"Text" => _('$user and $group will be replaced with user name and primary group name.')
2004-10-30 16:46:06 +00:00
),
'userPassword' => array(
"Headline" => _("Password"),
"Text" => _("Please enter the password which you want to set for this account.")
),
2005-06-02 20:30:18 +00:00
'userPassword_lock' => array(
"Headline" => _("Account deactivated"),
"Text" => _("If checked account will be deactivated by putting a \"!\" before the encrypted password.")
),
2004-10-30 16:46:06 +00:00
'loginShell' => array(
"Headline" => _("Login shell"),
2005-06-02 20:30:18 +00:00
"Text" => _("To disable login use /bin/false. The list of shells is read from lam/config/shells")
2004-10-30 16:46:06 +00:00
),
'addgroup' => array(
"Headline" => _("Additional groups"),
"Text" => _("Hold the CTRL-key to (de)select multiple groups."). ' '. _("Can be left empty.")
),
'cn' => array (
2012-02-04 15:56:31 +00:00
"Headline" => _("Common name"), 'attr' => 'cn',
"Text" => _("This is the natural name of the user. If empty, the first and last name or user name is used.")
2004-10-30 16:46:06 +00:00
)
),
'host' => array(
'uid' => array(
2012-02-04 15:56:31 +00:00
"Headline" => _("Host name"), 'attr' => 'uid',
"Text" => _("Host name of the host which should be created. Valid characters are: a-z,A-Z,0-9, .-_$. Host names are always ending with $. If last character is not $ it will be added. If host name is already used host name will be expanded with a number. The next free number will be used.")
2004-10-30 16:46:06 +00:00
),
'gecos' => array(
"Headline" => _("Gecos"),
"Text" => _("Host description. If left empty host name will be used.")
),
'gidNumber' => array(
2012-02-04 15:56:31 +00:00
"Headline" => _("Primary group"), 'attr' => 'gidNumber',
2005-06-02 20:30:18 +00:00
"Text" => _("The primary group the host should be member of.")
),
'description' => array (
"Headline" => _("Description"),
"Text" => _("Host description. If left empty host name will be used.")
2007-01-03 16:29:25 +00:00
),
'cn' => array (
2012-02-04 15:56:31 +00:00
"Headline" => _("Common name"), 'attr' => 'cn',
2007-01-03 16:29:25 +00:00
"Text" => _("This is the natural name of the host. If empty, the host name will be used.")
2004-10-30 16:46:06 +00:00
)
)
);
return $return;
}
2007-11-03 14:17:19 +00:00
/**
* Initializes the module after it became part of an accountContainer
*
* @param string $base the name of the accountContainer object ($_SESSION[$base])
*/
function init($base) {
// call parent init
parent::init($base);
2005-10-08 14:35:30 +00:00
$this->groups = array();
$this->groups_orig = array();
2009-11-26 10:48:05 +00:00
$groups = $this->findGroups(); // list of all groupnames
if (count($groups)==0) {
StatusMessage("ERROR", _('No Unix groups found in LDAP! Please create one first.'), '');
return;
}
2011-10-06 20:03:45 +00:00
$this->gonList = array();
$this->gonList_orig = array();
}
2006-09-03 12:41:22 +00:00
/**
* This functions is used to check if all settings for this module have been made.
*
* @return boolean true, if settings are complete
*/
function module_complete() {
2007-10-05 18:09:49 +00:00
if (!isset($this->attributes['uid'][0]) || ($this->attributes['uid'][0] == '')) return false;
if (!isset($this->attributes['uidNumber'][0]) || ($this->attributes['uidNumber'][0] == '')) return false;
if (!isset($this->attributes['gidNumber'][0]) || ($this->attributes['gidNumber'][0] == '')) return false;
if (!isset($this->attributes['homeDirectory'][0]) || ($this->attributes['homeDirectory'][0] == '')) return false;
if (!isset($this->attributes['loginShell'][0]) || ($this->attributes['loginShell'][0] == '')) return false;
return true;
}
2006-05-13 08:55:31 +00:00
/**
* This function loads all needed LDAP attributes.
2006-08-13 12:58:19 +00:00
*
2006-05-13 08:55:31 +00:00
* @param array $attr list of attributes
*/
function load_attributes($attr) {
parent::load_attributes($attr);
// get additional group memberships
2007-10-05 18:09:49 +00:00
if (!isset($attr['uid'][0])) return;
2010-11-23 21:12:13 +00:00
$groupList = searchLDAPByAttribute('memberUid', $attr['uid'][0], 'posixGroup', array('cn'), array('group'));
for ($i = 0; $i < sizeof($groupList); $i++) {
$this->groups[] = $groupList[$i]['cn'][0];
}
2005-10-08 14:35:30 +00:00
$this->groups_orig = $this->groups;
2011-10-06 20:03:45 +00:00
// get additional group of names memberships
2012-04-09 13:20:24 +00:00
if (self::areGroupOfNamesActive()) {
2011-10-06 20:03:45 +00:00
$gonList1 = searchLDAPByAttribute('member', $this->getAccountContainer()->dn_orig, 'groupOfNames', array('dn'), array('gon', 'group'));
$gonList2 = searchLDAPByAttribute('uniqueMember', $this->getAccountContainer()->dn_orig, 'groupOfUniqueNames', array('dn'), array('gon', 'group'));
$gonList = array_merge($gonList1, $gonList2);
$this->gonList_orig = array();
for ($i = 0; $i < sizeof($gonList); $i++) {
$this->gonList_orig[] = $gonList[$i]['dn'];
}
$this->gonList = $this->gonList_orig;
}
}
2006-09-03 12:41:22 +00:00
/**
* Returns a list of modifications which have to be made to the LDAP account.
*
* @return array list of modifications
* <br>This function returns an array with 3 entries:
* <br>array( DN1 ('add' => array($attr), 'remove' => array($attr), 'modify' => array($attr)), DN2 .... )
* <br>DN is the DN to change. It may be possible to change several DNs (e.g. create a new user and add him to some groups via attribute memberUid)
* <br>"add" are attributes which have to be added to LDAP entry
* <br>"remove" are attributes which have to be removed from LDAP entry
* <br>"modify" are attributes which have to been modified in LDAP entry
2011-02-26 13:14:10 +00:00
* <br>"info" are values with informational value (e.g. to be used later by pre/postModify actions)
*/
function save_attributes() {
2007-10-03 18:02:10 +00:00
$return = $this->getAccountContainer()->save_module_attributes($this->attributes, $this->orig);
2011-02-26 13:14:10 +00:00
// add information about clear text password and password status change
$return[$this->getAccountContainer()->dn_orig]['info']['userPasswordClearText'][0] = $this->clearTextPassword;
2011-02-26 13:14:10 +00:00
if (isset($this->orig['userPassword'][0]) && isset($this->attributes['userPassword'][0])) {
if ((pwd_is_enabled($this->orig['userPassword'][0]) && pwd_is_enabled($this->attributes['userPassword'][0]))
|| (!pwd_is_enabled($this->orig['userPassword'][0]) && !pwd_is_enabled($this->attributes['userPassword'][0]))) {
$return[$this->getAccountContainer()->dn_orig]['info']['userPasswordStatusChange'][0] = 'unchanged';
2011-02-26 13:14:10 +00:00
}
elseif (pwd_is_enabled($this->orig['userPassword'][0])) {
$return[$this->getAccountContainer()->dn_orig]['info']['userPasswordStatusChange'][0] = 'locked';
2011-02-26 13:14:10 +00:00
}
else {
$return[$this->getAccountContainer()->dn_orig]['info']['userPasswordStatusChange'][0] = 'unlocked';
2011-02-26 13:14:10 +00:00
}
}
// Remove primary group from additional groups
if (!isset($this->moduleSettings['posixAccount_primaryGroupAsSecondary'][0])
|| ($this->moduleSettings['posixAccount_primaryGroupAsSecondary'][0] != 'true')) {
for ($i=0; $i<count($this->groups); $i++) {
2009-11-26 10:48:05 +00:00
if ($this->groups[$i] == $this->getGroupName($this->attributes['gidNumber'][0])) {
unset($this->groups[$i]);
}
}
}
else {
// add user as memberuid in primary group
2009-11-26 10:48:05 +00:00
if (!in_array($this->getGroupName($this->attributes['gidNumber'][0]), $this->groups)) {
$this->groups[] = $this->getGroupName($this->attributes['gidNumber'][0]);
}
}
// Set additional group memberships
if ($this->orig['uid'][0]!='' && $this->attributes['uid'][0]!=$this->orig['uid'][0]) {
2010-11-23 21:12:13 +00:00
// find affected groups
$groupList = searchLDAPByAttribute('memberUid', $this->orig['uid'][0], 'posixGroup', array('dn'), array('group'));
for ($i = 0; $i < sizeof($groupList); $i++) {
// replace old user name with new one
$return[$groupList[$i]['dn']]['remove']['memberUid'][] = $this->orig['uid'][0];
$return[$groupList[$i]['dn']]['add']['memberUid'][] = $this->attributes['uid'][0];
}
}
else {
2005-10-08 14:35:30 +00:00
// update groups.
$add = array_delete($this->groups_orig, $this->groups);
$remove = array_delete($this->groups, $this->groups_orig);
2010-11-23 21:12:13 +00:00
$groupList = searchLDAPByAttribute('cn', '*', 'posixGroup', array('cn', 'dn'), array('group'));
$dn2cn = array();
for ($i = 0; $i < sizeof($groupList); $i++) {
$cn2dn[$groupList[$i]['cn'][0]] = $groupList[$i]['dn'];
}
for ($i = 0; $i < sizeof($add); $i++) {
if (isset($cn2dn[$add[$i]])) {
$return[$cn2dn[$add[$i]]]['add']['memberUid'][] = $this->attributes['uid'][0];
}
2010-11-23 21:12:13 +00:00
}
for ($i = 0; $i < sizeof($remove); $i++) {
if (isset($cn2dn[$remove[$i]])) {
$return[$cn2dn[$remove[$i]]]['remove']['memberUid'][] = $this->attributes['uid'][0];
}
}
}
return $return;
}
/**
* @see baseModule::postModifyActions()
*
* @param boolean $newAccount
* @param array $attributes LDAP attributes of this entry
2012-01-04 19:08:19 +00:00
* @return array array which contains status messages. Each entry is an array containing the status message parameters.
*/
public function postModifyActions($newAccount, $attributes) {
2012-01-04 19:08:19 +00:00
$messages = array();
// create home directories if needed
if (sizeof($this->lamdaemonServers) > 0) {
$server = null;
$lamdaemonServers = explode(";", $_SESSION['config']->get_scriptServers());
for ($i = 0; $i < sizeof($lamdaemonServers); $i++) {
$temp = explode(":", $lamdaemonServers[$i]);
$server = $temp[0];
if (isset($temp[1])) {
if (!in_array($temp[1], $this->lamdaemonServers)) {
continue;
}
}
elseif (!in_array($temp[0], $this->lamdaemonServers)) {
continue;
}
$result = lamdaemon(
implode(
posixAccount::$SPLIT_DELIMITER,
array(
$this->attributes['uid'][0],
"home",
"add",
$this->attributes['homeDirectory'][0],
"0".$_SESSION['config']->get_scriptRights(),
$this->attributes['uidNumber'][0],
$this->attributes['gidNumber'][0])
),
$server);
// lamdaemon results
if (is_array($result)) {
$singleresult = explode(",", $result[0]);
if (($singleresult[0] == 'ERROR') || ($singleresult[0] == 'INFO') || ($singleresult[0] == 'WARN')) {
2012-01-04 19:08:19 +00:00
$messages[] = $singleresult;
}
else {
2012-01-04 19:08:19 +00:00
$messages[] = array('ERROR', $result[0]);
}
}
}
}
2011-10-06 20:03:45 +00:00
// set group of names
2012-04-09 13:20:24 +00:00
if (self::areGroupOfNamesActive()) {
2011-10-06 20:03:45 +00:00
$gons = $this->findGroupOfNames();
$toAdd = array_values(array_diff($this->gonList, $this->gonList_orig));
$toRem = array_values(array_diff($this->gonList_orig, $this->gonList));
$ldapUser = $_SESSION['ldap']->decrypt_login();
$ldapUser = $ldapUser[0];
for ($i = 0; $i < sizeof($toAdd); $i++) {
if (isset($gons[$toAdd[$i]])) {
$attrName = 'member';
if (in_array('groupOfUniqueNames', $gons[$toAdd[$i]]['objectclass'])) {
$attrName = 'uniqueMember';
}
$success = @ldap_mod_add($_SESSION['ldap']->server(), $toAdd[$i], array($attrName => array($this->getAccountContainer()->finalDN)));
if (!$success) {
logNewMessage(LOG_ERR, '[' . $ldapUser .'] Unable to add attributes to DN: ' . $toAdd[$i] . ' (' . ldap_err2str(ldap_errno($_SESSION['ldap']->server())) . ').');
2012-01-04 19:08:19 +00:00
$messages[] = array('ERROR', sprintf(_('Was unable to add attributes to DN: %s.'), $toAdd[$i]), ldap_error($_SESSION['ldap']->server()));
2011-10-06 20:03:45 +00:00
}
}
}
for ($i = 0; $i < sizeof($toRem); $i++) {
if (isset($gons[$toRem[$i]])) {
$attrName = 'member';
if (in_array('groupOfUniqueNames', $gons[$toRem[$i]]['objectclass'])) {
$attrName = 'uniqueMember';
}
$success = @ldap_mod_del($_SESSION['ldap']->server(), $toRem[$i], array($attrName => array($this->getAccountContainer()->dn_orig)));
if (!$success) {
logNewMessage(LOG_ERR, '[' . $ldapUser .'] Unable to delete attributes from DN: ' . $toRem[$i] . ' (' . ldap_err2str(ldap_errno($_SESSION['ldap']->server())) . ').');
2012-01-04 19:08:19 +00:00
$messages[] = array('ERROR', sprintf(_('Was unable to remove attributes from DN: %s.'), $toRem[$i]), ldap_error($_SESSION['ldap']->server()));
2011-10-06 20:03:45 +00:00
}
}
}
}
2012-01-04 19:08:19 +00:00
return $messages;
}
2006-08-13 12:58:19 +00:00
/**
* Additional LDAP operations on delete.
*
* @return List of LDAP operations, same as for save_attributes()
*/
function delete_attributes() {
2003-12-30 15:36:30 +00:00
$return = array();
// remove memberUids if set
2010-11-23 21:12:13 +00:00
$groups = searchLDAPByAttribute('memberUid', $this->attributes['uid'][0], 'posixGroup', array('dn'), array('group'));
for ($i = 0; $i < sizeof($groups); $i++) {
$return[$groups[$i]['dn']]['remove']['memberUid'][] = $this->attributes['uid'][0];
}
2003-12-30 15:36:30 +00:00
return $return;
}
/**
* Allows the module to run commands before the LDAP entry is deleted.
*
* @return array Array which contains status messages. Each entry is an array containing the status message parameters.
*/
function preDeleteActions() {
$return = array();
2008-07-22 17:30:11 +00:00
if (isset($_POST['deletehomedir'])) {
// get list of lamdaemon servers
$lamdaemonServers = explode(";", $_SESSION['config']->get_scriptServers());
for ($i = 0; $i < sizeof($lamdaemonServers); $i++) {
$temp = explode(":", $lamdaemonServers[$i]);
$lamdaemonServers[$i] = $temp[0];
}
// try to delete directory on all servers
for ($i = 0; $i < sizeof($lamdaemonServers); $i++) {
$result = lamdaemon(
implode(
posixAccount::$SPLIT_DELIMITER,
array(
$this->attributes['uid'][0],
"home",
"rem",
$this->attributes['homeDirectory'][0],
$this->attributes['uidNumber'][0]
)
),
$lamdaemonServers[$i]);
// lamdaemon results
if (is_array($result)) {
foreach ($result as $singleresult) {
$singleresult = explode(",", $singleresult);
if (is_array($singleresult)) {
2007-07-09 19:03:19 +00:00
if (($singleresult[0] == 'ERROR') || ($singleresult[0] == 'WARN') || ($singleresult[0] == 'INFO')) {
$return[] = $singleresult;
}
}
}
}
}
}
return $return;
}
/**
* Processes user input of the primary module page.
* It checks if all input values are correct and updates the associated LDAP attributes.
*
* @return array list of info/error messages
2003-12-30 15:36:30 +00:00
*/
2006-08-13 12:58:19 +00:00
function process_attributes() {
2006-05-18 08:50:51 +00:00
$errors = array();
2009-11-26 10:48:05 +00:00
$groups = $this->findGroups(); // list of all groupnames
if (count($groups)==0) {
2009-11-26 10:48:05 +00:00
// abort if no groups were found
return array();
}
if (isset($_POST['loginShell'])) {
$this->attributes['loginShell'][0] = $_POST['loginShell'];
}
2006-08-13 12:58:19 +00:00
if (isset($_POST['gecos'])) $this->attributes['gecos'][0] = $_POST['gecos'];
2010-07-23 11:08:57 +00:00
if (isset($this->orig['uid'][0]) && ($this->orig['uid'][0] != '') && ($_POST['uid'] != $this->attributes['uid'][0])) {
2006-08-16 17:42:35 +00:00
$errors[] = $this->messages['uid'][0];
2009-11-26 10:48:05 +00:00
}
2010-07-23 11:08:57 +00:00
if (isset($this->orig['gidNumber'][0]) && ($this->orig['gidNumber'][0] != '') && ($_POST['gidNumber'] != $this->attributes['gidNumber'][0])) {
$errorMessage = $this->messages['gidNumber'][2];
$errorMessage[] = array($this->orig['gidNumber'][0], $this->orig['uidNumber'][0], $_POST['gidNumber']);
2006-08-16 17:42:35 +00:00
$errors[] = $errorMessage;
}
2011-01-09 14:45:12 +00:00
if (isset($this->orig['uidNumber'][0]) && $this->orig['uidNumber'][0]!='' && $_POST['uidNumber']!=$this->attributes['uidNumber'][0]) {
$errorMessage = $this->messages['uidNumber'][5];
$errorMessage[] = array($this->orig['uidNumber'][0], $_POST['uidNumber']);
2006-08-16 17:42:35 +00:00
$errors[] = $errorMessage;
}
2010-07-23 11:08:57 +00:00
if (isset($_POST['homeDirectory']) && isset($this->orig['homeDirectory'][0]) && ($this->orig['homeDirectory'][0] != '') && ($_POST['homeDirectory'] != $this->attributes['homeDirectory'][0])) {
$errorMessage = $this->messages['homeDirectory'][3];
$errorMessage[] = array($this->orig['homeDirectory'][0], $_POST['homeDirectory']);
2006-08-16 17:42:35 +00:00
$errors[] = $errorMessage;
}
// get list of DNS names or IPs
$lamdaemonServers = explode(";", $_SESSION['config']->get_scriptServers());
for ($i = 0; $i < sizeof($lamdaemonServers); $i++) {
$temp = explode(":", $lamdaemonServers[$i]);
if (isset($temp[1])) $lamdaemonServers[$i] = $temp[1];
else $lamdaemonServers[$i] = $temp[0];
}
$this->lamdaemonServers = array();
for ($h = 0; $h < sizeof($lamdaemonServers); $h++) {
if (isset($_POST['createhomedir_' . $h]) && ($_POST['createhomedir_' . $h] = 'on')) {
$this->lamdaemonServers[] = $lamdaemonServers[$h];
}
}
if (isset($_POST['homeDirectory'])) {
$this->attributes['homeDirectory'][0] = $_POST['homeDirectory'];
}
// Load attributes
2010-09-25 18:48:51 +00:00
if (isset($_POST['lockPassword'])) {
2012-04-09 13:20:24 +00:00
$this->lock();
2006-09-03 12:41:22 +00:00
}
2010-09-25 18:48:51 +00:00
if (isset($_POST['unlockPassword'])) {
2012-04-09 13:20:24 +00:00
$this->unlock();
2006-09-03 12:41:22 +00:00
}
2010-09-25 18:48:51 +00:00
if (isset($_POST['removePassword'])) {
2006-09-03 12:41:22 +00:00
unset($this->attributes['userPassword']);
}
2006-08-13 12:58:19 +00:00
$this->attributes['cn'][0] = $_POST['cn'];
if (!get_preg($this->attributes['cn'][0], 'cn')) {
2006-08-16 17:42:35 +00:00
$errors[] = $this->messages['cn'][0];
}
2006-08-13 12:58:19 +00:00
$this->attributes['uidNumber'][0] = $_POST['uidNumber'];
2009-11-26 10:48:05 +00:00
$this->attributes['gidNumber'][0] = $_POST['gidNumber'];
if ($this->get_scope()=='user') {
if (($this->attributes['uid'][0] != $_POST['uid']) && !get_preg($_POST['uid'], '!upper')) {
$errors[] = $this->messages['uid'][1];
}
if ( !get_preg($this->attributes['homeDirectory'][0], 'homeDirectory' )) {
$errors[] = $this->messages['homeDirectory'][0];
}
}
$this->attributes['uid'][0] = $_POST['uid'];
// Check if UID is valid. If none value was entered, the next useable value will be inserted
// load min and may uidNumber
2007-10-04 16:45:05 +00:00
if ($this->get_scope()=='user') {
$minID = intval($this->moduleSettings['posixAccount_minUID'][0]);
$maxID = intval($this->moduleSettings['posixAccount_maxUID'][0]);
}
2007-10-04 16:45:05 +00:00
if ($this->get_scope()=='host') {
$minID = intval($this->moduleSettings['posixAccount_minMachine'][0]);
$maxID = intval($this->moduleSettings['posixAccount_maxMachine'][0]);
}
2010-11-23 21:12:13 +00:00
$uids = $this->getUIDs();
if ($this->attributes['uidNumber'][0]=='') {
// No id-number given
2011-01-09 14:45:12 +00:00
if (!isset($this->orig['uidNumber'][0]) || ($this->orig['uidNumber'][0] == '')) {
// new account -> we have to find a free id-number
2006-05-18 08:50:51 +00:00
$newUID = $this->getNextUIDs(1, $errors);
if (is_array($newUID)) {
$this->attributes['uidNumber'][0] = $newUID[0];
}
else {
2006-08-16 17:42:35 +00:00
$errors[] = $this->messages['uidNumber'][3];
}
}
else $this->attributes['uidNumber'][0] = $this->orig['uidNumber'][0];
// old account -> return id-number which has been used
}
else {
// check manual ID
if ($this->getAccountContainer()->isNewAccount || !isset($this->orig['uidNumber'][0]) || ($this->orig['uidNumber'][0] != $this->attributes['uidNumber'][0])) {
// check range
if (!is_numeric($this->attributes['uidNumber'][0]) || ($this->attributes['uidNumber'][0] < $minID) || ($this->attributes['uidNumber'][0] > $maxID)) $errors[] = array('ERROR', _('ID-Number'), sprintf(_('Please enter a value between %s and %s!'), $minID, $maxID));
2010-11-23 21:12:13 +00:00
// id-number is in use and account is a new account
if ((in_array($this->attributes['uidNumber'][0], $uids)) && $this->orig['uidNumber'][0]=='') $errors[] = array('ERROR', _('ID-Number'), _('ID is already in use'));
// id-number is in use, account is existing account and id-number is not used by itself
if ((in_array($this->attributes['uidNumber'][0], $uids)) && $this->orig['uidNumber'][0]!='' && ($this->orig['uidNumber'][0] != $this->attributes['uidNumber'][0]) ) {
$errors[] = $this->messages['uidNumber'][3];
$this->attributes['uidNumber'][0] = $this->orig['uidNumber'][0];
2003-12-30 15:36:30 +00:00
}
}
}
2006-09-03 12:41:22 +00:00
// Create automatic useraccount with number if original user already exists
// Reset name to original name if new name is in use
// Set username back to original name if new username is in use
if ((sizeof(searchLDAPByAttribute('uid', $this->attributes['uid'][0], 'posixAccount', array('uid'), array('user', 'host'))) > 0) && isset($this->orig['uid'][0]) && ($this->orig['uid'][0]!='')) {
2010-01-31 18:37:28 +00:00
$this->attributes['uid'][0] = $this->orig['uid'][0];
}
else {
// Change uid to a new uid until a free uid is found
while (sizeof(searchLDAPByAttribute('uid', $this->attributes['uid'][0], 'posixAccount', array('uid'), array('user', 'host'))) > 0) {
if ($this->get_scope()=='host') $this->attributes['uid'][0] = substr($this->attributes['uid'][0], 0, -1);
// get last character of username
$lastchar = substr($this->attributes['uid'][0], strlen($this->attributes['uid'][0])-1, 1);
// Last character is no number
if ( !preg_match('/^([0-9])+$/', $lastchar)) {
// Last character is no number. Therefore we only have to add "2" to it.
if ($this->get_scope()=='host') {
$this->attributes['uid'][0] = $this->attributes['uid'][0] . '2$';
}
else {
$this->attributes['uid'][0] = $this->attributes['uid'][0] . '2';
}
2005-06-26 07:53:48 +00:00
}
else {
2010-01-31 18:37:28 +00:00
/* Last character is a number -> we have to increase the number until we've
* found a groupname with trailing number which is not in use.
*
* $i will show us were we have to split groupname so we get a part
* with the groupname and a part with the trailing number
*/
$i=strlen($this->attributes['uid'][0])-1;
$mark = false;
// Set $i to the last character which is a number in $account_new->general_username
while (!$mark)
if (preg_match('/^([0-9])+$/',substr($this->attributes['uid'][0], $i, strlen($this->attributes['uid'][0])-$i))) $i--;
else $mark=true;
// increase last number with one
$firstchars = substr($this->attributes['uid'][0], 0, $i+1);
$lastchars = substr($this->attributes['uid'][0], $i+1, strlen($this->attributes['uid'][0])-$i);
// Put username together
if ($this->get_scope()=='host') $this->attributes['uid'][0] = $firstchars . (intval($lastchars)+1)."$";
else $this->attributes['uid'][0] = $firstchars . (intval($lastchars)+1);
2003-12-30 15:36:30 +00:00
}
}
2006-09-03 12:41:22 +00:00
}
2010-03-14 15:42:49 +00:00
// Show warning if LAM has changed username
if ($this->attributes['uid'][0] != $_POST['uid']) {
2007-10-04 16:45:05 +00:00
if ($this->get_scope()=='user') $errors[] = $this->messages['uid'][5];
if ($this->get_scope()=='host') $errors[] = $this->messages['uid'][6];
}
if ($this->get_scope()=='user') {
$this->attributes['homeDirectory'][0] = str_replace('$group', $this->getGroupName($this->attributes['gidNumber'][0]), $this->attributes['homeDirectory'][0]);
if ($this->attributes['uid'][0] != '') {
$this->attributes['homeDirectory'][0] = str_replace('$user', $this->attributes['uid'][0], $this->attributes['homeDirectory'][0]);
}
if ($this->attributes['homeDirectory'][0] != $_POST['homeDirectory']) $errors[] = array('INFO', _('Home directory'), _('Replaced $user or $group in homedir.'));
// Check if Username contains only valid characters
if (!get_preg($this->attributes['uid'][0], 'username'))
$errors[] = $this->messages['uid'][2];
}
if ($this->get_scope()=='host') {
// Check if Hostname contains only valid characters
if (!get_preg($this->attributes['uid'][0], 'hostname'))
$errors[] = $this->messages['uid'][4];
if (!isset($this->attributes['homeDirectory'][0])) {
$this->attributes['homeDirectory'][0] = '/dev/null';
}
if (!isset($this->attributes['loginShell'][0])) {
$this->attributes['loginShell'][0] = '/bin/false';
}
}
2006-05-21 19:45:57 +00:00
$attributeList = array('gecos', 'homeDirectory');
for ($i = 0; $i < sizeof($attributeList); $i++) {
if (isset($this->attributes[$attributeList[$i]][0])) {
$value = $this->attributes[$attributeList[$i]][0];
$replacedValue = $this->checkASCII($value);
if ($value != $replacedValue) {
$this->attributes[$attributeList[$i]][0] = $replacedValue;
2006-08-16 17:42:35 +00:00
$errors[] = array('WARN', $attributeList[$i], _('Changed value because only ASCII characters are allowed.'));
2006-05-21 19:45:57 +00:00
}
}
}
// Return error-messages
2006-05-18 08:50:51 +00:00
return $errors;
}
2003-12-30 15:36:30 +00:00
2006-05-21 19:45:57 +00:00
/**
* Checks if an attribute contains only ASCII charaters and replaces invalid characters.
*
* @param string $attribute attribute value
* @return string attribute value with replaced non-ASCII characters
*/
function checkASCII($attribute) {
// convert UTF8 to ASCII
$convert = array ( 'ä' => 'ae', 'Ä' => 'Ae', 'ö' => 'oe', 'Ö' => 'Oe', 'ü' => 'ue', 'Ü' => 'Ue',
'ß' => 'ss', 'é' => 'e', 'è' => 'e', 'ô' => 'o', 'ç' => 'c'
);
// replace special characters
foreach ($convert as $key => $value) {
$attribute = str_replace($key, $value, $attribute);
2006-05-21 19:45:57 +00:00
}
// remove remaining UTF-8 characters
for ($c = 0; $c < strlen($attribute); $c++) {
if (ord($attribute[$c]) > 127) {
$attribute = str_replace($attribute[$c], "", $attribute);
$c--;
2006-05-21 19:45:57 +00:00
}
}
return $attribute;
}
/**
* Processes user input of the group selection page.
* It checks if all input values are correct and updates the associated LDAP attributes.
*
* @return array list of info/error messages
*/
2006-08-13 12:58:19 +00:00
function process_group() {
2011-10-06 20:03:45 +00:00
// Unix groups
2006-08-13 12:58:19 +00:00
if (isset($_POST['addgroups']) && isset($_POST['addgroups_button'])) { // Add groups to list
2011-10-06 20:03:45 +00:00
// add new group
2006-08-13 12:58:19 +00:00
$this->groups = @array_merge($this->groups, $_POST['addgroups']);
}
2006-08-13 12:58:19 +00:00
elseif (isset($_POST['removegroups']) && isset($_POST['removegroups_button'])) { // remove groups from list
$this->groups = array_delete($_POST['removegroups'], $this->groups);
}
2011-10-06 20:03:45 +00:00
// group of names
2012-04-09 13:20:24 +00:00
if (self::areGroupOfNamesActive()) {
2011-10-06 20:03:45 +00:00
if (isset($_POST['addgons']) && isset($_POST['addgons_button'])) { // Add groups to list
// add new group
$this->gonList = @array_merge($this->gonList, $_POST['addgons']);
}
elseif (isset($_POST['removegons']) && isset($_POST['removegons_button'])) { // remove groups from list
$this->gonList = array_delete($_POST['removegons'], $this->gonList);
}
}
2006-08-16 17:42:35 +00:00
return array();
}
/**
* Processes user input of the homedir check page.
* It checks if all input values are correct and updates the associated LDAP attributes.
*
* @return array list of info/error messages
*/
function process_homedir() {
$return = array();
// get list of lamdaemon servers
$lamdaemonServers = explode(";", $_SESSION['config']->get_scriptServers());
for ($i = 0; $i < sizeof($lamdaemonServers); $i++) {
$temp = explode(":", $lamdaemonServers[$i]);
$server = $temp[0];
if (isset($_POST['form_subpage_' . get_class($this) . '_homedir_create_' . $i])) {
$result = lamdaemon(
implode(
posixAccount::$SPLIT_DELIMITER,
array(
$this->attributes['uid'][0],
"home",
"add",
$this->attributes['homeDirectory'][0],
"0".$_SESSION['config']->get_scriptRights(),
$this->attributes['uidNumber'][0],
$this->attributes['gidNumber'][0])
),
$server);
// lamdaemon results
if (is_array($result)) {
foreach ($result as $singleresult) {
$singleresult = explode(",", $singleresult);
if (is_array($singleresult)) {
if (($singleresult[0] == 'ERROR') || ($singleresult[0] == 'WARN') || ($singleresult[0] == 'INFO')) {
$return[] = $singleresult;
}
}
}
}
}
elseif (isset($_POST['form_subpage_' . get_class($this) . '_homedir_delete_' . $i])) {
$result = lamdaemon(
implode(
posixAccount::$SPLIT_DELIMITER,
array(
$this->attributes['uid'][0],
"home",
"rem",
$this->attributes['homeDirectory'][0],
$this->attributes['uidNumber'][0]
)
),
$server);
// lamdaemon results
if (is_array($result)) {
foreach ($result as $singleresult) {
$singleresult = explode(",", $singleresult);
if (is_array($singleresult)) {
if (($singleresult[0] == 'ERROR') || ($singleresult[0] == 'WARN') || ($singleresult[0] == 'INFO')) {
$return[] = $singleresult;
}
}
}
}
}
}
return $return;
}
2007-11-03 14:17:19 +00:00
/**
* Returns the HTML meta data for the main account page.
*
2010-09-26 11:12:59 +00:00
* @return htmlElement HTML meta data
2007-11-03 14:17:19 +00:00
*/
2006-08-13 12:58:19 +00:00
function display_html_attributes() {
2010-09-25 18:48:51 +00:00
$return = new htmlTable();
$groupList = $this->findGroups(); // list of all group names
$groups = array();
for ($i = 0; $i < sizeof($groupList); $i++) {
$groups[$groupList[$i][1]] = $groupList[$i][0];
}
if (count($groups)==0) {
2010-09-25 18:48:51 +00:00
$return->addElement(new htmlStatusMessage("ERROR", _('No Unix groups found in LDAP! Please create one first.')));
return $return;
}
$shelllist = getshells(); // list of all valid shells
2004-01-18 12:52:52 +00:00
2010-03-14 15:42:49 +00:00
// set default values
2010-07-23 11:08:57 +00:00
if (!isset($this->attributes['uid'][0]) && ($this->getAccountContainer()->getAccountModule('inetOrgPerson') != null)) {
2010-03-14 15:42:49 +00:00
// fill default value for user ID with first/last name
$attrs = $this->getAccountContainer()->getAccountModule('inetOrgPerson')->getAttributes();
$this->attributes['uid'][0] = $this->getUserNameSuggestion($attrs);
2010-03-14 15:42:49 +00:00
}
2010-09-25 18:48:51 +00:00
if (!isset($this->attributes['cn'][0]) || ($this->attributes['cn'][0] == '')) {
2010-03-14 15:42:49 +00:00
// set a default value for common name
if (($this->get_scope() == 'host') && isset($_POST['uid']) && (substr($_POST['uid'], -1, 1) == '$')) {
2010-03-14 15:42:49 +00:00
$this->attributes['cn'][0] = substr($_POST['uid'], 0, strlen($_POST['uid']) - 1);
}
elseif ($this->getAccountContainer()->getAccountModule('inetOrgPerson') != null) {
$attrs = $this->getAccountContainer()->getAccountModule('inetOrgPerson')->getAttributes();
if ($attrs['givenName'][0]) {
$this->attributes['cn'][0] = $attrs['givenName'][0] . " " . $attrs['sn'][0];
}
elseif ($attrs['sn'][0]) {
$this->attributes['cn'][0] = $attrs['sn'][0];
}
else {
$this->attributes['cn'][0] = $_POST['uid'];
}
}
elseif (isset($_POST['uid'])) {
2010-03-14 15:42:49 +00:00
$this->attributes['cn'][0] = $_POST['uid'];
}
}
2007-10-10 19:04:39 +00:00
$userName = '';
if (isset($this->attributes['uid'][0])) $userName = $this->attributes['uid'][0];
2010-09-25 18:48:51 +00:00
$uidInput = new htmlTableExtendedInputField(_("User name"), 'uid', $userName, 'uid');
$uidInput->setRequired(true);
2011-04-13 18:41:17 +00:00
$uidInput->setFieldMaxLength(50);
2010-09-25 18:48:51 +00:00
$return->addElement($uidInput, true);
2007-10-10 19:04:39 +00:00
$commonName = '';
if (isset($this->attributes['cn'][0])) $commonName = $this->attributes['cn'][0];
2011-10-16 12:06:00 +00:00
$return->addElement(new htmlTableExtendedInputField(_("Common name"), 'cn', $commonName, 'cn'), true);
2007-10-10 19:04:39 +00:00
$uidNumber = '';
if (isset($this->attributes['uidNumber'][0])) $uidNumber = $this->attributes['uidNumber'][0];
2010-09-25 18:48:51 +00:00
$uidNumberInput = new htmlTableExtendedInputField(_('UID number'), 'uidNumber', $uidNumber, 'uidNumber');
$uidNumberInput->setFieldMaxLength(20);
2011-10-19 17:57:57 +00:00
$uidNumberInput->setValidationRule(htmlElement::VALIDATE_NUMERIC);
2010-09-25 18:48:51 +00:00
$return->addElement($uidNumberInput, true);
2007-10-10 19:04:39 +00:00
$gecos = '';
if (isset($this->attributes['gecos'][0])) $gecos = $this->attributes['gecos'][0];
2010-09-25 18:48:51 +00:00
$return->addElement(new htmlTableExtendedInputField(_('Gecos'), 'gecos', $gecos, 'gecos'), true);
$primaryGroup = array();
if (isset($this->attributes['gidNumber'][0])) {
$primaryGroup[] = $this->attributes['gidNumber'][0];
}
$gidNumberSelect = new htmlTableExtendedSelect('gidNumber', $groups, $primaryGroup, _('Primary group'), 'gidNumber');
$gidNumberSelect->setHasDescriptiveElements(true);
$return->addElement($gidNumberSelect, true);
2004-01-18 12:52:52 +00:00
2007-10-04 16:45:05 +00:00
if ($this->get_scope()=='user') {
2010-09-25 18:48:51 +00:00
// additional groups
$return->addElement(new htmlOutputText(_('Additional groups')));
$return->addElement(new htmlAccountPageButton(get_class($this), 'group', 'open', _('Edit groups')));
$return->addElement(new htmlHelpLink('addgroup'), true);
// home directory
$homedirInput = new htmlTableExtendedInputField(_('Home directory'), 'homeDirectory', $this->attributes['homeDirectory'][0], 'homeDirectory');
$homedirInput->setRequired(true);
$return->addElement($homedirInput, true);
if (($_SESSION['config']->get_scriptPath() != null) && ($_SESSION['config']->get_scriptPath() != '')) {
if ($this->getAccountContainer()->isNewAccount) {
// get list of lamdaemon servers
$lamdaemonServers = explode(";", $_SESSION['config']->get_scriptServers());
for ($i = 0; $i < sizeof($lamdaemonServers); $i++) {
$temp = explode(":", $lamdaemonServers[$i]);
if (isset($temp[1])) $lamdaemonServers[$i] = $temp[1];
else $lamdaemonServers[$i] = $temp[0];
}
$homeDirLabel = new htmlOutputText(_('Create home directory'));
$homeDirLabel->alignment = htmlElement::ALIGN_TOP;
$return->addElement($homeDirLabel);
$homeServerContainer = new htmlTable();
for ($h = 0; $h < sizeof($lamdaemonServers); $h++) {
$homeServerContainer->addElement(new htmlTableExtendedInputCheckbox('createhomedir_' . $h, in_array($lamdaemonServers[$h], $this->lamdaemonServers), $lamdaemonServers[$h], null, false), true);
}
$return->addElement($homeServerContainer);
$homeDirHelp = new htmlHelpLink('createhomedir');
$homeDirHelp->alignment = htmlElement::ALIGN_TOP;
$return->addElement($homeDirHelp, true);
}
else {
$return->addElement(new htmlOutputText(''));
$return->addElement(new htmlAccountPageButton(get_class($this), 'homedir', 'open', _('Check home directories')), true);
}
2005-10-21 13:48:30 +00:00
}
2011-01-09 14:45:12 +00:00
$selectedShell = array();
if (isset($this->attributes['loginShell'][0])) {
$selectedShell = array($this->attributes['loginShell'][0]);
}
$return->addElement(new htmlTableExtendedSelect('loginShell', $shelllist, $selectedShell, _('Login shell'), 'loginShell'), true);
2007-11-10 15:16:55 +00:00
}
2010-09-25 18:48:51 +00:00
// password buttons
2010-10-16 12:39:26 +00:00
if (checkIfWriteAccessIsAllowed() && isset($this->attributes['userPassword'][0])) {
2010-09-25 18:48:51 +00:00
$return->addElement(new htmlOutputText(_('Password')));
$pwdContainer = new htmlTable();
if (pwd_is_enabled($this->attributes['userPassword'][0])) {
$pwdContainer->addElement(new htmlButton('lockPassword', _('Lock password')));
}
else {
$pwdContainer->addElement(new htmlButton('unlockPassword', _('Unlock password')));
}
$pwdContainer->addElement(new htmlButton('removePassword', _('Remove password')));
2010-09-26 11:12:59 +00:00
$pwdContainer->colspan = 2;
2010-09-25 18:48:51 +00:00
$return->addElement($pwdContainer);
2007-11-10 15:16:55 +00:00
}
return $return;
}
2007-11-03 14:17:19 +00:00
/**
* Displays the delete homedir option for the delete page.
*
2010-09-26 11:12:59 +00:00
* @return htmlElement meta HTML code
2007-11-03 14:17:19 +00:00
*/
2006-08-13 12:58:19 +00:00
function display_html_delete() {
2010-09-25 18:48:51 +00:00
$return = null;
if ($this->get_scope() == 'user' && ($_SESSION['config']->get_scriptPath() != null)) {
2010-09-25 18:48:51 +00:00
$return = new htmlTable();
$return->addElement(new htmlTableExtendedInputCheckbox('deletehomedir', false, _('Delete home directory'), 'deletehomedir'));
2003-12-30 15:36:30 +00:00
}
return $return;
}
2003-12-30 15:36:30 +00:00
2005-04-23 14:26:22 +00:00
/**
* Displays the group selection.
*
2010-09-26 11:12:59 +00:00
* @return htmlElement meta HTML code
2005-04-23 14:26:22 +00:00
*/
2006-08-13 12:58:19 +00:00
function display_html_group() {
2010-09-25 18:48:51 +00:00
$return = new htmlTable();
// load list with all groups
2010-11-23 21:12:13 +00:00
$groups = $this->findGroups();
for ($i = 0; $i < sizeof($groups); $i++) {
$groups[$i] = $groups[$i][1];
}
// remove groups the user is member of from grouplist
$groups = array_delete($this->groups, $groups);
// Remove primary group from grouplist
2009-11-26 10:48:05 +00:00
$group = $this->getGroupName($this->attributes['gidNumber'][0]);
$groups = array_flip($groups);
unset ($groups[$group]);
$groups = array_flip($groups);
2011-10-06 20:03:45 +00:00
$unixContainer = new htmlTable();
$unixContainer->alignment = htmlElement::ALIGN_TOP;
$unixContainer->addElement(new htmlSubTitle(_("Unix groups")), true);
$unixContainer->addElement(new htmlOutputText(_("Selected groups")));
$unixContainer->addElement(new htmlOutputText(''));
$unixContainer->addElement(new htmlOutputText(_("Available groups")));
$unixContainer->addNewLine();
2010-09-25 18:48:51 +00:00
$remSelect = new htmlSelect('removegroups', $this->groups, null, 15);
$remSelect->setMultiSelect(true);
2011-10-06 20:03:45 +00:00
$remSelect->setTransformSingleSelect(false);
$unixContainer->addElement($remSelect);
2010-09-25 18:48:51 +00:00
$buttonContainer = new htmlTable();
$buttonContainer->addElement(new htmlButton('addgroups_button', 'back.gif', true), true);
$buttonContainer->addElement(new htmlButton('removegroups_button', 'forward.gif', true), true);
$buttonContainer->addElement(new htmlHelpLink('addgroup'));
2011-10-06 20:03:45 +00:00
$unixContainer->addElement($buttonContainer);
2010-09-25 18:48:51 +00:00
$addSelect = new htmlSelect('addgroups', $groups, null, 15);
$addSelect->setMultiSelect(true);
2011-10-06 20:03:45 +00:00
$addSelect->setTransformSingleSelect(false);
$unixContainer->addElement($addSelect);
$unixContainer->addNewLine();
$return->addElement($unixContainer);
2012-04-09 13:20:24 +00:00
if (self::areGroupOfNamesActive()) {
2011-10-06 20:03:45 +00:00
$return->addElement(new htmlSpacer('100px', null));
$gons = $this->findGroupOfNames();
$gonContainer = new htmlTable();
$gonContainer->alignment = htmlElement::ALIGN_TOP;
$gonContainer->addElement(new htmlSubTitle(_("Group of names")), true);
$gonContainer->addElement(new htmlOutputText(_("Selected groups")));
$gonContainer->addElement(new htmlOutputText(''));
$gonContainer->addElement(new htmlOutputText(_("Available groups")));
$gonContainer->addNewLine();
$selectedGons = array();
for ($i = 0; $i < sizeof($this->gonList); $i++) {
if (isset($gons[$this->gonList[$i]])) {
$selectedGons[$gons[$this->gonList[$i]]['cn'][0]] = $this->gonList[$i];
}
}
$availableGons = array();
foreach ($gons as $dn => $attr) {
if (!in_array($dn, $this->gonList)) {
$availableGons[$attr['cn'][0]] = $dn;
}
}
$remGonSelect = new htmlSelect('removegons', $selectedGons, null, 15);
$remGonSelect->setMultiSelect(true);
$remGonSelect->setTransformSingleSelect(false);
$remGonSelect->setHasDescriptiveElements(true);
$gonContainer->addElement($remGonSelect);
$buttonGonContainer = new htmlTable();
$buttonGonContainer->addElement(new htmlButton('addgons_button', 'back.gif', true), true);
$buttonGonContainer->addElement(new htmlButton('removegons_button', 'forward.gif', true), true);
$buttonGonContainer->addElement(new htmlHelpLink('addgroup'));
$gonContainer->addElement($buttonGonContainer);
$addGonSelect = new htmlSelect('addgons', $availableGons, null, 15);
$addGonSelect->setMultiSelect(true);
$addGonSelect->setHasDescriptiveElements(true);
$addGonSelect->setTransformSingleSelect(false);
$gonContainer->addElement($addGonSelect);
$gonContainer->addNewLine();
$return->addElement($gonContainer);
}
2010-09-25 18:48:51 +00:00
2011-10-06 20:03:45 +00:00
$return->addNewLine();
2010-09-25 18:48:51 +00:00
$return->addElement(new htmlSpacer(null, '10px'), true);
$backButton = new htmlAccountPageButton(get_class($this), 'attributes', 'back', _('Back'));
$return->addElement($backButton);
2004-01-18 12:52:52 +00:00
return $return;
}
/**
* Displays the delete homedir option for the homedir page.
*
* @return htmlElement meta HTML code
*/
function display_html_homedir() {
$return = new htmlTable();
$return->addElement(new htmlOutputText(_('Home directory')));
$return->addElement(new htmlSpacer('5px', null));
$return->addElement(new htmlOutputText($this->attributes['homeDirectory'][0]), true);
$return->addElement(new htmlSpacer(null, '10px'), true);
$homeServerContainer = new htmlTable();
$homeServerContainer->colspan = 5;
// get list of lamdaemon servers
$lamdaemonServers = explode(";", $_SESSION['config']->get_scriptServers());
for ($i = 0; $i < sizeof($lamdaemonServers); $i++) {
$temp = explode(":", $lamdaemonServers[$i]);
$server = $temp[0];
$label = $temp[0];
if (isset($temp[1])) {
$label = $temp[1];
}
$result = lamdaemon(
implode(
posixAccount::$SPLIT_DELIMITER,
array(
$this->attributes['uid'][0],
"home",
"check",
$this->attributes['homeDirectory'][0])
),
$server);
// lamdaemon results
if (is_array($result)) {
$returnValue = trim($result[0]);
if ($returnValue == 'ok') {
$homeServerContainer->addElement(new htmlOutputText($label));
$homeServerContainer->addElement(new htmlSpacer('5px', null));
$homeServerContainer->addElement(new htmlImage('../../graphics/pass.png', 16, 16));
$homeServerContainer->addElement(new htmlSpacer('5px', null));
$homeServerContainer->addElement(new htmlAccountPageButton(get_class($this), 'homedir', 'delete_' . $i, _('Delete')));
}
elseif ($returnValue == 'missing') {
$homeServerContainer->addElement(new htmlOutputText($label));
$homeServerContainer->addElement(new htmlSpacer('5px', null));
$homeServerContainer->addElement(new htmlImage('../../graphics/fail.png', 16, 16));
$homeServerContainer->addElement(new htmlSpacer('5px', null));
$homeServerContainer->addElement(new htmlAccountPageButton(get_class($this), 'homedir', 'create_' . $i, _('Create')));
}
2012-02-22 22:52:15 +00:00
elseif (trim($returnValue) != '') {
$messageParams = explode(",", $returnValue);
if (isset($messageParams[2])) {
2012-02-22 22:52:15 +00:00
$message = new htmlStatusMessage($messageParams[0], htmlspecialchars($messageParams[1]), htmlspecialchars($messageParams[2]));
}
2012-02-22 22:44:18 +00:00
elseif (($messageParams[0] == 'ERROR') || ($messageParams[0] == 'WARN') || ($messageParams[0] == 'INFO')) {
2012-02-22 22:52:15 +00:00
$message = new htmlStatusMessage($messageParams[0], htmlspecialchars($messageParams[1]));
}
else {
$message = new htmlStatusMessage('WARN', htmlspecialchars($messageParams[0]));
}
$message->colspan = 5;
$homeServerContainer->addElement($message, true);
}
$homeServerContainer->addNewLine();
}
}
$return->addElement($homeServerContainer, true);
$return->addElement(new htmlSpacer(null, '10px'), true);
$return->addElement(new htmlAccountPageButton(get_class($this), 'attributes', 'back', _('Back')));
return $return;
}
2004-09-19 08:34:14 +00:00
/**
* Returns a list of elements for the account profiles.
*
* @return profile elements
*/
2004-04-03 14:47:33 +00:00
function get_profileOptions() {
2010-09-25 18:48:51 +00:00
$return = new htmlTable();
2009-11-26 10:48:05 +00:00
$groupList = $this->findGroups();
$groups = array();
for ($i = 0; $i < sizeof($groupList); $i++) {
$groups[] = $groupList[$i][1];
}
2007-10-04 16:45:05 +00:00
if ($this->get_scope() == 'user') {
$shelllist = getshells(); // list of all valid shells
// primary Unix group
2010-09-30 18:58:11 +00:00
$return->addElement(new htmlTableExtendedSelect('posixAccount_primaryGroup', $groups, array(), _('Primary group'), 'gidNumber'), true);
// additional group memberships
2010-09-30 18:58:11 +00:00
$addGroupSelect = new htmlTableExtendedSelect('posixAccount_additionalGroup', $groups, array(), _('Additional groups'), 'addgroup', 10);
2010-09-25 18:48:51 +00:00
$addGroupSelect->setMultiSelect(true);
2011-10-06 20:03:45 +00:00
$addGroupSelect->setTransformSingleSelect(false);
2010-09-25 18:48:51 +00:00
$return->addElement($addGroupSelect, true);
2011-10-06 20:03:45 +00:00
// group of names
2012-04-09 13:20:24 +00:00
if (self::areGroupOfNamesActive()) {
2011-10-06 20:03:45 +00:00
$gons = $this->findGroupOfNames();
$gonList = array();
foreach ($gons as $dn => $attr) {
$gonList[$attr['cn'][0]] = $dn;
}
$gonSelect = new htmlTableExtendedSelect('posixAccount_gon', $gonList, array(), _('Group of names'), 'addgroup', 10);
$gonSelect->setHasDescriptiveElements(true);
$gonSelect->setMultiSelect(true);
$gonSelect->setTransformSingleSelect(false);
$return->addElement($gonSelect, true);
}
// home directory
2010-09-25 18:48:51 +00:00
$return->addElement(new htmlTableExtendedInputField(_('Home directory'), 'posixAccount_homeDirectory', '/home/$user', 'homeDirectory'), true);
// login shell
2010-09-25 18:48:51 +00:00
$return->addElement(new htmlTableExtendedSelect('posixAccount_loginShell', $shelllist, array("/bin/bash"), _('Login shell'), 'loginShell'), true);
2008-08-10 19:53:13 +00:00
// lamdaemon settings
if (($_SESSION['config']->get_scriptPath() != null)) {
$homeDirLabel = new htmlOutputText(_('Create home directory'));
$homeDirLabel->alignment = htmlElement::ALIGN_TOP;
$return->addElement($homeDirLabel);
2010-09-25 18:48:51 +00:00
$lamdaemonServers = explode(";", $_SESSION['config']->get_scriptServers());
for ($i = 0; $i < sizeof($lamdaemonServers); $i++) {
$temp = explode(":", $lamdaemonServers[$i]);
if (isset($temp[1])) $lamdaemonServers[$i] = $temp[1];
else $lamdaemonServers[$i] = $temp[0];
}
$homeServerContainer = new htmlTable();
for ($h = 0; $h < sizeof($lamdaemonServers); $h++) {
$homeServerContainer->addElement(new htmlTableExtendedInputCheckbox('posixAccount_createHomedir_' . $h, in_array($lamdaemonServers[$h], $this->lamdaemonServers), $lamdaemonServers[$h], null, false), true);
}
$return->addElement($homeServerContainer);
$homeDirHelp = new htmlHelpLink('createhomedir');
$homeDirHelp->alignment = htmlElement::ALIGN_TOP;
$return->addElement($homeDirHelp, true);
2008-08-10 19:53:13 +00:00
}
}
2007-10-04 16:45:05 +00:00
elseif ($this->get_scope() == 'host') {
// primary Unix group
2010-09-25 18:48:51 +00:00
$return->addElement(new htmlTableExtendedSelect('posixAccount_primaryGroup', $groups, array(), _('Primary group'), 'gidNumber'));
}
return $return;
}
2005-01-16 12:41:38 +00:00
/**
* Loads the values of an account profile into internal variables.
*
* @param array $profile hash array with profile values (identifier => value)
*/
function load_profile($profile) {
// profile mappings in meta data
parent::load_profile($profile);
// special profile options
// GID
if (isset($profile['posixAccount_primaryGroup'][0])) {
2009-11-26 10:48:05 +00:00
$gid = $this->getGID($profile['posixAccount_primaryGroup'][0]);
if ($gid != null) {
2005-01-16 12:41:38 +00:00
$this->attributes['gidNumber'][0] = $gid;
}
}
// other group memberships
if (isset($profile['posixAccount_additionalGroup'][0])) {
$this->groups = $profile['posixAccount_additionalGroup'];
}
2011-10-06 20:03:45 +00:00
// group of names
if (isset($profile['posixAccount_gon'][0])) {
$this->gonList = $profile['posixAccount_gon'];
}
2008-08-10 19:53:13 +00:00
// lamdaemon
if (($this->get_scope() == 'user') && $this->getAccountContainer()->isNewAccount) {
$lamdaemonServers = explode(";", $_SESSION['config']->get_scriptServers());
for ($i = 0; $i < sizeof($lamdaemonServers); $i++) {
$temp = explode(":", $lamdaemonServers[$i]);
if (isset($temp[1])) $lamdaemonServers[$i] = $temp[1];
else $lamdaemonServers[$i] = $temp[0];
2008-08-10 19:53:13 +00:00
}
$this->lamdaemonServers = array();
for ($h = 0; $h < sizeof($lamdaemonServers); $h++) {
if (isset($profile['posixAccount_createHomedir_' . $h][0]) && ($profile['posixAccount_createHomedir_' . $h][0] == 'true')) {
$this->lamdaemonServers[] = $lamdaemonServers[$h];
}
2008-08-10 19:53:13 +00:00
}
}
2005-01-16 12:41:38 +00:00
}
/**
* Returns the PDF entries for this module.
2006-08-13 12:58:19 +00:00
*
* @return array list of possible PDF entries
*/
function get_pdfEntries() {
2006-09-03 12:41:22 +00:00
$return = array(
'posixAccount_uid' => array('<block><key>' . _('User name') . '</key><value>' . $this->attributes['uid'][0] . '</value></block>'),
'posixAccount_cn' => array('<block><key>' . _('Common name') . '</key><value>' . $this->attributes['cn'][0] . '</value></block>'),
'posixAccount_uidNumber' => array('<block><key>' . _('UID number') . '</key><value>' . $this->attributes['uidNumber'][0] . '</value></block>'),
'posixAccount_gidNumber' => array('<block><key>' . _('GID number') . '</key><value>' . $this->attributes['gidNumber'][0] . '</value></block>'),
2009-11-26 10:48:05 +00:00
'posixAccount_primaryGroup' => array('<block><key>' . _('Primary group') . '</key><value>' . $this->getGroupName($this->attributes['gidNumber'][0]) . '</value></block>'),
2005-09-27 12:41:38 +00:00
'posixAccount_additionalGroups' => array('<block><key>' . _('Additional groups') . '</key><value>' . implode(", ", $this->groups) . '</value></block>'),
'posixAccount_homeDirectory' => array('<block><key>' . _('Home directory') . '</key><value>' . $this->attributes['homeDirectory'][0] . '</value></block>'),
'posixAccount_loginShell' => array('<block><key>' . _('Login shell') . '</key><value>' . $this->attributes['loginShell'][0] . '</value></block>'),
);
2012-03-20 20:29:51 +00:00
if (isset($this->attributes['gecos'][0])) {
$return['posixAccount_gecos'] = array('<block><key>' . _('Gecos') . '</key><value>' . $this->attributes['gecos'][0] . '</value></block>');
}
2012-04-09 13:20:24 +00:00
if (self::areGroupOfNamesActive()) {
2011-10-06 20:03:45 +00:00
$allGons = $this->findGroupOfNames();
$gons = array();
for ($i = 0; $i < sizeof($this->gonList); $i++) {
if (isset($allGons[$this->gonList[$i]])) {
$gons[] = $allGons[$this->gonList[$i]]['cn'][0];
}
}
$return['posixAccount_gon'] = array('<block><key>' . _('Group of names') . '</key><value>' . implode(", ", $gons) . '</value></block>');
}
if (isset($this->clearTextPassword)) {
$return['posixAccount_userPassword'] = array('<block><key>' . _('Password') . '</key><value>' . $this->clearTextPassword . '</value></block>');
}
else if (isset($this->attributes['INFO.userPasswordClearText'])) {
$return['posixAccount_userPassword'] = array('<block><key>' . _('Password') . '</key><value>' . $this->attributes['INFO.userPasswordClearText'] . '</value></block>');
}
2006-09-03 12:41:22 +00:00
return $return;
}
2004-03-14 17:33:05 +00:00
/**
* Checks input values of module settings.
*
* @param array $scopes list of account types which are used
* @param array $options hash array containing the settings (array('option' => array('value')))
* @return array list of error messages
*/
function check_configOptions($scopes, $options) {
$return = array();
// user settings
if (in_array('user', $scopes)) {
// min/maxUID are required, check if they are numeric
2009-08-13 18:57:26 +00:00
if (!isset($options['posixAccount_minUID'][0]) || !preg_match('/^[0-9]+$/', $options['posixAccount_minUID'][0])) {
$return[] = $this->messages['minUID'][0];
}
2009-08-13 18:57:26 +00:00
if (!isset($options['posixAccount_maxUID'][0]) || !preg_match('/^[0-9]+$/', $options['posixAccount_maxUID'][0])) {
$return[] = $this->messages['maxUID'][0];
}
// minUID < maxUID
if (isset($options['posixAccount_minUID'][0]) && isset($options['posixAccount_maxUID'][0])) {
if ($options['posixAccount_minUID'][0] > $options['posixAccount_maxUID'][0]) {
$return[] = $this->messages['cmp_UID'][0];
}
}
}
// host settings
if (in_array('host', $scopes)) {
// min/maxUID are required, check if they are numeric
2009-08-13 18:57:26 +00:00
if (!isset($options['posixAccount_minMachine'][0]) || !preg_match('/^[0-9]+$/', $options['posixAccount_minMachine'][0])) {
$return[] = $this->messages['minMachine'][0];
}
2009-08-13 18:57:26 +00:00
if (!isset($options['posixAccount_maxMachine'][0]) || !preg_match('/^[0-9]+$/', $options['posixAccount_maxMachine'][0])) {
$return[] = $this->messages['maxMachine'][0];
}
// minUID < maxUID
if (isset($options['posixAccount_minMachine'][0]) && isset($options['posixAccount_maxMachine'][0])) {
if ($options['posixAccount_minMachine'][0] > $options['posixAccount_maxMachine'][0]) {
$return[] = $this->messages['cmp_Machine'][0];
}
}
}
// check if user and host ranges overlap
if (in_array('user', $scopes) && in_array('host', $scopes)) {
if (isset($options['posixAccount_minUID'][0]) && isset($options['posixAccount_maxUID'][0]) &&
isset($options['posixAccount_minMachine'][0]) && isset($options['posixAccount_maxMachine'][0])) {
if (($options['posixAccount_minMachine'][0] > $options['posixAccount_minUID'][0]) &&
($options['posixAccount_minMachine'][0] < $options['posixAccount_maxUID'][0])) {
$return[] = $this->messages['cmp_both'][0];
}
if (($options['posixAccount_minUID'][0] > $options['posixAccount_minMachine'][0]) &&
($options['posixAccount_minUID'][0] < $options['posixAccount_maxMachine'][0])) {
$return[] = $this->messages['cmp_both'][0];
}
}
}
return $return;
2004-10-30 17:00:34 +00:00
}
/**
2004-10-16 14:28:06 +00:00
* In this function the LDAP account is built up.
*
* @param array $rawAccounts list of hash arrays (name => value) from user input
* @param array $partialAccounts list of hash arrays (name => value) which are later added to LDAP
* @param array $ids list of IDs for column position (e.g. "posixAccount_uid" => 5)
* @param array $selectedModules list of selected account modules
2004-10-16 14:28:06 +00:00
* @return array list of error messages if any
*/
function build_uploadAccounts($rawAccounts, $ids, &$partialAccounts, $selectedModules) {
2006-05-18 08:50:51 +00:00
$errors = array();
$needAutoUID = array();
// get list of existing users
2010-11-23 21:12:13 +00:00
$existingUsers = searchLDAPByAttribute('uid', '*', 'posixAccount', array('uid'), array('user', 'host'));
for ($i = 0; $i < sizeof($existingUsers); $i++) {
$existingUsers[$i] = $existingUsers[$i]['uid'][0];
}
// get list of existing groups
2009-11-26 10:48:05 +00:00
$groupList = $this->findGroups();
$groupMap = array();
for ($i = 0; $i < sizeof($groupList); $i++) {
$groupMap[$groupList[$i][1]] = $groupList[$i][0];
}
$existingGroups = array_keys($groupMap);
2011-10-06 20:03:45 +00:00
// get list of existing group of names
2012-04-09 13:20:24 +00:00
if (self::areGroupOfNamesActive()) {
2011-10-06 20:03:45 +00:00
$gons = $this->findGroupOfNames();
$gonList = array();
foreach ($gons as $dn => $attr) {
$gonList[] = $attr['cn'][0];
}
}
// check input
2004-10-16 14:28:06 +00:00
for ($i = 0; $i < sizeof($rawAccounts); $i++) {
if (!in_array("posixAccount", $partialAccounts[$i]['objectClass'])) $partialAccounts[$i]['objectClass'][] = "posixAccount";
// UID
if ($rawAccounts[$i][$ids['posixAccount_uid']] == "") {
// autoUID
$needAutoUID[] = $i;
2004-10-16 14:28:06 +00:00
}
2004-11-01 11:49:43 +00:00
elseif (get_preg($rawAccounts[$i][$ids['posixAccount_uid']], 'digit')) {
if ($this->get_scope() == 'user') {
if (($rawAccounts[$i][$ids['posixAccount_uid']] > $this->moduleSettings['posixAccount_minUID'][0]) &&
($rawAccounts[$i][$ids['posixAccount_uid']] < $this->moduleSettings['posixAccount_maxUID'][0])) {
$partialAccounts[$i]['uidNumber'] = $rawAccounts[$i][$ids['posixAccount_uid']];
}
else {
$errMsg = $this->messages['uidNumber'][4];
array_push($errMsg, array($i));
$errors[] = $errMsg;
}
2004-11-01 11:49:43 +00:00
}
elseif ($this->get_scope() == 'host') {
if (($rawAccounts[$i][$ids['posixAccount_uid']] > $this->moduleSettings['posixAccount_minMachine'][0]) &&
($rawAccounts[$i][$ids['posixAccount_uid']] < $this->moduleSettings['posixAccount_maxMachine'][0])) {
$partialAccounts[$i]['uidNumber'] = $rawAccounts[$i][$ids['posixAccount_uid']];
}
else {
$errMsg = $this->messages['uidNumber'][4];
array_push($errMsg, array($i));
$errors[] = $errMsg;
}
2004-11-01 11:49:43 +00:00
}
2004-10-16 14:28:06 +00:00
}
else {
2004-10-17 18:29:39 +00:00
$errMsg = $this->messages['uidNumber'][4];
2004-10-16 14:28:06 +00:00
array_push($errMsg, array($i));
2006-05-18 08:50:51 +00:00
$errors[] = $errMsg;
2004-10-16 14:28:06 +00:00
}
// GID number
if (get_preg($rawAccounts[$i][$ids['posixAccount_group']], 'digit')) {
$partialAccounts[$i]['gidNumber'] = $rawAccounts[$i][$ids['posixAccount_group']];
}
if (get_preg($rawAccounts[$i][$ids['posixAccount_group']], 'groupname')) {
2009-11-26 10:48:05 +00:00
$gid = $groupMap[$rawAccounts[$i][$ids['posixAccount_group']]];
2004-10-17 18:29:39 +00:00
if (is_numeric($gid)) {
$partialAccounts[$i]['gidNumber'] = $gid;
}
else {
$errMsg = $this->messages['gidNumber'][0];
array_push($errMsg, array($i));
2006-05-18 08:50:51 +00:00
$errors[] = $errMsg;
2004-10-17 18:29:39 +00:00
}
2004-10-16 14:28:06 +00:00
}
else {
2004-10-17 18:29:39 +00:00
$errMsg = $this->messages['gidNumber'][1];
2004-10-16 14:28:06 +00:00
array_push($errMsg, array($i));
2006-05-18 08:50:51 +00:00
$errors[] = $errMsg;
2004-10-16 14:28:06 +00:00
}
2005-06-07 18:28:28 +00:00
// GECOS
if ($rawAccounts[$i][$ids['posixAccount_gecos']] != "") {
if (get_preg($rawAccounts[$i][$ids['posixAccount_gecos']], 'gecos')) {
$partialAccounts[$i]['gecos'] = $this->checkASCII($rawAccounts[$i][$ids['posixAccount_gecos']]);
2005-06-07 18:28:28 +00:00
}
else {
$errMsg = $this->messages['gecos'][0];
array_push($errMsg, array($i));
2006-05-18 08:50:51 +00:00
$errors[] = $errMsg;
2005-06-07 18:28:28 +00:00
}
2004-10-16 14:28:06 +00:00
}
else {
2005-06-07 18:28:28 +00:00
$gecos = "";
if (($rawAccounts[$i][$ids['inetOrgPerson_firstName']] != "") && ($rawAccounts[$i][$ids['inetOrgPerson_lastName']] != "")) {
$gecos = $rawAccounts[$i][$ids['inetOrgPerson_firstName']] . " " . $rawAccounts[$i][$ids['inetOrgPerson_lastName']];
if ($rawAccounts[$i][$ids['inetOrgPerson_telephone']] != "") {
$gecos = $gecos . ",," . $rawAccounts[$i][$ids['inetOrgPerson_telephone']]; // double "," because room is unknown
if ($rawAccounts[$i][$ids['inetOrgPerson_fax']] != "") {
$gecos = $gecos . "," . $rawAccounts[$i][$ids['inetOrgPerson_fax']];
}
}
}
if ($gecos != "") {
$partialAccounts[$i]['gecos'] = $this->checkASCII($gecos);
}
2004-10-16 14:28:06 +00:00
}
// user specific attributes
2007-10-04 16:45:05 +00:00
if ($this->get_scope() == 'user') {
// additional groups
if ($rawAccounts[$i][$ids['posixAccount_additionalGroups']] != "") {
$groups = explode(",", $rawAccounts[$i][$ids['posixAccount_additionalGroups']]);
for ($g = 0; $g < sizeof($groups); $g++) {
if (!in_array($groups[$g], $existingGroups)) {
2006-05-18 08:50:51 +00:00
$errors[] = array('ERROR', _('Unable to find group in LDAP.'), $groups[$g]);
}
}
}
2011-10-06 20:03:45 +00:00
// group of names
2012-04-09 13:20:24 +00:00
if (self::areGroupOfNamesActive() && ($rawAccounts[$i][$ids['posixAccount_gon']] != "")) {
2011-10-06 20:03:45 +00:00
$groups = explode(",", $rawAccounts[$i][$ids['posixAccount_gon']]);
for ($g = 0; $g < sizeof($groups); $g++) {
if (!in_array($groups[$g], $gonList)) {
2011-10-30 18:07:36 +00:00
$errors[] = array('ERROR', _('Unable to find group in LDAP.'), $groups[$g]);
2011-10-06 20:03:45 +00:00
}
}
}
2004-10-16 14:28:06 +00:00
// user name
if (in_array($rawAccounts[$i][$ids['posixAccount_userName']], $existingUsers)) {
$errMsg = $this->messages['uid'][9];
array_push($errMsg, array($i));
2006-05-18 08:50:51 +00:00
$errors[] = $errMsg;
}
elseif (get_preg($rawAccounts[$i][$ids['posixAccount_userName']], 'username')) {
2004-10-16 14:28:06 +00:00
$partialAccounts[$i]['uid'] = $rawAccounts[$i][$ids['posixAccount_userName']];
}
else {
2004-10-17 18:29:39 +00:00
$errMsg = $this->messages['uid'][7];
2004-10-16 14:28:06 +00:00
array_push($errMsg, array($i));
2006-05-18 08:50:51 +00:00
$errors[] = $errMsg;
2004-10-16 14:28:06 +00:00
}
// home directory
if ($rawAccounts[$i][$ids['posixAccount_homedir']] == "") {
$partialAccounts[$i]['homeDirectory'] = '/home/' . $partialAccounts[$i]['uid'];
}
elseif (get_preg($rawAccounts[$i][$ids['posixAccount_homedir']], 'homeDirectory')) {
$partialAccounts[$i]['homeDirectory'] = $rawAccounts[$i][$ids['posixAccount_homedir']];
}
else {
2004-10-17 18:29:39 +00:00
$errMsg = $this->messages['homeDirectory'][2];
2004-10-16 14:28:06 +00:00
array_push($errMsg, array($i));
2006-05-18 08:50:51 +00:00
$errors[] = $errMsg;
2004-10-16 14:28:06 +00:00
}
// login shell
if ($rawAccounts[$i][$ids['posixAccount_shell']] == "") {
$partialAccounts[$i]['loginShell'] = '/bin/bash';
}
elseif (in_array($rawAccounts[$i][$ids['posixAccount_shell']], getshells())) {
$partialAccounts[$i]['loginShell'] = $rawAccounts[$i][$ids['posixAccount_shell']];
}
else {
2004-10-17 18:29:39 +00:00
$errMsg = $this->messages['shell'][0];
2004-10-16 14:28:06 +00:00
array_push($errMsg, array($i));
2006-05-18 08:50:51 +00:00
$errors[] = $errMsg;
2004-10-16 14:28:06 +00:00
}
$pwd_enabled = true;
// password enabled/disabled
if ($rawAccounts[$i][$ids['posixAccount_passwordDisabled']] == "") {
$pwd_enabled = true;
}
elseif (in_array($rawAccounts[$i][$ids['posixAccount_passwordDisabled']], array('true', 'false'))) {
if ($rawAccounts[$i][$ids['posixAccount_passwordDisabled']] == 'true') $pwd_enabled = false;
else $pwd_enabled = true;
}
else {
2004-10-17 18:29:39 +00:00
$errMsg = $this->messages['passwordDisabled'][0];
2004-10-16 14:28:06 +00:00
array_push($errMsg, array($i));
2006-05-18 08:50:51 +00:00
$errors[] = $errMsg;
2004-10-16 14:28:06 +00:00
}
// password
if (($rawAccounts[$i][$ids['posixAccount_password']] != "") && (get_preg($rawAccounts[$i][$ids['posixAccount_password']], 'password'))) {
$partialAccounts[$i]['userPassword'] = pwd_hash($rawAccounts[$i][$ids['posixAccount_password']], $pwd_enabled, $this->moduleSettings['posixAccount_pwdHash'][0]);
2012-01-15 14:15:56 +00:00
$partialAccounts[$i]['INFO.userPasswordClearText'] = $rawAccounts[$i][$ids['posixAccount_password']]; // for custom scripts etc.
2004-10-16 14:28:06 +00:00
}
2004-10-17 18:29:39 +00:00
elseif ($rawAccounts[$i][$ids['posixAccount_password']] != "") {
2010-02-08 16:27:09 +00:00
$errMsg = str_replace('%', '%%', $this->messages['userPassword'][4]); // double "%" because of later sprintf
2004-10-16 14:28:06 +00:00
array_push($errMsg, array($i));
2006-05-18 08:50:51 +00:00
$errors[] = $errMsg;
2004-10-16 14:28:06 +00:00
}
// cn
if ($rawAccounts[$i][$ids['posixAccount_cn']] != "") {
if (get_preg($rawAccounts[$i][$ids['posixAccount_cn']], 'cn')) {
$partialAccounts[$i]['cn'] = $rawAccounts[$i][$ids['posixAccount_cn']];
}
else {
$errMsg = $this->messages['cn'][1];
array_push($errMsg, array($i));
2006-05-18 08:50:51 +00:00
$errors[] = $errMsg;
}
}
else {
if ($partialAccounts[$i]['givenName']) {
$partialAccounts[$i]['cn'] = $partialAccounts[$i]['givenName'] . " " . $partialAccounts[$i]['sn'];
}
elseif ($partialAccounts[$i]['sn']) {
$partialAccounts[$i]['cn'] = $partialAccounts[$i]['sn'];
}
else {
$partialAccounts[$i]['cn'] = $partialAccounts[$i]['uid'];
}
}
2004-10-16 14:28:06 +00:00
}
// host specific attributes
2007-10-04 16:45:05 +00:00
elseif ($this->get_scope() == 'host') {
2004-10-16 14:28:06 +00:00
// host name
if (in_array($rawAccounts[$i][$ids['posixAccount_hostName']], $existingUsers)) {
$errMsg = $this->messages['uid'][10];
array_push($errMsg, array($i));
2006-05-18 08:50:51 +00:00
$errors[] = $errMsg;
}
elseif (get_preg($rawAccounts[$i][$ids['posixAccount_hostName']], 'hostname')) {
2004-10-16 14:28:06 +00:00
$partialAccounts[$i]['uid'] = $rawAccounts[$i][$ids['posixAccount_hostName']];
2004-11-05 16:53:38 +00:00
$partialAccounts[$i]['cn'] = $rawAccounts[$i][$ids['posixAccount_hostName']];
2004-10-16 14:28:06 +00:00
}
else {
2004-10-17 18:29:39 +00:00
$errMsg = $this->messages['uid'][8];
2004-10-16 14:28:06 +00:00
array_push($errMsg, array($i));
2006-05-18 08:50:51 +00:00
$errors[] = $errMsg;
2004-10-16 14:28:06 +00:00
}
2004-11-05 16:53:38 +00:00
// description
2006-08-13 12:58:19 +00:00
if ($rawAccounts[$i][$ids['posixAccount_description']] && ($rawAccounts[$i][$ids['posixAccount_description']] != '')) {
2004-11-05 16:53:38 +00:00
$partialAccounts[$i]['description'] = $rawAccounts[$i][$ids['posixAccount_description']];
}
else {
$partialAccounts[$i]['description'] = $rawAccounts[$i][$ids['posixAccount_hostName']];
}
2004-10-16 14:28:06 +00:00
$partialAccounts[$i]['homeDirectory'] = '/dev/null';
$partialAccounts[$i]['loginShell'] = '/bin/false';
}
}
// fill in autoUIDs
if (sizeof($needAutoUID) > 0) {
$errorsTemp = array();
$uids = $this->getNextUIDs(sizeof($needAutoUID), $errorsTemp);
if (is_array($uids)) {
for ($i = 0; $i < sizeof($needAutoUID); $i++) {
$partialAccounts[$i]['uidNumber'] = $uids[$i];
}
}
else {
2006-05-18 08:50:51 +00:00
$errors[] = $this->messages['uidNumber'][2];
}
}
2006-05-18 08:50:51 +00:00
return $errors;
2004-10-16 14:28:06 +00:00
}
2006-08-13 12:58:19 +00:00
/**
* This function executes one post upload action.
*
* @param array $data array containing one account in each element
* @param array $ids array(<column_name> => <column number>)
* @param array $failed list of accounts which were not created successfully
* @param array $temp variable to store temporary data between two post actions
2010-12-16 17:59:04 +00:00
* @param array $accounts list of LDAP entries
* @return array current status
* <br> array (
* <br> 'status' => 'finished' | 'inProgress'
* <br> 'progress' => 0..100
* <br> 'errors' => array (<array of parameters for StatusMessage>)
* <br> )
*/
2010-12-16 17:59:04 +00:00
function doUploadPostActions(&$data, $ids, $failed, &$temp, &$accounts) {
2007-12-30 16:08:54 +00:00
if (!checkIfWriteAccessIsAllowed()) {
die();
}
// on first call generate list of ldap operations
if (!isset($temp['counter'])) {
2004-10-24 09:50:02 +00:00
$temp['groups'] = array();
2011-10-06 20:03:45 +00:00
$temp['dn_gon'] = array();
2007-07-09 19:03:19 +00:00
$temp['createHomes'] = array();
$temp['counter'] = 0;
$col = $ids['posixAccount_additionalGroups'];
2007-07-09 19:03:19 +00:00
$col_home = $ids['posixAccount_createHomeDir'];
2009-11-26 10:48:05 +00:00
// get list of existing groups
$groupList = $this->findGroups();
$groupMap = array();
for ($i = 0; $i < sizeof($groupList); $i++) {
$groupMap[$groupList[$i][0]] = $groupList[$i][1];
}
2011-10-06 20:03:45 +00:00
// get list of existing group of names
2012-04-09 13:20:24 +00:00
if (self::areGroupOfNamesActive()) {
2011-10-06 20:03:45 +00:00
$gonList = $this->findGroupOfNames();
$gonMap = array();
foreach ($gonList as $dn => $attr) {
$gonMap[$attr['cn'][0]] = $dn;
}
}
for ($i = 0; $i < sizeof($data); $i++) {
2004-10-24 09:50:02 +00:00
if (in_array($i, $failed)) continue; // ignore failed accounts
if ($data[$i][$col] != "") {
$groups = explode(",", $data[$i][$col]);
if (isset($this->moduleSettings['posixAccount_primaryGroupAsSecondary'][0])
&& ($this->moduleSettings['posixAccount_primaryGroupAsSecondary'][0] == 'true')) {
if (get_preg($data[$i][$ids['posixAccount_group']], 'digit')) {
2009-11-26 10:48:05 +00:00
if (!in_array($groupMap[$data[$i][$ids['posixAccount_group']]], $groups)) {
$groups[] = $groupMap[$data[$i][$ids['posixAccount_group']]];
}
}
else {
2009-11-26 10:48:05 +00:00
if (!in_array($groupMap[$data[$i][$ids['posixAccount_group']]], $groups)) {
$groups[] = $data[$i][$ids['posixAccount_group']];
}
}
}
for ($g = 0; $g < sizeof($groups); $g++) {
2004-10-24 09:50:02 +00:00
if (!in_array($groups[$g], $temp['groups'])) $temp['groups'][] = $groups[$g];
$temp['members'][$groups[$g]][] = $data[$i][$ids['posixAccount_userName']];
}
}
2012-01-11 19:23:10 +00:00
if (isset($ids['posixAccount_gon']) && ($data[$i][$ids['posixAccount_gon']] != "")) {
$gons = explode(",", $data[$i][$ids['posixAccount_gon']]);
2011-10-06 20:03:45 +00:00
$memberAttr = 'member';
for ($g = 0; $g < sizeof($gons); $g++) {
if (in_array('groupOfUniqueNames', $gonList[$gonMap[$gons[$g]]]['objectclass'])) {
$memberAttr = 'uniqueMember';
}
$temp['dn_gon'][$gonMap[$gons[$g]]][$memberAttr][] = $accounts[$i]['dn'];
}
}
2007-07-09 19:03:19 +00:00
if ($data[$i][$col_home] != "") {
$temp['createHomes'][] = $i;
}
}
2011-10-06 20:03:45 +00:00
$temp['dn_gon_keys'] = array_keys($temp['dn_gon']);
return array(
'status' => 'inProgress',
'progress' => 0,
'errors' => array()
);
}
2004-10-24 09:50:02 +00:00
// get DNs of groups
elseif (!isset($temp['dn'])) {
$temp['dn'] = array();
2010-11-23 21:12:13 +00:00
$ldapEntries = searchLDAPByAttribute('cn', '*', 'posixGroup', array('dn', 'cn'), array('group'));
for ($i = 0; $i < sizeof($ldapEntries); $i++) {
$temp['dn'][$ldapEntries[$i]['cn'][0]] = $ldapEntries[$i]['dn'];
2004-10-24 09:50:02 +00:00
}
return array(
'status' => 'inProgress',
'progress' => 0,
'errors' => array()
);
2004-10-24 09:50:02 +00:00
}
// add users to groups
elseif ($temp['counter'] < sizeof($temp['groups'])) {
if (isset($temp['dn'][$temp['groups'][$temp['counter']]])) {
2007-07-08 10:51:01 +00:00
$success = @ldap_mod_add($_SESSION['ldap']->server(), $temp['dn'][$temp['groups'][$temp['counter']]], array('memberUID' => $temp['members'][$temp['groups'][$temp['counter']]]));
2004-10-24 09:50:02 +00:00
$errors = array();
if (!$success) {
$errors[] = array(
"ERROR",
_("LAM was unable to modify group memberships for group: %s"),
2007-07-08 10:51:01 +00:00
ldap_errno($_SESSION['ldap']->server()) . ": " . ldap_error($_SESSION['ldap']->server()),
2004-10-24 09:50:02 +00:00
array($temp['groups'][$temp['counter']])
);
}
$temp['counter']++;
return array (
'status' => 'inProgress',
2011-10-06 20:03:45 +00:00
'progress' => ($temp['counter'] * 100) / (sizeof($temp['groups']) + sizeof($temp['createHomes']) + sizeof($temp['dn_gon'])),
2004-10-24 09:50:02 +00:00
'errors' => $errors
);
}
else {
$temp['counter']++;
return array (
'status' => 'inProgress',
2011-10-06 20:03:45 +00:00
'progress' => ($temp['counter'] * 100) / (sizeof($temp['groups'] + sizeof($temp['createHomes']) + sizeof($temp['dn_gon']))),
2004-10-24 09:50:02 +00:00
'errors' => array(array('ERROR', _('Unable to find group in LDAP.'), $temp['groups'][$temp['counter']]))
);
}
}
2007-07-09 19:03:19 +00:00
// create home directories
elseif ($temp['counter'] < (sizeof($temp['groups']) + sizeof($temp['createHomes']))) {
$pos = $temp['createHomes'][$temp['counter'] - sizeof($temp['groups'])];
2010-12-16 17:59:04 +00:00
$result = lamdaemon(
implode(
posixAccount::$SPLIT_DELIMITER,
array(
$data[$pos][$ids['posixAccount_userName']],
"home",
"add",
$accounts[$pos]['homeDirectory'],
"0".$_SESSION['config']->get_scriptRights(),
$accounts[$pos]['uidNumber'],
$accounts[$pos]['gidNumber'],
)
),
2007-07-09 19:03:19 +00:00
$data[$pos][$ids['posixAccount_createHomeDir']]);
$errors = array();
if (($result != false) && (sizeof($result) == 1)) {
$parts = explode(",", $result[0]);
if (in_array($parts[0], array('ERROR', 'WARN'))) {
$errors[] = $parts;
}
}
$temp['counter']++;
return array (
'status' => 'inProgress',
2011-10-06 20:03:45 +00:00
'progress' => ($temp['counter'] * 100) / (sizeof($temp['groups']) + sizeof($temp['createHomes']) + sizeof($temp['dn_gon'])),
'errors' => $errors
);
}
// add users to group of names
elseif ($temp['counter'] < (sizeof($temp['groups']) + sizeof($temp['createHomes']) + sizeof($temp['dn_gon']))) {
$gonDn = $temp['dn_gon_keys'][$temp['counter'] - sizeof($temp['groups']) - sizeof($temp['createHomes'])];
$gonAttr = $temp['dn_gon'][$gonDn];
$success = @ldap_mod_add($_SESSION['ldap']->server(), $gonDn, $gonAttr);
$errors = array();
if (!$success) {
$errors[] = array(
"ERROR",
2011-10-30 18:07:36 +00:00
_("LAM was unable to modify group memberships for group: %s"),
2011-10-06 20:03:45 +00:00
ldap_errno($_SESSION['ldap']->server()) . ": " . ldap_error($_SESSION['ldap']->server()),
array($temp['groups'][$temp['counter']])
);
}
$temp['counter']++;
$errors = array();
return array (
'status' => 'inProgress',
'progress' => ($temp['counter'] * 100) / (sizeof($temp['groups']) + sizeof($temp['createHomes']) + sizeof($temp['dn_gon'])),
2007-07-09 19:03:19 +00:00
'errors' => $errors
);
}
2011-10-06 20:03:45 +00:00
// all modifications are done
else {
2004-10-24 09:50:02 +00:00
return array (
'status' => 'finished',
'progress' => 100,
'errors' => array()
);
}
}
/**
* Returns one or more free UID numbers.
*
* @param integer $count Number of needed free UIDs.
2006-05-18 08:50:51 +00:00
* @param array $errors list of error messages where errors can be added
2006-08-13 12:58:19 +00:00
* @return mixed Null if no UIDs are free else an array of free UIDs.
*/
2006-05-18 08:50:51 +00:00
function getNextUIDs($count, &$errors) {
$ret = array();
2007-10-04 16:45:05 +00:00
if ($this->get_scope() == "user") {
$minID = intval($this->moduleSettings['posixAccount_minUID'][0]);
$maxID = intval($this->moduleSettings['posixAccount_maxUID'][0]);
}
else {
$minID = intval($this->moduleSettings['posixAccount_minMachine'][0]);
$maxID = intval($this->moduleSettings['posixAccount_maxMachine'][0]);
}
2010-11-23 21:12:13 +00:00
$uidList = $this->getUIDs();
$uids = array();
2010-11-23 21:12:13 +00:00
for ($i = 0; $i < sizeof($uidList); $i++) {
if (($uidList[$i] <= $maxID) && ($uidList[$i] >= $minID)) $uids[] = $uidList[$i]; // ignore UIDs > maxID and UIDs < minID
}
for ($i = 0; $i < $count; $i++) {
if (count($uids) != 0) {
// there already are some uids
// store highest id-number
$id = $uids[count($uids)-1];
// Return minimum allowed id-number if all found id-numbers are too low
if ($id < $minID) {
$ret[] = $minID;
$uids[] = $minID;
}
// return highest used id-number + 1 if it's still in valid range
elseif ($id < $maxID) {
$ret[] = $id + 1;
$uids[] = $id + 1;
}
// find free numbers between existing ones
else {
$k = intval($minID);
while (in_array($k, $uids)) $k++;
if ($k > $maxID) return null;
else {
$ret[] = $k;
$uids[] = $k;
sort ($uids, SORT_NUMERIC);
}
// show warning message
2006-08-16 17:42:35 +00:00
$errors[] = $this->messages['uidNumber'][2];
}
}
else {
// return minimum allowed id-number if no id-numbers are found
$ret[] = $minID;
$uids[] = $minID;
}
}
return $ret;
}
2006-07-29 08:42:34 +00:00
/**
* Returns the meta HTML code for each input field.
* format: array(<field1> => array(<META HTML>), ...)
* It is not possible to display help links.
*
* @param array $fields list of active fields
2011-08-20 17:59:36 +00:00
* @param array $attributes attributes of LDAP account
* @param boolean $passwordChangeOnly indicates that the user is only allowed to change his password and no LDAP content is readable
2006-07-29 08:42:34 +00:00
* @return array meta HTML
*/
function getSelfServiceOptions($fields, $attributes, $passwordChangeOnly) {
2006-07-29 08:42:34 +00:00
$return = array();
if (in_array('password', $fields)) {
$pwdTable = new htmlTable();
2011-12-10 13:37:24 +00:00
$pwdTable->colspan = 3;
2010-07-03 12:31:55 +00:00
$pwd1 = new htmlTableExtendedInputField(_('New password'), 'posixAccount_password');
2010-07-03 13:17:50 +00:00
$pwd1->setIsPassword(true);
$pwdTable->addElement($pwd1, true);
2010-07-03 12:31:55 +00:00
$pwd2 = new htmlTableExtendedInputField(_('Reenter password'), 'posixAccount_password2');
2010-07-03 13:17:50 +00:00
$pwd2->setIsPassword(true);
$pwdTable->addElement($pwd2);
2010-07-03 12:31:55 +00:00
$return['password'] = new htmlTableRow(array(
$pwdTable
2010-07-03 12:31:55 +00:00
));
2006-07-29 08:42:34 +00:00
}
if ($passwordChangeOnly) {
return $return; // only password fields as long no LDAP content can be read
}
2011-03-23 18:35:57 +00:00
if (in_array('cn', $fields)) {
$cn = '';
if (isset($attributes['cn'][0])) $cn = $attributes['cn'][0];
$return['cn'] = new htmlTableRow(array(
new htmlTableExtendedInputField(_('Common name'), 'posixAccount_cn', $cn)
));
}
2011-12-14 18:41:59 +00:00
if (in_array('loginShell', $fields)) {
$shelllist = getshells(); // list of all valid shells
$loginShell = '';
if (isset($attributes['loginShell'][0])) $loginShell = $attributes['loginShell'][0];
$return['loginShell'] = new htmlTableRow(array(
new htmlTableExtendedSelect('posixAccount_loginShell', $shelllist, array($loginShell), _('Login shell'))
));
}
2006-07-29 08:42:34 +00:00
return $return;
}
/**
2011-02-26 13:14:10 +00:00
* Checks if all input values are correct and returns the LDAP attributes which should be changed.
* <br>Return values:
* <br>messages: array of parameters to create status messages
* <br>add: array of attributes to add
* <br>del: array of attributes to remove
* <br>mod: array of attributes to modify
* <br>"info" are values with informational value (e.g. to be used later by pre/postModify actions)
*
* Calling this method does not require the existence of an enclosing {@link accountContainer}.
2006-07-29 08:42:34 +00:00
*
* @param string $fields input fields
* @param array $attributes LDAP attributes
* @param boolean $passwordChangeOnly indicates that the user is only allowed to change his password and no LDAP content is readable
2011-02-26 13:14:10 +00:00
* @return array messages and attributes (array('messages' => array(), 'add' => array('mail' => array('test@test.com')), 'del' => array(), 'mod' => array(), 'info' => array()))
2006-07-29 08:42:34 +00:00
*/
function checkSelfServiceOptions($fields, $attributes, $passwordChangeOnly) {
2011-02-26 13:14:10 +00:00
$return = array('messages' => array(), 'add' => array(), 'del' => array(), 'mod' => array(), 'info' => array());
2006-07-29 08:42:34 +00:00
if (in_array('password', $fields)) {
if (isset($_POST['posixAccount_password']) && ($_POST['posixAccount_password'] != '')) {
if ($_POST['posixAccount_password'] != $_POST['posixAccount_password2']) {
$return['messages'][] = $this->messages['userPassword'][0];
}
else {
2006-08-13 12:58:19 +00:00
if (!get_preg($_POST['posixAccount_password'], 'password')) {
2006-07-29 08:42:34 +00:00
$return['messages'][] = $this->messages['userPassword'][1];
}
else {
2008-02-14 17:37:02 +00:00
$pwdPolicyResult = checkPasswordStrength($_POST['posixAccount_password']);
if ($pwdPolicyResult === true) {
$return['mod']['userPassword'][0] = pwd_hash($_POST['posixAccount_password'], true, $this->selfServiceSettings->moduleSettings['posixAccount_pwdHash'][0]);
2011-02-26 13:14:10 +00:00
$return['info']['userPasswordClearText'][0] = $_POST['posixAccount_password'];
if (isset($attributes['shadowLastChange'][0])) {
2008-02-14 17:37:02 +00:00
$return['mod']['shadowLastChange'][0] = intval(time()/3600/24);
}
$_SESSION['selfService_clientPasswordNew'] = $_POST['posixAccount_password'];
}
else {
$return['messages'][] = array('ERROR', $pwdPolicyResult);
}
2006-07-29 08:42:34 +00:00
}
}
}
}
if ($passwordChangeOnly) {
return $return; // skip processing if only a password change is done
}
2011-03-23 18:35:57 +00:00
if (in_array('cn', $fields)) {
if (isset($_POST['posixAccount_cn']) && ($_POST['posixAccount_cn'] != '')) {
if (!get_preg($_POST['posixAccount_cn'], 'cn')) {
$return['messages'][] = $this->messages['cn'][0];
}
else if (!isset($attributes['cn']) || ($attributes['cn'][0] != $_POST['posixAccount_cn'])) {
2011-03-23 18:35:57 +00:00
$return['mod']['cn'][0] = $_POST['posixAccount_cn'];
}
}
else {
$return['messages'][] = $this->messages['cn'][0];
}
}
2011-12-14 18:41:59 +00:00
if (in_array('loginShell', $fields)) {
$shelllist = getshells(); // list of all valid shells
if (in_array($_POST['posixAccount_loginShell'], $shelllist)
&& (!isset($attributes['loginShell']) || ($attributes['loginShell'][0] != $_POST['posixAccount_loginShell']))) {
2011-12-14 18:41:59 +00:00
$return['mod']['loginShell'][0] = $_POST['posixAccount_loginShell'];
}
}
2006-07-29 08:42:34 +00:00
return $return;
}
2007-10-13 17:28:37 +00:00
/**
* This method specifies if a module manages password attributes.
* @see passwordService::managesPasswordAttributes
*
* @return boolean true if this module manages password attributes
*/
public function managesPasswordAttributes() {
return true;
}
/**
* Specifies if this module supports to force that a user must change his password on next login.
*
* @return boolean force password change supported
*/
public function supportsForcePasswordChange() {
return false;
}
/**
2009-10-09 18:21:12 +00:00
* This function is called whenever the password should be changed. Account modules
* must change their password attributes only if the modules list contains their module name.
*
* @param String $password new password
2009-10-09 18:21:12 +00:00
* @param $modules list of modules for which the password should be changed
* @param boolean $forcePasswordChange force the user to change his password at next login
* @return array list of error messages if any as parameter array for StatusMessage
* e.g. return arrray(array('ERROR', 'Password change failed.'))
2009-10-09 18:21:12 +00:00
* @see passwordService::passwordChangeRequested
*/
public function passwordChangeRequested($password, $modules, $forcePasswordChange) {
2009-10-09 18:21:12 +00:00
if (!in_array(get_class($this), $modules)) {
return array();
}
$this->clearTextPassword = $password;
2009-10-09 18:21:12 +00:00
$this->attributes['userPassword'][0] = pwd_hash($password, true, $this->moduleSettings['posixAccount_pwdHash'][0]);
return array();
}
2009-11-26 10:48:05 +00:00
/**
2009-11-26 13:32:14 +00:00
* Returns the group ID of the given group.
2009-11-26 10:48:05 +00:00
*
* @param String $groupname group name
* @return String GID
*/
private function getGID($groupname) {
$results = searchLDAPByAttribute('cn', $groupname, 'posixGroup', array('gidnumber'), array('group'));
if ((sizeof($results) > 0) && isset($results[0]['gidnumber'][0])) {
return $results[0]['gidnumber'][0];
}
return null;
}
/**
* Returns the group name of the group with the given group ID.
*
* @param String $groupID group ID
* @return String group name
*/
private function getGroupName($groupID) {
$results = searchLDAPByAttribute('gidNumber', $groupID, 'posixGroup', array('cn'), array('group'));
if ((sizeof($results) > 0) && isset($results[0]['cn'][0])) {
return $results[0]['cn'][0];
}
return null;
}
2009-11-26 13:32:14 +00:00
/**
* Returns the group DN of the given group.
*
* @param String $groupname group name
* @return String DN
*/
private function getGroupDN($groupname) {
$results = searchLDAPByAttribute('cn', $groupname, 'posixGroup', array('dn'), array('group'));
if ((sizeof($results) > 0) && isset($results[0]['dn'][0])) {
return $results[0]['dn'];
}
return null;
}
2009-11-26 10:48:05 +00:00
/**
* Finds all existing LDAP groups.
*
2010-11-23 21:12:13 +00:00
* @return array groups array(array(gidnumber, cn), array(gidnumber, cn), ...)
2009-11-26 10:48:05 +00:00
*/
private function findGroups() {
if ($this->groupCache != null) {
return $this->groupCache;
}
$results = searchLDAPByAttribute(null, null, 'posixGroup', array('cn', 'gidnumber'), array('group'));
$return = array();
for ($i = 0; $i < sizeof($results); $i++) {
if (isset($results[$i]['cn'][0]) && isset($results[$i]['gidnumber'][0])) {
$return[] = array($results[$i]['gidnumber'][0], $results[$i]['cn'][0]);
}
}
$this->groupCache = $return;
return $return;
}
2010-01-31 18:37:28 +00:00
2011-10-06 20:03:45 +00:00
/**
* Finds all existing LDAP group of names.
*
* @return array groups array(dn => array('cn' => array('groupName'), 'objectClass' => array('top', 'groupOfNames')))
*/
private function findGroupOfNames() {
if ($this->gonCache != null) {
return $this->gonCache;
}
$return = array();
$types = array();
if (in_array('group', $_SESSION['config']->get_ActiveTypes())) {
$types[] = 'group';
}
if (in_array('gon', $_SESSION['config']->get_ActiveTypes())) {
$types[] = 'gon';
}
if (sizeof($types) > 0) {
$results = searchLDAPByFilter('(|(objectClass=groupOfNames)(objectClass=groupOfUniqueNames))', array('cn', 'dn', 'objectClass'), $types);
for ($i = 0; $i < sizeof($results); $i++) {
if (isset($results[$i]['cn'][0]) && isset($results[$i]['dn'])) {
$return[$results[$i]['dn']] = $results[$i];
}
}
}
$this->gonCache = $return;
return $return;
}
2010-11-23 21:12:13 +00:00
/**
* Returns a list of existing UID numbers.
*
* @return array list of UID numbers
*/
private function getUIDs() {
if ($this->cachedUIDList != null) {
return $this->cachedUIDList;
}
$result = searchLDAPByAttribute('uidNumber', '*', 'posixAccount', array('uidNumber'), array('user', 'host'));
$this->cachedUIDList = array();
for ($i = 0; $i < sizeof($result); $i++) {
$this->cachedUIDList[] = $result[$i]['uidnumber'][0];
}
sort($this->cachedUIDList, SORT_NUMERIC);
return $this->cachedUIDList;
}
2011-10-06 20:03:45 +00:00
/**
* Returns if LAM manages group of names entries.
*
* @return boolean group of names are active
*/
2012-04-09 13:20:24 +00:00
public static function areGroupOfNamesActive() {
2011-10-06 20:03:45 +00:00
if (!isset($_SESSION['config'])) {
return false;
}
if (in_array('group', $_SESSION['config']->get_ActiveTypes())) {
$groupModules = $_SESSION['config']->get_AccountModules('group');
if (in_array('groupOfNames', $groupModules) || in_array('groupOfUniqueNames', $groupModules)) {
return true;
}
}
if (in_array('gon', $_SESSION['config']->get_ActiveTypes())) {
$gonModules = $_SESSION['config']->get_AccountModules('gon');
if (in_array('groupOfNames', $gonModules) || in_array('groupOfUniqueNames', $gonModules)) {
return true;
}
}
return false;
}
/**
* Returns a suggestion for the user name.
* By deafult this wil be the first character of the first name plus the last name.
*
* @param array $attrs LDAP attributes
* @return String user name
*/
private function getUserNameSuggestion($attrs) {
if (isset($attrs['sn'][0])) {
if (isset($attrs['givenName'][0]) && ($attrs['givenName'][0] != '')) {
if ($this->SUGGEST_LONG_USER_NAME) {
return preg_replace('/[^a-z0-9_\\.-]/', '', strtolower($attrs['givenName'][0] . '.' . $attrs['sn'][0]));
}
else {
return preg_replace('/[^a-z0-9_-]/', '', strtolower($attrs['givenName'][0][0] . $attrs['sn'][0]));
}
}
else {
return preg_replace('/[^a-z0-9_-]/', '', strtolower($attrs['sn'][0]));
}
}
return null;
}
2012-04-09 13:20:24 +00:00
/**
* Returns if the Unix part of the current account is locked.
*
* @return boolean password is locked
*/
public function isLocked() {
return isset($this->attributes['userPassword'][0]) && !pwd_is_enabled($this->attributes['userPassword'][0]);
}
/**
* Locks the user password of this account.
*/
public function lock() {
$this->attributes['userPassword'][0] = pwd_disable($this->attributes['userPassword'][0]);
}
/**
* Unlocks the user password of this account.
*/
public function unlock() {
$this->attributes['userPassword'][0] = pwd_enable($this->attributes['userPassword'][0]);
}
/**
* Removes all Unix group memberships from this user.
*/
public function removeFromUnixGroups() {
$this->groups = array();
}
/**
* Removes all group of names memberships from this user.
*/
public function removeFromGONGroups() {
$this->gonList = array();
}
}
?>