2013-04-06 15:00:53 +00:00
< ? php
2017-05-06 13:22:27 +00:00
use \LAM\TYPES\TypeManager ;
2017-05-07 11:26:41 +00:00
use LAM\TYPES\ConfiguredType ;
2018-08-19 18:25:15 +00:00
use LAM\ImageUtils\ImageManipulationFactory ;
2013-04-06 15:00:53 +00:00
/*
This code is part of LDAP Account Manager ( http :// www . ldap - account - manager . org / )
2020-02-08 14:43:11 +00:00
Copyright ( C ) 2013 - 2020 Roland Gruber
2013-04-06 15:00:53 +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 .
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 .
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
*/
/**
* Manages Windows AD ( e . g . Samba 4 ) users .
*
* @ package modules
* @ author Roland Gruber
*/
/**
* Manages Windows AD ( e . g . Samba 4 ) users .
*
* @ package modules
*/
2013-04-07 17:28:09 +00:00
class windowsUser extends baseModule implements passwordService {
2015-08-04 18:41:12 +00:00
2013-04-13 15:57:32 +00:00
/** initial account flags */
const DEFAULT_ACCOUNT_CONTROL = 0x00000200 ;
/** password never expires */
const AC_PWD_NEVER_EXPIRES = 0x00010000 ;
/** login requires smartcard */
const AC_SMARTCARD_REQUIRED = 0x00040000 ;
/** account is disabled */
const AC_ACCOUNT_DISABLED = 0x00000002 ;
2015-08-04 18:41:12 +00:00
2020-06-15 13:34:44 +00:00
/** display groups as dn */
const DISPLAY_GROUPS_DN = 'DN' ;
/** display groups as cn */
const DISPLAY_GROUPS_CN = 'CN' ;
2018-06-15 17:03:51 +00:00
/** current group list */
2013-04-13 15:57:32 +00:00
private $groupList = array ();
2018-06-15 17:03:51 +00:00
/** original group list */
2013-04-13 15:57:32 +00:00
private $groupList_orig = array ();
/** cache for groups */
private $groupCache = null ;
2020-02-08 14:43:11 +00:00
/** host cache to reduce LDAP queries */
private $cachedHostList = null ;
2013-04-21 16:41:19 +00:00
/** option for forcing password change, used in postModifyActions */
private $pwdLastSet = null ;
2013-04-21 18:53:39 +00:00
/** clear text password */
private $clearTextPassword ;
2015-11-08 09:59:20 +00:00
/** cache for departments */
private $departmentCache = null ;
2018-10-20 17:44:23 +00:00
/** cache for department numbers */
private $departmentNumberCache = null ;
2015-11-08 09:59:20 +00:00
/** organization cache */
private $oCache = null ;
/** organizational unit cache */
private $ouCache = null ;
/** title cache */
private $titleCache = null ;
/** employee type cache */
private $employeeTypeCache = null ;
/** business category cache */
private $businessCategoryCache = null ;
2015-08-04 18:41:12 +00:00
2018-05-20 07:31:06 +00:00
/** cache for user name */
private $cachedUserNameList = null ;
2018-05-27 16:25:00 +00:00
/** cache for cn */
private $cachedCnList = null ;
2017-05-07 11:26:41 +00:00
2015-08-04 18:41:12 +00:00
2014-04-20 13:00:42 +00:00
/**
* Returns true if this module can manage accounts of the current type , otherwise false .
2015-08-04 18:41:12 +00:00
*
2014-04-20 13:00:42 +00:00
* @ return boolean true if module fits
*/
public function can_manage () {
return in_array ( $this -> get_scope (), array ( 'user' ));
}
2013-04-06 15:00:53 +00:00
/**
* Returns meta data that is interpreted by parent class
*
* @ return array array with meta data
2015-08-04 18:41:12 +00:00
*
2013-04-06 15:00:53 +00:00
* @ see baseModule :: get_metaData ()
*/
public function get_metaData () {
$return = array ();
// icon
$return [ 'icon' ] = 'samba.png' ;
// this is a base module
$return [ " is_base " ] = true ;
2013-04-07 17:28:09 +00:00
// PHP extensions
$return [ 'extensions' ] = array ( 'iconv' );
2013-04-06 15:00:53 +00:00
// RDN attribute
$return [ " RDN " ] = array ( " cn " => " high " );
// LDAP filter
2013-04-13 15:57:32 +00:00
$return [ " ldap_filter " ] = array ( 'and' => '(!(objectClass=computer))' , 'or' => " (objectClass=user) " );
2013-04-06 15:00:53 +00:00
// alias name
$return [ " alias " ] = _ ( " Windows " );
// module dependencies
$return [ 'dependencies' ] = array ( 'depends' => array (), 'conflicts' => array ());
// managed object classes
2013-04-20 08:32:12 +00:00
$return [ 'objectClasses' ] = array ( 'user' , 'securityPrincipal' );
2013-04-06 15:00:53 +00:00
// managed attributes
2013-11-09 13:26:31 +00:00
$return [ 'attributes' ] = array ( 'userPrincipalName' , 'cn' , 'sAMAccountName' , 'description' , 'displayName' , 'givenName' , 'initials' ,
2013-04-06 15:00:53 +00:00
'l' , 'mail' , 'otherTelephone' , 'physicalDeliveryOfficeName' , 'postalCode' , 'postOfficeBox' , 'sn' , 'st' ,
2013-04-13 15:57:32 +00:00
'streetAddress' , 'telephoneNumber' , 'url' , 'wWWHomePage' , 'userAccountControl' , 'profilePath' , 'scriptPath' ,
2015-09-02 16:39:30 +00:00
'pwdLastSet' , 'otherMailbox' , 'homeDirectory' , 'homeDrive' , 'msSFU30Name' , 'msSFU30NisDomain' , 'pwdLastSet' ,
2015-11-07 14:44:34 +00:00
'lastLogonTimestamp' , 'accountExpires' , 'jpegPhoto' , 'title' , 'carLicense' , 'employeeNumber' , 'employeeType' ,
2018-10-20 17:44:23 +00:00
'businessCategory' , 'department' , 'departmentNumber' , 'ou' , 'o' , 'manager' , 'facsimileTelephoneNumber' , 'company' ,
2020-02-08 14:43:11 +00:00
'pager' , 'otherPager' , 'mobile' , 'otherMobile' , 'proxyAddresses' , 'lockoutTime' , 'userWorkstations'
2015-09-02 16:39:30 +00:00
);
2013-04-06 15:00:53 +00:00
// help Entries
$return [ 'help' ] = array (
'cn' => array (
2013-11-09 13:26: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.' )
),
'userPrincipalName' => array (
" Headline " => _ ( 'User name' ), 'attr' => 'userPrincipalName' ,
2013-04-06 15:00:53 +00:00
" Text " => _ ( 'Please enter the user\'s name.' )
),
2013-11-09 13:26:31 +00:00
'userPrincipalNameDomain' => array (
" Headline " => _ ( 'Domain' ), 'attr' => 'userPrincipalName' ,
" Text " => _ ( 'Windows domain name of account.' )
),
'sAMAccountName' => array (
" Headline " => _ ( 'User name (pre W2K)' ), 'attr' => 'sAMAccountName' ,
" Text " => _ ( 'Please enter the user\'s name.' ) . ' ' . _ ( 'This user name is only used for old Windows versions (e.g. NT4, W98).' )
),
2013-04-06 15:00:53 +00:00
'description' => array (
" Headline " => _ ( 'Description' ), 'attr' => 'description' ,
" Text " => _ ( 'Please enter a descriptive text for this user.' )
),
'displayName' => array (
" Headline " => _ ( 'Display name' ), 'attr' => 'displayName' ,
" Text " => _ ( 'This is the account\'s full name on Windows systems.' )
),
'givenName' => array (
" Headline " => _ ( 'First name' ), 'attr' => 'givenName' ,
" Text " => _ ( 'First name of user. Only letters, - and spaces are allowed.' )
),
'initials' => array (
" Headline " => _ ( 'Initials' ), 'attr' => 'initials' ,
" Text " => _ ( 'The initials of the user\'s first names.' )
),
'l' => array (
" Headline " => _ ( 'Location' ), 'attr' => 'l' ,
" Text " => _ ( 'This describes the location of the user.' )
),
'mail' => array (
" Headline " => _ ( 'Email address' ), 'attr' => 'mail' ,
2016-11-20 09:32:13 +00:00
" Text " => _ ( 'The user\'s email address.' )
2013-04-06 15:00:53 +00:00
),
'otherTelephone' => array (
" Headline " => _ ( 'Other telephone numbers' ), 'attr' => 'otherTelephone' ,
" Text " => _ ( 'If the user has multiple telephone numbers then please enter it here.' )
),
2013-04-14 19:19:33 +00:00
'otherTelephoneList' => array (
" Headline " => _ ( 'Other telephone numbers' ), 'attr' => 'otherTelephone' ,
" Text " => _ ( 'If the user has multiple telephone numbers then please enter it here.' ) . ' ' . _ ( " Multiple values are separated by semicolon. " )
),
2013-04-06 15:00:53 +00:00
'physicalDeliveryOfficeName' => array (
" Headline " => _ ( 'Office name' ), 'attr' => 'physicalDeliveryOfficeName' ,
" Text " => _ ( 'The office name of the user (e.g. YourCompany, Human Resources).' )
),
'postalCode' => array (
" Headline " => _ ( 'Postal code' ), 'attr' => 'postalCode' ,
" Text " => _ ( 'The postal code of the user\'s address.' )
),
'postOfficeBox' => array (
" Headline " => _ ( 'Post office box' ), 'attr' => 'postOfficeBox' ,
" Text " => _ ( 'The post office box of the user\'s address.' )
),
'sn' => array (
" Headline " => _ ( 'Last name' ), 'attr' => 'sn' ,
" Text " => _ ( 'Last name of user. Only letters, - and spaces are allowed.' )
),
'st' => array (
" Headline " => _ ( 'State' ), 'attr' => 'st' ,
" Text " => _ ( 'The state where the user resides or works.' )
),
'streetAddress' => array (
" Headline " => _ ( 'Street' ), 'attr' => 'streetAddress' ,
" Text " => _ ( 'The street name of the user\'s address.' )
),
'telephoneNumber' => array (
" Headline " => _ ( 'Telephone number' ), 'attr' => 'telephoneNumber' ,
" Text " => _ ( 'The user\'s telephone number.' )
),
2016-01-03 15:43:28 +00:00
'facsimileTelephoneNumber' => array (
" Headline " => _ ( " Fax number " ), 'attr' => 'facsimileTelephoneNumber' ,
" Text " => _ ( " The user's fax number. " )
),
2013-04-06 15:00:53 +00:00
'url' => array (
" Headline " => _ ( 'Other web sites' ), 'attr' => 'url' ,
" Text " => _ ( 'Here you can enter additional web sites for the user.' )
),
2013-04-14 19:19:33 +00:00
'urlList' => array (
" Headline " => _ ( 'Other web sites' ), 'attr' => 'url' ,
" Text " => _ ( 'Here you can enter additional web sites for the user.' ) . ' ' . _ ( " Multiple values are separated by semicolon. " )
),
2013-04-06 15:00:53 +00:00
'wWWHomePage' => array (
" Headline " => _ ( 'Web site' ), 'attr' => 'wWWHomePage' ,
" Text " => _ ( 'The user\'s web site (e.g. http://www.company.com).' )
),
2013-04-13 15:57:32 +00:00
" deactivated " => array (
" Headline " => _ ( " Account is deactivated " ),
" Text " => _ ( " If checked then the account will be deactivated. " )),
" noExpire " => array (
" Headline " => _ ( " Password does not expire " ),
" Text " => _ ( " If checked password does not expire. " )),
" requireCard " => array (
" Headline " => _ ( " Require smartcard " ),
" Text " => _ ( " The user must log on using a smart card. " )),
" profilePath " => array (
" Headline " => _ ( " Profile path " ), 'attr' => 'profilePath' ,
2016-11-20 09:32:13 +00:00
" Text " => _ ( 'Path of the user profile (UNC-path, e.g. \\\\server\\share\\user).' ) . ' ' . _ ( " Can be left empty. " )
2013-12-28 10:47:50 +00:00
),
2013-04-13 15:57:32 +00:00
" scriptPath " => array (
" Headline " => _ ( " Logon script " ), 'attr' => 'scriptPath' ,
2016-11-20 09:32:13 +00:00
" Text " => _ ( 'File name and path relative to netlogon-share which should be executed on logon.' ) . ' ' . _ ( " Can be left empty. " )
2013-12-28 10:47:50 +00:00
),
2013-04-14 19:19:33 +00:00
" pwdMustChange " => array (
" Headline " => _ ( " Password change at next login " ),
2013-04-13 15:57:32 +00:00
" Text " => _ ( " If you set this option then the user has to change his password at the next login. " )),
2013-04-14 19:19:33 +00:00
" groups " => array (
" Headline " => _ ( " Groups " ),
" Text " => _ ( " Hold the CTRL-key to (de)select multiple groups. " )),
" groupsUpload " => array (
" Headline " => _ ( " Groups " ),
" Text " => _ ( " The groups for this account. You can insert a group name or DN. " ) . ' ' . _ ( " Multiple values are separated by semicolon. " )),
'password' => array (
" Headline " => _ ( " Password " ),
" Text " => _ ( " Please enter the password which you want to set for this account. " )
2013-04-27 17:38:01 +00:00
),
'otherMailbox' => array (
" Headline " => _ ( " Email alias " ), 'attr' => 'otherMailbox' ,
2016-11-20 09:32:13 +00:00
" Text " => _ ( " Email alias for this account. " )
2013-04-27 17:38:01 +00:00
),
'otherMailboxList' => array (
" Headline " => _ ( " Email alias " ), 'attr' => 'otherMailbox' ,
" Text " => _ ( " Email alias for this account. " ) . ' ' . _ ( " Multiple values are separated by semicolon. " )
),
2013-11-09 13:26:31 +00:00
'hiddenOptions' => array (
" Headline " => _ ( " Hidden options " ),
" Text " => _ ( " The selected options will not be managed inside LAM. You can use this to reduce the number of displayed input fields. " )
),
'domains' => array (
" Headline " => _ ( 'Domains' ),
" Text " => _ ( 'Please enter a list of Windows domains that can be selected for your user accounts.' )
),
2013-11-23 14:40:06 +00:00
" homeDrive " => array (
" Headline " => _ ( " Home drive " ), 'attr' => 'homeDrive' ,
" Text " => _ ( " The home directory will be connected under this drive letter. " )),
" homeDirectory " => array (
" Headline " => _ ( " Home directory " ), 'attr' => 'homeDirectory' ,
2013-12-28 10:47:50 +00:00
" Text " => _ ( 'UNC-path (\\\\server\\share\) of home directory. If no home drive is set then this directory must start with a drive letter (e.g. "c:\dir\user").' )
),
2014-02-12 19:39:51 +00:00
'msSFU30Name' => array (
" Headline " => _ ( 'NIS name' ), 'attr' => 'msSFU30Name' ,
" Text " => _ ( 'User name for NIS.' )
),
'msSFU30NisDomain' => array (
" Headline " => _ ( 'NIS domain' ), 'attr' => 'msSFU30NisDomain' ,
" Text " => _ ( 'NIS domain name.' )
),
2015-09-02 16:39:30 +00:00
'pwdLastSet' => array (
" Headline " => _ ( 'Last password change' ), 'attr' => 'pwdLastSet' ,
" Text " => _ ( 'Time of user\'s last password change.' )
),
'lastLogonTimestamp' => array (
" Headline " => _ ( 'Last login' ), 'attr' => 'lastLogonTimestamp' ,
" Text " => _ ( 'Time of user\'s last login.' )
),
2015-11-02 20:53:20 +00:00
'accountExpires' => array (
" Headline " => _ ( 'Account expiration date' ), 'attr' => 'accountExpires' ,
" Text " => _ ( 'This is the date when the account will expire.' )
),
'accountExpiresUpload' => array (
" Headline " => _ ( 'Account expiration date' ), 'attr' => 'accountExpires' ,
" Text " => _ ( 'This is the date when the account will expire. Format: DD-MM-YYYY' )
),
'accountExpiresProfile' => array (
" Headline " => _ ( 'Account expiration' ), 'attr' => 'accountExpires' ,
" Text " => _ ( 'Number of days after which the account will expire.' )
),
2015-11-07 14:44:34 +00:00
'jpegPhoto' => array (
" Headline " => _ ( " Add photo " ), 'attr' => 'jpegPhoto' ,
" Text " => _ ( " Please select an image file to upload. It must be in JPG format (.jpg/.jpeg). " )
),
'title' => array (
" Headline " => _ ( " Job title " ), 'attr' => 'title' ,
" Text " => _ ( " Job title of user: President, department manager, ... " )
),
'carLicense' => array (
" Headline " => _ ( " Car license " ), 'attr' => 'carLicense' ,
" Text " => _ ( " This can be used to specify if the user has a car license. " )
),
'employeeNumber' => array (
" Headline " => _ ( " Employee number " ), 'attr' => 'employeeNumber' ,
" Text " => _ ( " The user's unique employee number. " )
),
'employeeType' => array (
" Headline " => _ ( " Employee type " ), 'attr' => 'employeeType' ,
" Text " => _ ( " Employee type: Contractor, Employee, Intern, Temp, External, ... " )
),
'businessCategory' => array (
" Headline " => _ ( " Business category " ), 'attr' => 'businessCategory' ,
2020-02-24 19:08:28 +00:00
" Text " => _ ( " Business category (e.g. Administration, IT-Services, Management, ...) " )
2015-11-07 14:44:34 +00:00
),
'businessCategoryList' => array (
" Headline " => _ ( " Business category " ), 'attr' => 'businessCategory' ,
2020-02-24 19:08:28 +00:00
" Text " => _ ( " Business category (e.g. Administration, IT-Services, Management, ...) " ) . '. ' . _ ( " Multiple values are separated by semicolon. " )
2015-11-07 14:44:34 +00:00
),
2017-03-04 10:14:17 +00:00
'department' => array (
" Headline " => _ ( " Department " ), 'attr' => 'department' ,
2015-11-07 14:44:34 +00:00
" Text " => _ ( " Here you can enter the user's department. " )
),
2018-10-20 17:44:23 +00:00
'departmentNumber' => array (
" Headline " => _ ( " Department number " ), 'attr' => 'departmentNumber' ,
" Text " => _ ( " Here you can enter the user's department number. " )
),
'departmentNumberList' => array (
" Headline " => _ ( " Department number " ), 'attr' => 'departmentNumber' ,
" Text " => _ ( " Here you can enter the user's department number. " ) . ' ' . _ ( " Multiple values are separated by semicolon. " )
),
2015-11-07 14:44:34 +00:00
'ou' => array (
" Headline " => _ ( " Organisational unit " ), 'attr' => 'ou' ,
" Text " => _ ( " The user's organisational unit. " )
),
'ouList' => array (
" Headline " => _ ( " Organisational unit " ), 'attr' => 'ou' ,
" Text " => _ ( " The user's organisational unit. " ) . ' ' . _ ( 'Multiple values are separated by semicolon.' )
),
'o' => array (
" Headline " => _ ( " Organisation " ), 'attr' => 'o' ,
" Text " => _ ( " The user's organisation name. " )
),
'oList' => array (
" Headline " => _ ( " Organisation " ), 'attr' => 'o' ,
" Text " => _ ( " The user's organisation name. " ) . ' ' . _ ( 'Multiple values are separated by semicolon.' )
),
'manager' => array (
" Headline " => _ ( " Manager " ), 'attr' => 'manager' ,
" Text " => _ ( " This is the LDAP DN of the user's manager. Use this property to represent hierarchies in your company. " )
),
2016-11-09 18:22:43 +00:00
'company' => array (
" Headline " => _ ( 'Company' ), 'attr' => 'company' ,
" Text " => _ ( 'Please enter the company name.' )
),
'pager' => array (
" Headline " => _ ( 'Pager' ), 'attr' => 'pager' ,
" Text " => _ ( 'The user\'s pager number.' )
),
'otherPager' => array (
" Headline " => _ ( 'Other pagers' ), 'attr' => 'otherPager' ,
" Text " => _ ( 'Any secondary pager numbers.' )
),
'otherPagerUpload' => array (
" Headline " => _ ( 'Other pagers' ), 'attr' => 'otherPager' ,
" Text " => _ ( 'Any secondary pager numbers.' ) . ' ' . _ ( 'Multiple values are separated by semicolon.' )
),
'mobile' => array (
" Headline " => _ ( 'Mobile' ), 'attr' => 'mobile' ,
" Text " => _ ( 'The user\'s mobile number.' )
),
'otherMobile' => array (
" Headline " => _ ( 'Other mobiles' ), 'attr' => 'otherMobile' ,
" Text " => _ ( 'Any secondary mobile numbers.' )
),
'otherMobileUpload' => array (
" Headline " => _ ( 'Other mobiles' ), 'attr' => 'otherMobile' ,
" Text " => _ ( 'Any secondary mobile numbers.' ) . ' ' . _ ( 'Multiple values are separated by semicolon.' )
),
2016-11-09 20:46:27 +00:00
'proxyAddresses' => array (
" Headline " => _ ( 'Proxy-Addresses' ), 'attr' => 'proxyAddresses' ,
" Text " => _ ( 'Use this to enter additional email addresses in format "smtp:user@domain.com".' )
),
'proxyAddressesUpload' => array (
" Headline " => _ ( 'Proxy-Addresses' ), 'attr' => 'proxyAddresses' ,
" Text " => _ ( 'Use this to enter additional email addresses in format "smtp:user@domain.com".' ) . ' ' . _ ( 'Multiple values are separated by semicolon.' )
),
2015-11-07 15:43:43 +00:00
'crop' => array (
" Headline " => _ ( 'Image cropping' ),
" Text " => _ ( 'Uploaded images will be cropped to these maximum values.' )
),
'photoUpload' => array (
" Headline " => _ ( " Add photo " ), 'attr' => 'jpegPhoto' ,
" Text " => _ ( " Please select an image file to upload. It must be in JPG format (.jpg/.jpeg). " )
),
2018-11-17 19:40:09 +00:00
'excludeFromGroupSync' => array (
" Headline " => _ ( 'Exclude from group sync' ),
" Text " => _ ( 'Enter one group per line that should be ignored when syncing groups.' )
),
2020-02-08 14:43:11 +00:00
" userWorkstations " => array (
" Headline " => _ ( " Workstations " ), 'attr' => 'userWorkstations' ,
" Text " => _ ( " List of workstations the user is allowed to login. Empty means every workstation. " )
),
" workstations " => array (
" Headline " => _ ( " Workstations " ), 'attr' => 'userWorkstations' ,
" Text " => _ ( " Comma separated list of workstations the user is allowed to login. Empty means every workstation. " ) . ' ' . _ ( " Can be left empty. " )
),
2020-06-15 13:34:44 +00:00
'displayGroups' => array (
" Headline " => _ ( 'Display format' ),
" Text " => _ ( 'Specifies how groups are displayed.' )
),
2013-04-27 17:38:01 +00:00
);
2013-04-06 15:00:53 +00:00
// upload fields
$return [ 'upload_columns' ] = array (
array (
2013-11-09 13:26:31 +00:00
'name' => 'windowsUser_userPrincipalName' ,
2013-04-07 17:28:09 +00:00
'description' => _ ( 'User name' ),
2013-11-09 13:26:31 +00:00
'help' => 'userPrincipalName' ,
2013-04-07 17:28:09 +00:00
'example' => _ ( 'smiller' ),
2013-04-14 19:19:33 +00:00
'required' => true ,
'unique' => true ,
),
array (
'name' => 'windowsUser_password' ,
'description' => _ ( 'Password' ),
'help' => 'password' ,
'example' => _ ( 'secret' ),
),
array (
'name' => 'windowsUser_firstName' ,
'description' => _ ( 'First name' ),
'help' => 'givenName' ,
'example' => _ ( 'Steve' ),
),
array (
'name' => 'windowsUser_lastName' ,
'description' => _ ( 'Last name' ),
'help' => 'sn' ,
'example' => _ ( 'Miller' ),
),
2013-11-09 13:26:31 +00:00
array (
'name' => 'windowsUser_cn' ,
'description' => _ ( 'Common name' ),
'help' => 'cn' ,
'example' => _ ( 'Steve Miller' ),
),
2013-04-14 19:19:33 +00:00
array (
'name' => 'windowsUser_displayName' ,
'description' => _ ( 'Display name' ),
'help' => 'displayName' ,
'example' => _ ( 'Steve Miller' ),
),
array (
'name' => 'windowsUser_initials' ,
'description' => _ ( 'Initials' ),
'help' => 'initials' ,
'example' => _ ( 'S.M.' ),
2013-04-06 15:00:53 +00:00
),
array (
2013-04-07 17:28:09 +00:00
'name' => 'windowsUser_description' ,
2013-04-06 15:00:53 +00:00
'description' => _ ( 'Description' ),
'help' => 'description' ,
2013-08-20 18:56:52 +00:00
'example' => _ ( 'Temp, contract till December' ),
2013-04-14 19:19:33 +00:00
),
array (
'name' => 'windowsUser_streetAddress' ,
'description' => _ ( 'Street' ),
'help' => 'streetAddress' ,
'example' => _ ( 'Mystreetname 42' ),
),
array (
'name' => 'windowsUser_postOfficeBox' ,
'description' => _ ( 'Post office box' ),
'help' => 'postOfficeBox' ,
'example' => _ ( '12345' ),
),
array (
'name' => 'windowsUser_postalCode' ,
'description' => _ ( 'Postal code' ),
'help' => 'postalCode' ,
'example' => _ ( 'GB-12345' ),
2013-04-06 15:00:53 +00:00
),
array (
2013-04-07 17:28:09 +00:00
'name' => 'windowsUser_l' ,
2013-04-06 15:00:53 +00:00
'description' => _ ( 'Location' ),
2013-04-07 17:28:09 +00:00
'help' => 'l' ,
2013-04-06 15:00:53 +00:00
'example' => _ ( 'MyCity' ),
),
2013-04-14 19:19:33 +00:00
array (
'name' => 'windowsUser_state' ,
'description' => _ ( 'State' ),
'help' => 'st' ,
'example' => _ ( 'New York' ),
),
array (
'name' => 'windowsUser_officeName' ,
'description' => _ ( 'Office name' ),
'help' => 'physicalDeliveryOfficeName' ,
'example' => _ ( 'YourCompany' ),
),
array (
'name' => 'windowsUser_mail' ,
'description' => _ ( 'Email address' ),
'help' => 'mail' ,
'example' => _ ( 'user@company.com' ),
),
2013-04-27 17:38:01 +00:00
array (
'name' => 'windowsUser_otherMailbox' ,
'description' => _ ( 'Email alias' ),
'help' => 'otherMailboxList' ,
'example' => _ ( 'user@company.com' ),
),
2013-04-14 19:19:33 +00:00
array (
'name' => 'windowsUser_telephoneNumber' ,
'description' => _ ( 'Telephone number' ),
'help' => 'telephoneNumber' ,
'example' => _ ( '123-124-1234' ),
),
array (
'name' => 'windowsUser_otherTelephone' ,
'description' => _ ( 'Other telephone numbers' ),
'help' => 'otherTelephoneList' ,
'example' => _ ( '123-124-1234' ),
),
array (
'name' => 'windowsUser_webSite' ,
'description' => _ ( 'Web site' ),
'help' => 'wWWHomePage' ,
'example' => _ ( 'http://www.company.com' ),
),
array (
'name' => 'windowsUser_otherWebSites' ,
'description' => _ ( 'Other web sites' ),
'help' => 'urlList' ,
'example' => _ ( 'http://www.company.com' ),
),
array (
'name' => 'windowsUser_deactivated' ,
'description' => _ ( 'Account is deactivated' ),
'help' => 'deactivated' ,
'example' => _ ( 'no' ),
'default' => _ ( 'no' ),
'values' => _ ( 'yes' ) . ', ' . _ ( 'no' )
),
array (
'name' => 'windowsUser_noExpire' ,
'description' => _ ( 'Password does not expire' ),
'help' => 'noExpire' ,
'example' => _ ( 'no' ),
'default' => _ ( 'no' ),
'values' => _ ( 'yes' ) . ', ' . _ ( 'no' )
),
2015-11-02 20:53:20 +00:00
array (
'name' => 'windowsUser_accountExpires' ,
'description' => _ ( 'Account expiration date' ),
'help' => 'accountExpiresUpload' ,
2015-11-30 18:26:26 +00:00
'example' => '21-11-2030' ,
2015-11-02 20:53:20 +00:00
),
2013-04-14 19:19:33 +00:00
array (
'name' => 'windowsUser_requireCard' ,
'description' => _ ( 'Require smartcard' ),
'help' => 'requireCard' ,
'example' => _ ( 'no' ),
'default' => _ ( 'no' ),
'values' => _ ( 'yes' ) . ', ' . _ ( 'no' )
),
array (
'name' => 'windowsUser_pwdMustChange' ,
'description' => _ ( 'Password change at next login' ),
'help' => 'pwdMustChange' ,
'example' => _ ( 'no' ),
'default' => _ ( 'no' ),
'values' => _ ( 'yes' ) . ', ' . _ ( 'no' )
),
array (
'name' => 'windowsUser_profilePath' ,
'description' => _ ( 'Profile path' ),
'help' => 'profilePath' ,
'example' => _ ( '\\\\server\\profiles\\smiller' ),
),
array (
'name' => 'windowsUser_scriptPath' ,
'description' => _ ( 'Logon script' ),
'help' => 'scriptPath' ,
'example' => 'logon.bat' ,
),
2013-11-23 14:40:06 +00:00
array (
'name' => 'windowsUser_homeDrive' ,
'description' => _ ( 'Home drive' ),
'help' => 'homeDrive' ,
'example' => 'K:'
),
array (
'name' => 'windowsUser_homeDirectory' ,
'description' => _ ( 'Home directory' ),
'help' => 'homeDirectory' ,
'example' => _ ( '\\\\server\\homes\\smiller' )
),
2013-04-14 19:19:33 +00:00
array (
'name' => 'windowsUser_groups' ,
'description' => _ ( 'Groups' ),
'help' => 'groupsUpload' ,
),
2013-04-06 15:00:53 +00:00
);
2016-11-09 20:46:27 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideproxyAddresses' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_proxyAddresses' ,
'description' => _ ( 'Proxy-Addresses' ),
'help' => 'proxyAddressesUpload' ,
'example' => _ ( 'smtp:user@example.com' )
);
}
2016-01-03 15:43:28 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidefacsimileTelephoneNumber' )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_facsimileTelephoneNumber' ,
'description' => _ ( 'Fax number' ),
'help' => 'facsimileTelephoneNumber' ,
'example' => _ ( '123-123-1236' )
);
}
2016-11-09 18:22:43 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidepager' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_pager' ,
'description' => _ ( 'Pager' ),
'help' => 'pager' ,
'example' => _ ( '123-123-1236' )
);
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideotherPager' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_otherPager' ,
'description' => _ ( 'Other pagers' ),
'help' => 'otherPagerUpload' ,
'example' => _ ( '123-123-1236' )
);
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemobile' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_mobile' ,
'description' => _ ( 'Mobile' ),
'help' => 'mobile' ,
'example' => _ ( '123-123-1235' )
);
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideotherMobile' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_otherMobile' ,
'description' => _ ( 'Other mobiles' ),
'help' => 'otherMobileUpload' ,
'example' => _ ( '123-123-1235' )
);
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidecompany' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_company' ,
'description' => _ ( 'Company' ),
'help' => 'company' ,
);
}
2013-11-09 13:26:31 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidesAMAccountName' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_sAMAccountName' ,
'description' => _ ( 'User name (pre W2K)' ),
'help' => 'sAMAccountName' ,
'example' => _ ( 'smiller' ),
'unique' => true ,
);
}
2014-02-12 19:39:51 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemsSFU30Name' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_msSFU30Name' ,
'description' => _ ( 'NIS name' ),
'help' => 'msSFU30Name' ,
'example' => _ ( 'smiller' ),
);
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemsSFU30NisDomain' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_msSFU30NisDomain' ,
'description' => _ ( 'NIS domain' ),
'help' => 'msSFU30NisDomain' ,
'example' => _ ( 'domain' ),
);
}
2015-11-07 14:44:34 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidetitle' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_title' ,
'description' => _ ( 'Job title' ),
'help' => 'title' ,
'example' => _ ( 'President' ),
);
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidecarLicense' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_carLicense' ,
'description' => _ ( 'Car license' ),
'help' => 'carLicense' ,
'example' => _ ( 'yes' ),
);
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideemployeeNumber' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_employeeNumber' ,
'description' => _ ( 'Employee number' ),
'help' => 'employeeNumber' ,
'example' => '123456' ,
);
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideemployeeType' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_employeeType' ,
'description' => _ ( 'Employee type' ),
'help' => 'employeeType' ,
'example' => _ ( 'Temp' ),
);
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidebusinessCategory' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_businessCategory' ,
'description' => _ ( 'Business category' ),
'help' => 'businessCategoryList' ,
'example' => _ ( 'Administration' ),
);
}
2017-03-04 10:14:17 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartment' , true )) {
2015-11-07 14:44:34 +00:00
$return [ 'upload_columns' ][] = array (
2017-03-04 10:14:17 +00:00
'name' => 'windowsUser_department' ,
2015-11-07 14:44:34 +00:00
'description' => _ ( 'Department' ),
2017-03-04 10:14:17 +00:00
'help' => 'department' ,
2015-11-07 14:44:34 +00:00
'example' => _ ( 'Administration' ),
);
}
2018-10-20 17:44:23 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartmentNumber' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_departmentNumber' ,
'description' => _ ( 'Department number' ),
'help' => 'departmentNumberList' ,
'example' => 'A123' ,
);
}
2015-11-07 14:44:34 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideou' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_ou' ,
'description' => _ ( 'Organisational unit' ),
'help' => 'ouList' ,
'example' => _ ( 'Administration' ),
);
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideo' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_o' ,
'description' => _ ( 'Organisation' ),
'help' => 'oList' ,
'example' => _ ( 'YourCompany' ),
);
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemanager' , true )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_manager' ,
'description' => _ ( 'Manager' ),
'help' => 'manager' ,
'example' => _ ( 'uid=smiller,ou=People,dc=company,dc=com' ),
);
}
2020-02-08 14:43:11 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideWorkstations' )) {
$return [ 'upload_columns' ][] = array (
'name' => 'windowsUser_workstations' ,
'description' => _ ( 'Workstations' ),
'help' => 'workstations' ,
'example' => 'PC01,PC02,PC03'
);
}
2013-12-28 10:47:50 +00:00
// profile options
2018-05-19 09:14:31 +00:00
$profileContainer = new htmlResponsiveRow ();
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Common name' ), 'windowsUser_cn' , null , 'cn' ), 12 );
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Display name' ), 'windowsUser_displayName' , null , 'displayName' ), 12 );
2020-02-11 20:13:47 +00:00
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Street' ), 'windowsUser_streetAddress' , null , 'streetAddress' ), 12 );
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Post office box' ), 'windowsUser_postOfficeBox' , null , 'postOfficeBox' ), 12 );
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Postal code' ), 'windowsUser_postalCode' , null , 'postalCode' ), 12 );
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Location' ), 'windowsUser_l' , null , 'l' ), 12 );
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'State' ), 'windowsUser_st' , null , 'st' ), 12 );
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Office name' ), 'windowsUser_physicalDeliveryOfficeName' , null , 'physicalDeliveryOfficeName' ), 12 );
2018-05-19 09:14:31 +00:00
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Email address' ), 'windowsUser_mail' , null , 'mail' ), 12 );
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Email alias' ), 'windowsUser_otherMailbox' , null , 'otherMailboxList' ), 12 );
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Logon script' ), 'windowsUser_scriptPath' , null , 'scriptPath' ), 12 );
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Profile path' ), 'windowsUser_profilePath' , null , 'profilePath' ), 12 );
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Home directory' ), 'windowsUser_homeDirectory' , null , 'homeDirectory' ), 12 );
2014-02-12 19:39:51 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemsSFU30NisDomain' , true )) {
2018-05-19 09:14:31 +00:00
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'NIS domain' ), 'windowsUser_msSFU30NisDomain' , null , 'msSFU30NisDomain' ), 12 );
2014-02-12 19:39:51 +00:00
}
2018-05-19 09:14:31 +00:00
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Account expiration' ), 'windowsUser_accountExpires' , null , 'accountExpiresProfile' ), 12 );
2016-11-09 18:22:43 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidecompany' , true )) {
2018-05-19 09:14:31 +00:00
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Company' ), 'windowsUser_company' , null , 'company' ), 12 );
2016-11-09 18:22:43 +00:00
}
2017-03-04 10:14:17 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartment' , true )) {
2018-05-19 09:14:31 +00:00
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Department' ), 'windowsUser_department' , null , 'department' ), 12 );
2015-11-07 14:44:34 +00:00
}
2018-10-20 17:44:23 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartmentNumber' , true )) {
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Department number' ), 'windowsUser_departmentNumber' , null , 'departmentNumberList' ), 12 );
}
2015-11-07 14:44:34 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideou' , true )) {
2018-05-19 09:14:31 +00:00
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Organisational unit' ), 'windowsUser_ou' , null , 'ouList' ), 12 );
2015-11-07 14:44:34 +00:00
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideo' , true )) {
2018-05-19 09:14:31 +00:00
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Organisation' ), 'windowsUser_o' , null , 'oList' ), 12 );
2015-11-07 14:44:34 +00:00
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidetitle' , true )) {
2018-05-19 09:14:31 +00:00
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Job title' ), 'windowsUser_title' , null , 'title' ), 12 );
2015-11-07 14:44:34 +00:00
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideemployeeType' , true )) {
2018-05-19 09:14:31 +00:00
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Employee type' ), 'windowsUser_employeeType' , null , 'employeeType' ), 12 );
2015-11-07 14:44:34 +00:00
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidebusinessCategory' , true )) {
2018-05-19 09:14:31 +00:00
$profileContainer -> add ( new htmlResponsiveInputField ( _ ( 'Business category' ), 'windowsUser_businessCategory' , null , 'businessCategory' ), 12 );
2015-11-07 14:44:34 +00:00
}
2013-12-28 10:47:50 +00:00
$return [ 'profile_options' ] = $profileContainer ;
2015-11-08 16:33:08 +00:00
// profile mappings
$return [ 'profile_mappings' ] = array (
'windowsUser_displayName' => 'displayName' ,
'windowsUser_cn' => 'cn' ,
2020-02-11 20:13:47 +00:00
'windowsUser_streetAddress' => 'streetAddress' ,
'windowsUser_postOfficeBox' => 'postOfficeBox' ,
'windowsUser_postalCode' => 'postalCode' ,
'windowsUser_l' => 'l' ,
'windowsUser_st' => 'st' ,
'windowsUser_physicalDeliveryOfficeName' => 'physicalDeliveryOfficeName' ,
2015-11-08 16:33:08 +00:00
'windowsUser_mail' => 'mail' ,
'windowsUser_scriptPath' => 'scriptPath' ,
'windowsUser_profilePath' => 'profilePath' ,
'windowsUser_homeDirectory' => 'homeDirectory' ,
2016-11-09 18:22:43 +00:00
'windowsUser_company' => 'company' ,
2020-02-11 20:13:47 +00:00
'windowsUser_homeDrive' => 'homeDrive' ,
2015-11-08 16:33:08 +00:00
);
2020-02-08 14:43:11 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideWorkstations' )) {
$return [ 'profile_mappings' ][ 'windowsUser_userWorkstations' ] = 'userWorkstations' ;
}
2015-11-08 16:33:08 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemsSFU30NisDomain' , true )) {
$return [ 'profile_mappings' ][ 'windowsUser_msSFU30NisDomain' ] = 'msSFU30NisDomain' ;
}
2015-11-02 20:53:20 +00:00
// profile checks
$return [ 'profile_checks' ][ 'windowsUser_accountExpires' ] = array (
'type' => 'ext_preg' ,
'regex' => 'digit' ,
'error_message' => $this -> messages [ 'accountExpires' ][ 0 ]);
2015-11-07 14:44:34 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidetitle' , true )) {
$return [ 'profile_checks' ][ 'windowsUser_title' ] = array (
'type' => 'ext_preg' ,
'regex' => 'title' ,
'error_message' => $this -> messages [ 'title' ][ 0 ]);
$return [ 'profile_mappings' ][ 'windowsUser_title' ] = 'title' ;
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideemployeeType' , true )) {
$return [ 'profile_checks' ][ 'windowsUser_employeeType' ] = array (
'type' => 'ext_preg' ,
'regex' => 'employeeType' ,
'error_message' => $this -> messages [ 'employeeType' ][ 0 ]);
$return [ 'profile_mappings' ][ 'windowsUser_employeeType' ] = 'employeeType' ;
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidebusinessCategory' , true )) {
$return [ 'profile_checks' ][ 'windowsUser_businessCategory' ] = array (
'type' => 'ext_preg' ,
'regex' => 'businessCategory' ,
'error_message' => $this -> messages [ 'businessCategory' ][ 0 ]);
$return [ 'profile_mappings' ][ 'windowsUser_businessCategory' ] = 'businessCategory' ;
}
2013-04-06 15:00:53 +00:00
// available PDF fields
$return [ 'PDF_fields' ] = array (
2013-11-09 13:26:31 +00:00
'userPrincipalName' => _ ( 'User name' ),
'cn' => _ ( 'Common name' ),
2013-04-06 15:00:53 +00:00
'description' => _ ( 'Description' ),
'displayName' => _ ( 'Display name' ),
'givenName' => _ ( 'First name' ),
'initials' => _ ( 'Initials' ),
'l' => _ ( 'Location' ),
'mail' => _ ( 'Email address' ),
2013-04-27 17:38:01 +00:00
'otherMailbox' => _ ( 'Email alias' ),
2013-04-06 15:00:53 +00:00
'otherTelephone' => _ ( 'Other telephone numbers' ),
'physicalDeliveryOfficeName' => _ ( 'Office name' ),
'postalCode' => _ ( 'Postal code' ),
'postOfficeBox' => _ ( 'Post office box' ),
'sn' => _ ( 'Last name' ),
'st' => _ ( 'State' ),
'streetAddress' => _ ( 'Street' ),
'telephoneNumber' => _ ( 'Telephone number' ),
'url' => _ ( 'Other web sites' ),
'wWWHomePage' => _ ( 'Web site' ),
2013-04-14 19:19:33 +00:00
'deactivated' => _ ( 'Account is deactivated' ),
'noExpire' => _ ( 'Password does not expire' ),
'requireCard' => _ ( 'Require smartcard' ),
'profilePath' => _ ( 'Profile path' ),
'scriptPath' => _ ( 'Logon script' ),
'pwdMustChange' => _ ( 'Password change at next login' ),
'groups' => _ ( 'Groups' ),
2013-04-21 18:53:39 +00:00
'password' => _ ( 'Password' ),
2013-11-23 14:40:06 +00:00
'homeDrive' => _ ( 'Home drive' ),
'homeDirectory' => _ ( 'Home directory' ),
2015-11-02 20:53:20 +00:00
'accountExpires' => _ ( 'Account expiration date' ),
2013-04-06 15:00:53 +00:00
);
2020-02-08 14:43:11 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideWorkstations' )) {
$return [ 'PDF_fields' ][ 'userWorkstations' ] = _ ( 'Workstations' );
}
2016-11-09 20:46:27 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideproxyAddresses' , true )) {
$return [ 'PDF_fields' ][ 'proxyAddresses' ] = _ ( 'Proxy-Addresses' );
}
2016-01-03 15:43:28 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidefacsimileTelephoneNumber' )) {
$return [ 'PDF_fields' ][ 'facsimileTelephoneNumber' ] = _ ( 'Fax number' );
}
2013-11-09 13:26:31 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidesAMAccountName' , true )) {
$return [ 'PDF_fields' ][ 'sAMAccountName' ] = _ ( 'User name (pre W2K)' );
}
2014-02-12 19:39:51 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemsSFU30Name' , true )) {
$return [ 'PDF_fields' ][ 'msSFU30Name' ] = _ ( 'NIS name' );
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemsSFU30NisDomain' , true )) {
$return [ 'PDF_fields' ][ 'msSFU30NisDomain' ] = _ ( 'NIS domain' );
}
2015-09-02 16:39:30 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidepwdLastSet' )) {
$return [ 'PDF_fields' ][ 'pwdLastSet' ] = _ ( 'Last password change' );
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidelastLogonTimestamp' )) {
$return [ 'PDF_fields' ][ 'lastLogonTimestamp' ] = _ ( 'Last login' );
}
2015-11-07 14:44:34 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidetitle' , true )) {
$return [ 'PDF_fields' ][ 'title' ] = _ ( 'Job title' );
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidecarLicense' , true )) {
$return [ 'PDF_fields' ][ 'carLicense' ] = _ ( 'Car license' );
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideemployeeNumber' , true )) {
$return [ 'PDF_fields' ][ 'employeeNumber' ] = _ ( 'Employee number' );
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideemployeeType' , true )) {
$return [ 'PDF_fields' ][ 'employeeType' ] = _ ( 'Employee type' );
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidebusinessCategory' , true )) {
$return [ 'PDF_fields' ][ 'businessCategory' ] = _ ( 'Business category' );
}
2017-03-04 10:14:17 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartment' , true )) {
$return [ 'PDF_fields' ][ 'department' ] = _ ( 'Department' );
2015-11-07 14:44:34 +00:00
}
2018-10-20 17:44:23 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartmentNumber' , true )) {
$return [ 'PDF_fields' ][ 'departmentNumber' ] = _ ( 'Department number' );
}
2015-11-07 14:44:34 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideou' , true )) {
$return [ 'PDF_fields' ][ 'ou' ] = _ ( 'Organisational unit' );
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideo' , true )) {
$return [ 'PDF_fields' ][ 'o' ] = _ ( 'Organisation' );
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemanager' , true )) {
$return [ 'PDF_fields' ][ 'manager' ] = _ ( 'Manager' );
}
2016-11-09 18:22:43 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidecompany' , true )) {
$return [ 'PDF_fields' ][ 'company' ] = _ ( 'Company' );
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidepager' , true )) {
$return [ 'PDF_fields' ][ 'pager' ] = _ ( 'Pager' );
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideotherPager' , true )) {
$return [ 'PDF_fields' ][ 'otherPager' ] = _ ( 'Other pagers' );
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemobile' , true )) {
$return [ 'PDF_fields' ][ 'mobile' ] = _ ( 'Mobile' );
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideotherMobile' , true )) {
$return [ 'PDF_fields' ][ 'otherMobile' ] = _ ( 'Other mobiles' );
}
2013-04-20 12:52:30 +00:00
// self service search attributes
2015-11-07 14:44:34 +00:00
$return [ 'selfServiceSearchAttributes' ] = array ( 'sAMAccountName' , 'userPrincipalName' ,
'employeeNumber'
);
2013-04-20 12:52:30 +00:00
// self service field settings
$return [ 'selfServiceFieldSettings' ] = array (
'physicalDeliveryOfficeName' => _ ( 'Office name' ),
'telephoneNumber' => _ ( 'Telephone number' ),
2016-01-03 15:43:28 +00:00
'facsimileTelephoneNumber' => _ ( 'Fax number' ),
2013-04-20 12:52:30 +00:00
'wWWHomePage' => _ ( 'Web site' ),
'streetAddress' => _ ( 'Street' ),
'st' => _ ( 'State' ),
'l' => _ ( 'Location' ),
'postOfficeBox' => _ ( 'Post office box' ),
'postalCode' => _ ( 'Postal code' ),
2015-09-02 16:39:30 +00:00
'unicodePwd' => _ ( 'Password' ),
2015-11-02 20:53:20 +00:00
'pwdLastSet' => _ ( 'Last password change (read-only)' ),
'accountExpires' => _ ( 'Account expiration date (read-only)' ),
2017-03-04 10:14:17 +00:00
'department' => _ ( 'Department' ),
2018-10-20 17:44:23 +00:00
'departmentNumber' => _ ( 'Department number' ),
2019-01-16 19:52:59 +00:00
'proxyAddresses' => _ ( 'Proxy-Addresses (read-only)' ),
2019-03-03 12:18:02 +00:00
'otherMailbox' => _ ( 'Email alias (read-only)' ),
2013-04-20 12:52:30 +00:00
);
// possible self service read-only fields
$return [ 'selfServiceReadOnlyFields' ] = array ( 'physicalDeliveryOfficeName' , 'telephoneNumber' ,
2018-10-20 17:44:23 +00:00
'facsimileTelephoneNumber' , 'wWWHomePage' , 'streetAddress' , 'st' , 'l' , 'postOfficeBox' ,
'departmentNumber' , 'postalCode' );
2013-04-06 15:00:53 +00:00
return $return ;
}
2015-08-04 18:41:12 +00:00
2013-04-13 15:57:32 +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 );
$this -> groupList = array ();
$this -> groupList_orig = array ();
}
2013-04-06 15:00:53 +00:00
/**
* This function fills the $messages variable with output messages from this module .
*/
public function load_Messages () {
2013-11-09 13:26:31 +00:00
$this -> messages [ 'userPrincipalName' ][ 0 ] = array ( 'ERROR' , _ ( 'User name' ), _ ( 'User name contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and .-_ !' ));
$this -> messages [ 'userPrincipalName' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_userPrincipalName' , _ ( 'User name contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and .-_ !' ));
2018-05-20 07:31:06 +00:00
$this -> messages [ 'userPrincipalName' ][ 2 ] = array ( 'ERROR' , _ ( 'User name already exists!' ));
2018-08-18 08:57:42 +00:00
$this -> messages [ 'userPrincipalName' ][ 3 ] = array ( 'WARN' , _ ( 'Account %s:' ) . ' windowsUser_userPrincipalName' , _ ( 'User name already exists!' ));
2013-11-09 13:26:31 +00:00
$this -> messages [ 'cn' ][ 0 ] = array ( 'ERROR' , _ ( 'Common name' ), _ ( 'Please enter a valid common name!' ));
$this -> messages [ 'cn' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_cn' , _ ( 'Please enter a valid common name!' ));
2018-05-27 16:25:00 +00:00
$this -> messages [ 'cn' ][ 2 ] = array ( 'WARN' , _ ( 'Common name already exists.' ));
$this -> messages [ 'cn' ][ 3 ] = array ( 'WARN' , _ ( 'Account %s:' ) . ' windowsUser_cn' , _ ( 'Common name already exists.' ));
2013-11-09 13:26:31 +00:00
$this -> messages [ 'sAMAccountName' ][ 0 ] = array ( 'ERROR' , _ ( 'User name (pre W2K)' ), _ ( 'User name contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and .-_ !' ));
$this -> messages [ 'sAMAccountName' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_sAMAccountName' , _ ( 'User name contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and .-_ !' ));
2013-04-06 15:00:53 +00:00
$this -> messages [ 'displayName' ][ 0 ] = array ( 'ERROR' , _ ( 'Display name' ), _ ( 'Please enter a valid display name!' ));
$this -> messages [ 'displayName' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_displayName' , _ ( 'Please enter a valid display name!' ));
$this -> messages [ 'givenName' ][ 0 ] = array ( 'ERROR' , _ ( 'First name' ), _ ( 'First name contains invalid characters!' ));
$this -> messages [ 'givenName' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_givenName' , _ ( 'First name contains invalid characters!' ));
$this -> messages [ 'sn' ][ 0 ] = array ( 'ERROR' , _ ( 'Last name' ), _ ( 'Last name contains invalid characters or is empty!' ));
$this -> messages [ 'sn' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_sn' , _ ( 'Last name contains invalid characters or is empty!' ));
$this -> messages [ 'telephoneNumber' ][ 0 ] = array ( 'ERROR' , _ ( 'Telephone number' ), _ ( 'Please enter a valid telephone number!' ));
$this -> messages [ 'telephoneNumber' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_telephone' , _ ( 'Please enter a valid telephone number!' ));
2016-01-03 15:43:28 +00:00
$this -> messages [ 'facsimileTelephoneNumber' ][ 0 ] = array ( 'ERROR' , _ ( 'Fax number' ), _ ( 'Please enter a valid fax number!' ));
$this -> messages [ 'facsimileTelephoneNumber' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_facsimileTelephoneNumber' , _ ( 'Please enter a valid fax number!' ));
2013-04-06 15:00:53 +00:00
$this -> messages [ 'otherTelephone' ][ 0 ] = array ( 'ERROR' , _ ( 'Other telephone numbers' ), _ ( 'Please enter a valid telephone number!' ));
$this -> messages [ 'otherTelephone' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_otherTelephone' , _ ( 'Please enter a valid telephone number!' ));
2016-11-09 18:22:43 +00:00
$this -> messages [ 'pager' ][ 0 ] = array ( 'ERROR' , _ ( 'Pager' ), _ ( 'Please enter a valid telephone number!' ));
$this -> messages [ 'pager' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_pager' , _ ( 'Please enter a valid telephone number!' ));
$this -> messages [ 'otherPager' ][ 0 ] = array ( 'ERROR' , _ ( 'Other pagers' ), _ ( 'Please enter a valid telephone number!' ));
$this -> messages [ 'otherPager' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_otherPager' , _ ( 'Please enter a valid telephone number!' ));
$this -> messages [ 'mobile' ][ 0 ] = array ( 'ERROR' , _ ( 'Mobile' ), _ ( 'Please enter a valid telephone number!' ));
$this -> messages [ 'mobile' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_mobile' , _ ( 'Please enter a valid telephone number!' ));
$this -> messages [ 'otherMobile' ][ 0 ] = array ( 'ERROR' , _ ( 'Other mobiles' ), _ ( 'Please enter a valid telephone number!' ));
$this -> messages [ 'otherMobile' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_otherMobile' , _ ( 'Please enter a valid telephone number!' ));
2013-04-06 15:00:53 +00:00
$this -> messages [ 'postalCode' ][ 0 ] = array ( 'ERROR' , _ ( 'Postal code' ), _ ( 'Please enter a valid postal code!' ));
$this -> messages [ 'postalCode' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_postalCode' , _ ( 'Please enter a valid postal code!' ));
$this -> messages [ 'mail' ][ 0 ] = array ( 'ERROR' , _ ( 'Email address' ), _ ( 'Please enter a valid email address!' ));
$this -> messages [ 'mail' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_mail' , _ ( 'Please enter a valid email address!' ));
2018-05-22 17:55:49 +00:00
$this -> messages [ 'mail' ][ 2 ] = array ( 'WARN' , _ ( 'Email address' ), _ ( 'Email "%s" already in use.' ));
$this -> messages [ 'mail' ][ 3 ] = array ( 'WARN' , _ ( 'Account %s:' ) . ' windowsUser_mail' , _ ( 'Email "%s" already in use.' ));
2013-04-27 17:38:01 +00:00
$this -> messages [ 'otherMailbox' ][ 0 ] = array ( 'ERROR' , _ ( 'Email alias' ), _ ( 'Email alias is invalid!' ));
$this -> messages [ 'otherMailbox' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_otherMailbox' , _ ( 'Email alias is invalid!' ));
2018-05-22 17:55:49 +00:00
$this -> messages [ 'otherMailbox' ][ 2 ] = array ( 'WARN' , _ ( 'Email alias' ), _ ( 'Email alias "%s" already in use.' ));
$this -> messages [ 'otherMailbox' ][ 3 ] = array ( 'WARN' , _ ( 'Account %s:' ) . ' windowsUser_otherMailbox' , _ ( 'Email alias "%s" already in use.' ));
2013-04-13 15:57:32 +00:00
$this -> messages [ 'profilePath' ][ 0 ] = array ( 'ERROR' , _ ( 'Profile path' ), _ ( 'Profile path is invalid!' ));
$this -> messages [ 'profilePath' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_profilePath' , _ ( 'Profile path is invalid!' ));
$this -> messages [ 'scriptPath' ][ 0 ] = array ( 'ERROR' , _ ( 'Logon script' ), _ ( 'Logon script is invalid!' ));
$this -> messages [ 'scriptPath' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_scriptPath' , _ ( 'Logon script is invalid!' ));
2013-04-20 12:52:30 +00:00
$this -> messages [ 'unicodePwd' ][ 0 ] = array ( 'ERROR' , _ ( 'Password' ), _ ( 'Please enter the same password in both password fields.' ));
$this -> messages [ 'unicodePwd' ][ 1 ] = array ( 'ERROR' , _ ( 'Password' ), _ ( 'Password contains invalid characters. Valid characters are:' ) . ' a-z, A-Z, 0-9 and #*,.;:_-+!%&/|?{[()]}=@$ §°!' );
2013-11-23 14:40:06 +00:00
$this -> messages [ 'homeDrive' ][ 0 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_homeDrive' , _ ( 'Please enter a valid drive letter.' ));
$this -> messages [ 'homeDirectory' ][ 0 ] = array ( 'ERROR' , _ ( 'Home directory' ), _ ( 'Homedirectory contains invalid characters.' ));
$this -> messages [ 'homeDirectory' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_homeDirectory' , _ ( 'Homedirectory contains invalid characters.' ));
2014-02-12 19:39:51 +00:00
$this -> messages [ 'msSFU30Name' ][ 0 ] = array ( 'ERROR' , _ ( 'NIS name' ), _ ( 'NIS name contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and .-_ !' ));
$this -> messages [ 'msSFU30Name' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_msSFU30Name' , _ ( 'NIS name contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and .-_ !' ));
2015-11-02 20:53:20 +00:00
$this -> messages [ 'accountExpires' ][ 0 ] = array ( 'ERROR' , _ ( 'Account expiration' ), _ ( 'Please enter a number.' ));
$this -> messages [ 'accountExpires' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_accountExpires' , _ ( 'Please enter a valid date in format DD-MM-YYYY.' ));
2015-11-07 14:44:34 +00:00
$this -> messages [ 'title' ][ 0 ] = array ( 'ERROR' , _ ( 'Job title' ), _ ( 'Please enter a valid job title!' ));
$this -> messages [ 'title' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_title' , _ ( 'Please enter a valid job title!' ));
$this -> messages [ 'employeeType' ][ 0 ] = array ( 'ERROR' , _ ( 'Employee type' ), _ ( 'Please enter a valid employee type!' ));
$this -> messages [ 'employeeType' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_employeeType' , _ ( 'Please enter a valid employee type!' ));
$this -> messages [ 'businessCategory' ][ 0 ] = array ( 'ERROR' , _ ( 'Business category' ), _ ( 'Please enter a valid business category!' ));
$this -> messages [ 'businessCategory' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_businessCategory' , _ ( 'Please enter a valid business category!' ));
2015-11-08 16:33:08 +00:00
$this -> messages [ 'manager' ][ 0 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_manager' , _ ( 'This is not a valid DN!' ));
2015-11-07 15:43:43 +00:00
$this -> messages [ 'file' ][ 0 ] = array ( 'ERROR' , _ ( 'No file selected.' ));
$this -> messages [ 'file' ][ 1 ] = array ( 'ERROR' , _ ( 'Please upload a .jpg/.jpeg file.' ));
$this -> messages [ 'file' ][ 2 ] = array ( 'ERROR' , _ ( 'Unable to process this file.' ));
$this -> messages [ 'file' ][ 3 ] = array ( 'ERROR' , _ ( 'File is too large. Maximum allowed size is %s kB.' ));
2020-02-08 14:43:11 +00:00
$this -> messages [ 'workstations' ][ 0 ] = array ( 'ERROR' , _ ( 'Workstations' ), _ ( 'Please enter a comma separated list of host names!' ));
$this -> messages [ 'workstations' ][ 1 ] = array ( 'ERROR' , _ ( 'Account %s:' ) . ' windowsUser_workstations' , _ ( 'Please enter a comma separated list of host names!' ));
2013-04-13 15:57:32 +00:00
}
2015-08-04 18:41:12 +00:00
2013-04-13 15:57:32 +00:00
/**
* This function loads all needed LDAP attributes .
*
* @ param array $attr list of attributes
*/
function load_attributes ( $attr ) {
parent :: load_attributes ( $attr );
// get group memberships
$groupList = searchLDAPByAttribute ( 'member' , $this -> getAccountContainer () -> dn_orig , 'group' , array ( 'dn' ), array ( 'group' ));
$this -> groupList_orig = array ();
for ( $i = 0 ; $i < sizeof ( $groupList ); $i ++ ) {
$this -> groupList_orig [] = $groupList [ $i ][ 'dn' ];
}
$this -> groupList_orig = array_values ( array_unique ( $this -> groupList_orig ));
$this -> groupList = $this -> groupList_orig ;
2013-04-06 15:00:53 +00:00
}
2015-08-04 18:41:12 +00:00
2013-04-21 18:53:39 +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
* < br > " info " are values with informational value ( e . g . to be used later by pre / postModify actions )
*/
public function save_attributes () {
$return = parent :: save_attributes ();
// add information about clear text password and password status change
$return [ $this -> getAccountContainer () -> dn_orig ][ 'info' ][ 'userPasswordClearText' ][ 0 ] = $this -> clearTextPassword ;
return $return ;
}
2013-04-06 15:00:53 +00:00
/**
* Returns the HTML meta data for the main account page .
2015-08-04 18:41:12 +00:00
*
2013-04-06 15:00:53 +00:00
* @ return htmlElement HTML meta data
*/
public function display_html_attributes () {
2015-11-08 09:59:20 +00:00
$this -> initCache ();
2019-09-26 17:44:17 +00:00
$containerLeft = new htmlResponsiveRow ();
2013-04-13 15:57:32 +00:00
if ( $this -> getAccountContainer () -> isNewAccount && ! isset ( $this -> attributes [ 'userAccountControl' ][ 0 ])) {
$this -> attributes [ 'userAccountControl' ][ 0 ] = windowsUser :: DEFAULT_ACCOUNT_CONTROL ;
}
2019-09-26 17:44:17 +00:00
$containerLeft -> add ( new htmlSubTitle ( _ ( 'General' )), 12 );
2013-11-09 13:26:31 +00:00
// user name
$userPrincipalName = '' ;
$userPrincipalNameDomain = '' ;
$domains = $this -> getDomains ();
$domains [] = '' ;
if ( ! empty ( $this -> attributes [ 'userPrincipalName' ][ 0 ])) {
$parts = explode ( '@' , $this -> attributes [ 'userPrincipalName' ][ 0 ]);
$userPrincipalName = $parts [ 0 ];
if ( ! empty ( $parts [ 1 ])) {
$userPrincipalNameDomain = $parts [ 1 ];
if ( ! in_array ( $userPrincipalNameDomain , $domains )) {
$domains [] = $userPrincipalNameDomain ;
}
}
}
$userPrincipalNameLabel = new htmlOutputText ( _ ( 'User name' ));
$userPrincipalNameLabel -> setMarkAsRequired ( true );
2019-09-26 17:44:17 +00:00
$containerLeft -> addLabel ( $userPrincipalNameLabel );
2013-11-09 13:26:31 +00:00
$userPrincipalNameGroup = new htmlGroup ();
$userPrincipalNameGroup -> addElement ( new htmlInputField ( 'userPrincipalName' , $userPrincipalName , '15' ));
$userPrincipalNameGroup -> addElement ( new htmlSelect ( 'userPrincipalNameDomain' , $domains , array ( $userPrincipalNameDomain )));
2019-09-26 17:44:17 +00:00
$userPrincipalNameGroup -> addElement ( new htmlHelpLink ( 'userPrincipalName' ));
$containerLeft -> addField ( $userPrincipalNameGroup );
2013-11-09 13:26:31 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidesAMAccountName' , true )) {
$this -> addSimpleInputTextField ( $containerLeft , 'sAMAccountName' , _ ( 'User name (pre W2K)' ));
}
2013-04-13 15:57:32 +00:00
$this -> addSimpleInputTextField ( $containerLeft , 'givenName' , _ ( 'First name' ));
$this -> addSimpleInputTextField ( $containerLeft , 'sn' , _ ( 'Last name' ));
2013-11-09 13:26:31 +00:00
$this -> addSimpleInputTextField ( $containerLeft , 'cn' , _ ( 'Common name' ), true );
2013-04-13 15:57:32 +00:00
$this -> addSimpleInputTextField ( $containerLeft , 'displayName' , _ ( 'Display name' ));
$this -> addSimpleInputTextField ( $containerLeft , 'initials' , _ ( 'Initials' ));
$this -> addSimpleInputTextField ( $containerLeft , 'description' , _ ( 'Description' ));
2015-11-08 09:59:20 +00:00
// address area
2019-09-26 17:44:17 +00:00
$containerLeft -> add ( new htmlSubTitle ( _ ( 'Address' )), 12 );
2013-04-13 15:57:32 +00:00
$this -> addSimpleInputTextField ( $containerLeft , 'streetAddress' , _ ( 'Street' ), false , 20 , true );
$this -> addSimpleInputTextField ( $containerLeft , 'postOfficeBox' , _ ( 'Post office box' ));
$this -> addSimpleInputTextField ( $containerLeft , 'postalCode' , _ ( 'Postal code' ));
$this -> addSimpleInputTextField ( $containerLeft , 'l' , _ ( 'Location' ));
$this -> addSimpleInputTextField ( $containerLeft , 'st' , _ ( 'State' ));
$this -> addSimpleInputTextField ( $containerLeft , 'physicalDeliveryOfficeName' , _ ( 'Office name' ));
2015-11-08 09:59:20 +00:00
// contact data area
2019-09-26 17:44:17 +00:00
$containerLeft -> add ( new htmlSubTitle ( _ ( 'Contact data' )), 12 );
2013-04-13 15:57:32 +00:00
$this -> addSimpleInputTextField ( $containerLeft , 'mail' , _ ( 'Email address' ));
2013-04-27 17:38:01 +00:00
$this -> addMultiValueInputTextField ( $containerLeft , 'otherMailbox' , _ ( 'Email alias' ));
2016-11-09 20:46:27 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideproxyAddresses' , true )) {
$this -> addMultiValueInputTextField ( $containerLeft , 'proxyAddresses' , _ ( 'Proxy-Addresses' ));
}
2013-04-13 15:57:32 +00:00
$this -> addSimpleInputTextField ( $containerLeft , 'telephoneNumber' , _ ( 'Telephone number' ));
$this -> addMultiValueInputTextField ( $containerLeft , 'otherTelephone' , _ ( 'Other telephone numbers' ));
2016-11-09 18:22:43 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemobile' , true )) {
$this -> addSimpleInputTextField ( $containerLeft , 'mobile' , _ ( 'Mobile' ));
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideotherMobile' , true )) {
$this -> addMultiValueInputTextField ( $containerLeft , 'otherMobile' , _ ( 'Other mobiles' ));
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidepager' , true )) {
$this -> addSimpleInputTextField ( $containerLeft , 'pager' , _ ( 'Pager' ));
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideotherPager' , true )) {
$this -> addMultiValueInputTextField ( $containerLeft , 'otherPager' , _ ( 'Other pagers' ));
}
2016-01-03 15:43:28 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidefacsimileTelephoneNumber' )) {
$this -> addSimpleInputTextField ( $containerLeft , 'facsimileTelephoneNumber' , _ ( 'Fax number' ));
}
2013-04-13 15:57:32 +00:00
$this -> addSimpleInputTextField ( $containerLeft , 'wWWHomePage' , _ ( 'Web site' ));
$this -> addMultiValueInputTextField ( $containerLeft , 'url' , _ ( 'Other web sites' ));
2015-11-08 09:59:20 +00:00
// work details area
if ( $this -> manageWorkDetails ()) {
2019-09-26 17:44:17 +00:00
$containerLeft -> add ( new htmlSubTitle ( _ ( 'Work details' )), 12 );
2015-11-08 09:59:20 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidetitle' , true )) {
$this -> addSimpleInputTextField ( $containerLeft , 'title' , _ ( 'Job title' ), false , null , false , array_slice ( $this -> titleCache , 0 , 300 ));
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidecarLicense' , true )) {
$this -> addSimpleInputTextField ( $containerLeft , 'carLicense' , _ ( 'Car license' ));
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideemployeeNumber' , true )) {
$this -> addSimpleInputTextField ( $containerLeft , 'employeeNumber' , _ ( 'Employee number' ));
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideemployeeType' , true )) {
$this -> addSimpleInputTextField ( $containerLeft , 'employeeType' , _ ( 'Employee type' ), false , null , false , array_slice ( $this -> employeeTypeCache , 0 , 300 ));
}
2015-11-08 10:00:40 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidebusinessCategory' , true )) {
2015-11-08 09:59:20 +00:00
$this -> addMultiValueInputTextField ( $containerLeft , 'businessCategory' , _ ( 'Business category' ), false , null , false , array_slice ( $this -> businessCategoryCache , 0 , 300 ));
}
2016-11-09 18:22:43 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidecompany' , true )) {
$this -> addSimpleInputTextField ( $containerLeft , 'company' , _ ( 'Company' ));
}
2017-03-04 10:14:17 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartment' , true )) {
$this -> addSimpleInputTextField ( $containerLeft , 'department' , _ ( 'Department' ), false , null , false , array_slice ( $this -> departmentCache , 0 , 300 ));
2015-11-08 09:59:20 +00:00
}
2018-10-20 17:44:23 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartmentNumber' , true )) {
$this -> addMultiValueInputTextField ( $containerLeft , 'departmentNumber' , _ ( 'Department number' ), false , null , false , array_slice ( $this -> departmentNumberCache , 0 , 300 ));
}
2015-11-08 10:00:40 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideou' , true )) {
2015-11-08 09:59:20 +00:00
$this -> addMultiValueInputTextField ( $containerLeft , 'ou' , _ ( 'Organisational unit' ), false , null , false , array_slice ( $this -> ouCache , 0 , 300 ));
}
2015-11-08 10:00:40 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideo' , true )) {
2015-11-08 09:59:20 +00:00
$this -> addMultiValueInputTextField ( $containerLeft , 'o' , _ ( 'Organisation' ), false , null , false , array_slice ( $this -> oCache , 0 , 300 ));
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemanager' , true )) {
2019-09-26 17:44:17 +00:00
$containerLeft -> addLabel ( new htmlOutputText ( _ ( 'Manager' )));
2015-11-08 09:59:20 +00:00
$managerGroup = new htmlGroup ();
$managerVal = ( empty ( $this -> attributes [ 'manager' ][ 0 ])) ? '-' : getAbstractDN ( $this -> attributes [ 'manager' ][ 0 ]);
$managerGroup -> addElement ( new htmlOutputText ( $managerVal ));
2019-09-26 17:44:17 +00:00
$managerGroup -> addElement ( new htmlSpacer ( '0.5rem' , null ));
2015-11-08 09:59:20 +00:00
$managerGroup -> addElement ( new htmlAccountPageButton ( get_class ( $this ), 'manager' , 'change' , _ ( " Change " )));
2019-09-26 17:44:17 +00:00
$managerGroup -> addElement ( new htmlSpacer ( '0.5rem' , null ));
$managerGroup -> addElement ( new htmlHelpLink ( 'manager' ), true );
$containerLeft -> addField ( $managerGroup );
2015-11-08 09:59:20 +00:00
}
}
// account area
2019-09-26 17:44:17 +00:00
$containerLeft -> add ( new htmlSubTitle ( _ ( 'Account' )), 12 );
2013-04-13 15:57:32 +00:00
// password change required
$pwdMustChange = false ;
if ( isset ( $this -> attributes [ 'pwdLastSet' ][ 0 ]) && ( $this -> attributes [ 'pwdLastSet' ][ 0 ] === '0' )) {
$pwdMustChange = true ;
}
2019-09-26 17:44:17 +00:00
$containerLeft -> add ( new htmlResponsiveInputCheckbox ( 'forcePasswordChangeOption' , $pwdMustChange , _ ( " User must change password " ), 'pwdMustChange' ), 12 );
2013-04-13 15:57:32 +00:00
// deactivated
$deactivated = windowsUser :: isDeactivated ( $this -> attributes );
2019-09-26 17:44:17 +00:00
$containerLeft -> add ( new htmlResponsiveInputCheckbox ( 'deactivated' , $deactivated , _ ( " Account is deactivated " ), 'deactivated' ), 12 );
2013-04-13 15:57:32 +00:00
// password does not expire
$noExpire = windowsUser :: isNeverExpiring ( $this -> attributes );
2019-09-26 17:44:17 +00:00
$containerLeft -> add ( new htmlResponsiveInputCheckbox ( 'noExpire' , $noExpire , _ ( " Password does not expire " ), 'noExpire' ), 12 );
2013-04-13 15:57:32 +00:00
// require smartcard
$requireCard = windowsUser :: isSmartCardRequired ( $this -> attributes );
2019-09-26 17:44:17 +00:00
$containerLeft -> add ( new htmlResponsiveInputCheckbox ( 'requireCard' , $requireCard , _ ( " Require smartcard " ), 'requireCard' ), 12 );
2015-11-02 20:53:20 +00:00
// account expiration
2019-09-26 17:44:17 +00:00
$containerLeft -> addLabel ( new htmlOutputText ( _ ( 'Account expiration date' )));
2015-11-02 20:53:20 +00:00
$accountExpiresGroup = new htmlGroup ();
$accountExpiresGroup -> addElement ( new htmlOutputText ( $this -> formatAccountExpires ()));
2019-09-26 17:44:17 +00:00
$accountExpiresGroup -> addElement ( new htmlSpacer ( '0.5rem' , null ));
2015-11-02 20:53:20 +00:00
$accountExpiresGroup -> addElement ( new htmlAccountPageButton ( get_class ( $this ), 'accountExpires' , 'edit' , _ ( 'Change' )));
2019-09-26 17:44:17 +00:00
$accountExpiresGroup -> addElement ( new htmlSpacer ( '0.5rem' , null ));
$accountExpiresGroup -> addElement ( new htmlHelpLink ( 'accountExpires' ), true );
$containerLeft -> addField ( $accountExpiresGroup );
2015-09-02 16:39:30 +00:00
// last password change
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidepwdLastSet' )) {
2019-09-26 17:44:17 +00:00
$containerLeft -> addLabel ( new htmlOutputText ( _ ( 'Last password change' )));
$pwdLastSetGroup = new htmlGroup ();
$pwdLastSetGroup -> addElement ( new htmlOutputText ( $this -> formatPwdLastSet ()));
$pwdLastSetGroup -> addElement ( new htmlSpacer ( '0.5rem' , null ));
$pwdLastSetGroup -> addElement ( new htmlHelpLink ( 'pwdLastSet' ));
$containerLeft -> addField ( $pwdLastSetGroup );
2015-09-02 16:39:30 +00:00
}
// last login
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidelastLogonTimestamp' )) {
2019-09-26 17:44:17 +00:00
$containerLeft -> addLabel ( new htmlOutputText ( _ ( 'Last login' )));
$lastLogonTimestampGroup = new htmlGroup ();
$lastLogonTimestampGroup -> addElement ( new htmlOutputText ( $this -> formatLastLogonTimestamp ()));
$lastLogonTimestampGroup -> addElement ( new htmlSpacer ( '0.5rem' , null ));
$lastLogonTimestampGroup -> addElement ( new htmlHelpLink ( 'lastLogonTimestamp' ));
$containerLeft -> addField ( $lastLogonTimestampGroup );
2015-09-02 16:39:30 +00:00
}
2020-02-08 14:43:11 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideWorkstations' )) {
$containerLeft -> addLabel ( new htmlOutputText ( _ ( 'Workstations' )));
$userWorkstationsGroup = new htmlGroup ();
$userWorkstationsGroup -> addElement ( new htmlAccountPageButton ( get_class ( $this ), 'userWorkstations' , 'open' , _ ( 'Edit workstations' )));
$userWorkstationsGroup -> addElement ( new htmlSpacer ( '0.5rem' , null ));
$userWorkstationsGroup -> addElement ( new htmlHelpLink ( 'userWorkstations' ));
$containerLeft -> addField ( $userWorkstationsGroup );
}
2015-11-08 09:59:20 +00:00
// user profile area
2019-09-26 17:44:17 +00:00
$containerLeft -> add ( new htmlSubTitle ( _ ( 'User profile' )), 12 );
2013-04-13 15:57:32 +00:00
// profile path
$this -> addSimpleInputTextField ( $containerLeft , 'profilePath' , _ ( 'Profile path' ));
// logon script
$this -> addSimpleInputTextField ( $containerLeft , 'scriptPath' , _ ( 'Logon script' ));
2013-11-23 14:40:06 +00:00
// home drive
$drives = array ( '-' );
2018-12-29 14:49:42 +00:00
for ( $i = 90 ; $i > 67 ; $i -- ) {
$drives [] = chr ( $i ) . ':' ;
}
2013-11-23 14:40:06 +00:00
if ( ! empty ( $this -> attributes [ 'homeDrive' ][ 0 ])) {
$selected = array ( strtoupper ( $this -> attributes [ 'homeDrive' ][ 0 ]));
}
else {
$selected = array ( '-' );
}
2019-09-26 17:44:17 +00:00
$containerLeft -> add ( new htmlResponsiveSelect ( 'homeDrive' , $drives , $selected , _ ( 'Home drive' ), 'homeDrive' ), 12 );
2013-11-23 14:40:06 +00:00
// home directory
2014-07-26 12:44:32 +00:00
$this -> addSimpleInputTextField ( $containerLeft , 'homeDirectory' , _ ( 'Home directory' ));
2015-08-04 18:41:12 +00:00
2014-02-12 19:39:51 +00:00
// NIS attributes
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemsSFU30Name' , true ) || ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemsSFU30NisDomain' , true )) {
2019-09-26 17:44:17 +00:00
$containerLeft -> add ( new htmlSubTitle ( _ ( 'NIS' )), 12 );
2014-02-12 19:39:51 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemsSFU30Name' , true )) {
$this -> addSimpleInputTextField ( $containerLeft , 'msSFU30Name' , _ ( 'NIS name' ));
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemsSFU30NisDomain' , true )) {
$this -> addSimpleInputTextField ( $containerLeft , 'msSFU30NisDomain' , _ ( 'NIS domain' ));
}
}
2015-08-04 18:41:12 +00:00
2019-09-26 17:44:17 +00:00
$containerRight = new htmlResponsiveRow ();
2015-11-07 15:43:43 +00:00
// photo
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidejpegPhoto' , true )) {
$photoFile = '../../graphics/userDefault.png' ;
$noPhoto = true ;
if ( isset ( $this -> attributes [ 'jpegPhoto' ][ 0 ])) {
$jpeg_filename = 'jpg' . getRandomNumber () . '.jpg' ;
$outjpeg = @ fopen ( dirname ( __FILE__ ) . '/../../tmp/' . $jpeg_filename , " wb " );
fwrite ( $outjpeg , $this -> attributes [ 'jpegPhoto' ][ 0 ]);
fclose ( $outjpeg );
$photoFile = '../../tmp/' . $jpeg_filename ;
$noPhoto = false ;
}
$img = new htmlImage ( $photoFile );
$img -> setCSSClasses ( array ( 'photo' ));
2018-10-28 16:18:47 +00:00
$img -> enableLightbox ();
2019-09-26 17:44:17 +00:00
$containerRight -> add ( $img , 12 );
$containerRight -> addVerticalSpacer ( '0.5rem' );
2015-11-07 15:43:43 +00:00
if ( $noPhoto ) {
2019-09-26 17:44:17 +00:00
$containerRight -> add ( new htmlAccountPageButton ( get_class ( $this ), 'photo' , 'open' , _ ( 'Add photo' )), 12 );
2015-11-07 15:43:43 +00:00
}
else {
2019-09-26 17:44:17 +00:00
$containerRight -> add ( new htmlButton ( 'delPhoto' , _ ( 'Delete photo' )), 12 );
2015-11-07 15:43:43 +00:00
}
2019-09-26 17:44:17 +00:00
$containerRight -> addVerticalSpacer ( '2rem' );
2015-11-07 15:43:43 +00:00
}
// groups
2019-09-26 17:44:17 +00:00
$containerRight -> add ( new htmlSubTitle ( _ ( 'Groups' )), 12 );
$containerRight -> add ( new htmlAccountPageButton ( get_class ( $this ), 'group' , 'edit' , _ ( 'Edit groups' )), 12 );
$containerRight -> addVerticalSpacer ( '1rem' );
2013-04-13 15:57:32 +00:00
$groupsList = new htmlGroup ();
2020-06-15 13:34:44 +00:00
$groupNames = array ();
if ( $this -> groupDisplayContainsDn ()) {
usort ( $this -> groupList , 'compareDN' );
2013-04-13 15:57:32 +00:00
}
2020-06-15 13:34:44 +00:00
foreach ( $this -> groupList as $groupDn ) {
$groupCn = extractRDNValue ( $groupDn );
$groupNames [] = $this -> formatGroupName ( $groupCn , $groupDn );
}
if ( ! $this -> groupDisplayContainsDn ()) {
natcasesort ( $groupNames );
}
foreach ( $groupNames as $cn ) {
2013-04-13 15:57:32 +00:00
$groupsList -> addElement ( new htmlOutputText ( $cn ));
$groupsList -> addElement ( new htmlOutputText ( '<br>' , false ));
}
2020-06-15 13:34:44 +00:00
$groupsListClass = $this -> groupDisplayContainsDn () ? 'rightToLeftText' : '' ;
$groupsListDiv = new htmlDiv ( null , $groupsList , array ( $groupsListClass ));
$containerRight -> add ( $groupsListDiv , 12 );
2015-08-04 18:41:12 +00:00
2019-09-26 17:44:17 +00:00
$container = new htmlResponsiveRow ();
2020-06-15 13:34:44 +00:00
$container -> add ( $containerLeft , 12 , 12 , 7 );
$container -> add ( new htmlSpacer ( '1rem' , null ), 0 , 0 , 1 );
$container -> add ( $containerRight , 12 , 12 , 4 );
2013-04-06 15:00:53 +00:00
return $container ;
}
2020-06-15 13:34:44 +00:00
/**
* Formats a group name for the display .
*
* @ param string $cn common name
* @ param string $dn DN
* @ return string formatted name
*/
private function formatGroupName ( $cn , $dn ) {
$mode = empty ( $this -> moduleSettings [ 'windowsUser_displayGroups' ][ 0 ]) ? 'dn' : $this -> moduleSettings [ 'windowsUser_displayGroups' ][ 0 ];
switch ( $mode ) {
case self :: DISPLAY_GROUPS_CN :
return $cn ;
break ;
case self :: DISPLAY_GROUPS_DN :
default :
return getAbstractDN ( $dn );
break ;
}
}
/**
* Returns if the group display name contains the DN .
*
* @ return bool contains DN .
*/
private function groupDisplayContainsDn () {
$mode = empty ( $this -> moduleSettings [ 'windowsUser_displayGroups' ][ 0 ]) ? 'dn' : $this -> moduleSettings [ 'windowsUser_displayGroups' ][ 0 ];
return ( $mode == self :: DISPLAY_GROUPS_DN );
}
2015-11-08 09:59:20 +00:00
/**
* Returns if any of the work details attributes should be managed .
*
* @ return boolean has any work attributes to manage
*/
private function manageWorkDetails () {
$allHidden = $this -> isBooleanConfigOptionSet ( 'windowsUser_hidetitle' , true )
&& $this -> isBooleanConfigOptionSet ( 'windowsUser_hidecarLicense' , true )
&& $this -> isBooleanConfigOptionSet ( 'windowsUser_hideemployeeNumber' , true )
&& $this -> isBooleanConfigOptionSet ( 'windowsUser_hideemployeeType' , true )
&& $this -> isBooleanConfigOptionSet ( 'windowsUser_hidebusinessCategory' , true )
2017-03-04 10:14:17 +00:00
&& $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartment' , true )
2018-10-20 17:44:23 +00:00
&& $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartmentNumber' , true )
2015-11-08 09:59:20 +00:00
&& $this -> isBooleanConfigOptionSet ( 'windowsUser_hideou' , true )
&& $this -> isBooleanConfigOptionSet ( 'windowsUser_hideo' , true )
2016-11-09 18:22:43 +00:00
&& $this -> isBooleanConfigOptionSet ( 'windowsUser_hidecompany' , true )
2015-11-08 09:59:20 +00:00
&& $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemanager' , true );
return ! $allHidden ;
}
2013-04-06 15:00:53 +00:00
/**
* 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
*/
public function process_attributes () {
$return = array ();
2016-11-20 09:32:13 +00:00
$keysToReplace = array ( 'cn' , 'displayName' , 'mail' , 'otherMailbox' ,
'profilePath' , 'scriptPath' , 'homeDirectory' );
$this -> getAccountContainer () -> replaceWildcardsInPOST ( $keysToReplace );
2013-11-09 13:26:31 +00:00
// user name
$userPrincipalName = $_POST [ 'userPrincipalName' ];
if ( ! get_preg ( $userPrincipalName , 'username' )) {
$return [] = $this -> messages [ 'userPrincipalName' ][ 0 ];
}
if ( ! empty ( $_POST [ 'userPrincipalNameDomain' ])) {
$userPrincipalName .= '@' . $_POST [ 'userPrincipalNameDomain' ];
}
$this -> attributes [ 'userPrincipalName' ][ 0 ] = $userPrincipalName ;
2018-05-20 07:31:06 +00:00
if ( $this -> getAccountContainer () -> isNewAccount ) {
$existingUsers = $this -> getUserNames ();
if ( array_key_exists ( $userPrincipalName , $existingUsers )) {
$return [] = $this -> messages [ 'userPrincipalName' ][ 2 ];
}
}
2013-04-06 15:00:53 +00:00
// cn
$this -> attributes [ 'cn' ][ 0 ] = $_POST [ 'cn' ];
2013-11-09 13:26:31 +00:00
if ( empty ( $this -> attributes [ 'cn' ][ 0 ])) {
$cn = '' ;
if ( ! empty ( $_POST [ 'givenName' ])) {
$cn = $_POST [ 'givenName' ];
}
if ( ! empty ( $_POST [ 'sn' ])) {
$cn .= ' ' . $_POST [ 'sn' ];
}
$this -> attributes [ 'cn' ][ 0 ] = trim ( $cn );
}
if ( ! get_preg ( $this -> attributes [ 'cn' ][ 0 ], 'cn' )) {
2013-04-06 15:00:53 +00:00
$return [] = $this -> messages [ 'cn' ][ 0 ];
}
2018-05-27 16:25:00 +00:00
if ( $this -> getAccountContainer () -> isNewAccount && ! empty ( $this -> attributes [ 'cn' ][ 0 ])) {
$existingCns = $this -> getCns ();
if ( array_key_exists ( $this -> attributes [ 'cn' ][ 0 ], $existingCns )) {
$return [] = $this -> messages [ 'cn' ][ 2 ];
}
}
2013-11-09 13:26:31 +00:00
// sAMAccountName
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidesAMAccountName' , true )) {
if ( $this -> getAccountContainer () -> isNewAccount && ! isset ( $this -> attributes [ 'sAMAccountName' ]) && empty ( $_POST [ 'sAMAccountName' ])) {
$this -> attributes [ 'sAMAccountName' ][ 0 ] = $_POST [ 'userPrincipalName' ];
}
else {
$this -> attributes [ 'sAMAccountName' ][ 0 ] = $_POST [ 'sAMAccountName' ];
}
if ( ! empty ( $this -> attributes [ 'sAMAccountName' ][ 0 ]) && ! get_preg ( $this -> attributes [ 'sAMAccountName' ][ 0 ], 'username' )) {
$return [] = $this -> messages [ 'sAMAccountName' ][ 0 ];
}
}
2014-07-26 12:44:32 +00:00
elseif ( $this -> getAccountContainer () -> isNewAccount && ! empty ( $_POST [ 'userPrincipalName' ])) {
// set sAMAccountName to user name if attribute input field is not visible (W2012 requires this attribute)
$this -> attributes [ 'sAMAccountName' ][ 0 ] = $_POST [ 'userPrincipalName' ];
}
2013-04-06 15:00:53 +00:00
// description
$this -> attributes [ 'description' ][ 0 ] = $_POST [ 'description' ];
// display name
$this -> attributes [ 'displayName' ][ 0 ] = $_POST [ 'displayName' ];
2013-12-28 10:47:50 +00:00
if ( ! empty ( $this -> attributes [ 'displayName' ][ 0 ]) && ! get_preg ( $this -> attributes [ 'displayName' ][ 0 ], 'realname' )) {
2013-04-06 15:00:53 +00:00
$return [] = $this -> messages [ 'displayName' ][ 0 ];
}
2013-11-09 13:26:31 +00:00
if ( empty ( $this -> attributes [ 'displayName' ][ 0 ]) && ! empty ( $this -> attributes [ 'cn' ][ 0 ])) {
$this -> attributes [ 'displayName' ][ 0 ] = $this -> attributes [ 'cn' ][ 0 ];
}
2013-04-06 15:00:53 +00:00
// first name
$this -> attributes [ 'givenName' ][ 0 ] = $_POST [ 'givenName' ];
if ( ! empty ( $this -> attributes [ 'givenName' ][ 0 ]) && ! get_preg ( $_POST [ 'givenName' ], 'realname' )) {
$return [] = $this -> messages [ 'givenName' ][ 0 ];
}
// initials
$this -> attributes [ 'initials' ][ 0 ] = $_POST [ 'initials' ];
// location
$this -> attributes [ 'l' ][ 0 ] = $_POST [ 'l' ];
// email
$this -> attributes [ 'mail' ][ 0 ] = $_POST [ 'mail' ];
2013-12-28 10:47:50 +00:00
if ( ! empty ( $this -> attributes [ 'mail' ][ 0 ]) && ! get_preg ( $this -> attributes [ 'mail' ][ 0 ], 'email' )) {
2013-04-06 15:00:53 +00:00
$return [] = $this -> messages [ 'mail' ][ 0 ];
}
2018-05-22 17:55:49 +00:00
elseif ( ! empty ( $this -> attributes [ 'mail' ][ 0 ]) && $this -> getAccountContainer () -> isNewAccount ) {
$existingMailAccounts = searchLDAPByAttribute ( 'mail' , $this -> attributes [ 'mail' ][ 0 ], 'user' , array ( 'mail' ), array ( 'user' ));
if ( ! empty ( $existingMailAccounts )) {
$msg = $this -> messages [ 'mail' ][ 2 ];
$msg [] = array ( $this -> attributes [ 'mail' ][ 0 ]);
$return [] = $msg ;
}
}
2013-04-27 17:38:01 +00:00
// email aliases
$this -> processMultiValueInputTextField ( 'otherMailbox' , $return , 'email' );
2018-05-22 17:55:49 +00:00
if ( ! empty ( $this -> attributes [ 'otherMailbox' ][ 0 ]) && $this -> getAccountContainer () -> isNewAccount ) {
foreach ( $this -> attributes [ 'otherMailbox' ] as $otherMailbox ) {
$existingMailAccounts = searchLDAPByAttribute ( 'otherMailbox' , $otherMailbox , 'user' , array ( 'otherMailbox' ), array ( 'user' ));
if ( ! empty ( $existingMailAccounts )) {
$msg = $this -> messages [ 'otherMailbox' ][ 2 ];
$msg [] = array ( $otherMailbox );
$return [] = $msg ;
}
}
}
2013-04-06 15:00:53 +00:00
// other telephones
$this -> processMultiValueInputTextField ( 'otherTelephone' , $return , 'telephone' );
2016-01-03 15:43:28 +00:00
// fax number
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidefacsimileTelephoneNumber' )) {
$this -> attributes [ 'facsimileTelephoneNumber' ][ 0 ] = $_POST [ 'facsimileTelephoneNumber' ];
if ( ! get_preg ( $_POST [ 'facsimileTelephoneNumber' ], 'telephone' )) {
$return [] = $this -> messages [ 'facsimileTelephoneNumber' ][ 0 ];
}
}
2013-04-06 15:00:53 +00:00
// office name
$this -> attributes [ 'physicalDeliveryOfficeName' ][ 0 ] = $_POST [ 'physicalDeliveryOfficeName' ];
// postal code
$this -> attributes [ 'postalCode' ][ 0 ] = $_POST [ 'postalCode' ];
if ( ! get_preg ( $_POST [ 'postalCode' ], 'postalCode' )) {
$return [] = $this -> messages [ 'postalCode' ][ 0 ];
}
// post office box
$this -> attributes [ 'postOfficeBox' ][ 0 ] = $_POST [ 'postOfficeBox' ];
// last name
$this -> attributes [ 'sn' ][ 0 ] = $_POST [ 'sn' ];
if ( ! empty ( $this -> attributes [ 'sn' ][ 0 ]) && ! get_preg ( $_POST [ 'sn' ], 'realname' )) {
$return [] = $this -> messages [ 'sn' ][ 0 ];
}
// state
$this -> attributes [ 'st' ][ 0 ] = $_POST [ 'st' ];
// street
$this -> attributes [ 'streetAddress' ][ 0 ] = $_POST [ 'streetAddress' ];
// telephone
$this -> attributes [ 'telephoneNumber' ][ 0 ] = $_POST [ 'telephoneNumber' ];
if ( ! get_preg ( $_POST [ 'telephoneNumber' ], 'telephone' )) {
$return [] = $this -> messages [ 'telephoneNumber' ][ 0 ];
}
// other web sites
$this -> processMultiValueInputTextField ( 'url' , $return );
// web site
$this -> attributes [ 'wWWHomePage' ][ 0 ] = $_POST [ 'wWWHomePage' ];
2013-04-13 15:57:32 +00:00
// password must be changed
2013-04-21 16:41:19 +00:00
if ( isset ( $_POST [ 'forcePasswordChangeOption' ]) && ( $_POST [ 'forcePasswordChangeOption' ] == 'on' )) {
2013-04-13 15:57:32 +00:00
$this -> attributes [ 'pwdLastSet' ][ 0 ] = '0' ;
}
else {
if ( isset ( $this -> orig [ 'pwdLastSet' ][ 0 ]) && ( $this -> orig [ 'pwdLastSet' ][ 0 ] !== '0' )) {
$this -> attributes [ 'pwdLastSet' ][ 0 ] = $this -> orig [ 'pwdLastSet' ][ 0 ];
}
else {
$this -> attributes [ 'pwdLastSet' ][ 0 ] = '-1' ;
}
}
2013-04-21 16:41:19 +00:00
// save pwdLastSet for postModifyActions
$this -> pwdLastSet = null ;
2018-12-29 14:49:42 +00:00
if ( isset ( $this -> attributes [ 'pwdLastSet' ][ 0 ])
&& ( ! isset ( $this -> orig [ 'pwdLastSet' ][ 0 ]) || ( $this -> orig [ 'pwdLastSet' ][ 0 ] != $this -> attributes [ 'pwdLastSet' ][ 0 ]))) {
$this -> pwdLastSet = $this -> attributes [ 'pwdLastSet' ][ 0 ];
2013-04-21 16:41:19 +00:00
}
2013-04-13 15:57:32 +00:00
// deactivated
$deactivated = isset ( $_POST [ 'deactivated' ]) && ( $_POST [ 'deactivated' ] == 'on' );
2013-04-20 08:32:12 +00:00
windowsUser :: setIsDeactivated ( $deactivated );
2013-04-13 15:57:32 +00:00
// no expire
$noExpire = isset ( $_POST [ 'noExpire' ]) && ( $_POST [ 'noExpire' ] == 'on' );
windowsUser :: setIsNeverExpiring ( $this -> attributes , $noExpire );
// smartcard required
$requireCard = isset ( $_POST [ 'requireCard' ]) && ( $_POST [ 'requireCard' ] == 'on' );
windowsUser :: setIsSmartCardRequired ( $this -> attributes , $requireCard );
// profile path
$this -> attributes [ 'profilePath' ][ 0 ] = $_POST [ 'profilePath' ];
if ( ! ( $this -> attributes [ 'profilePath' ][ 0 ] == '' ) && ! get_preg ( $this -> attributes [ 'profilePath' ][ 0 ], 'UNC' )) {
$return [] = $this -> messages [ 'profilePath' ][ 0 ];
}
// logon script
$this -> attributes [ 'scriptPath' ][ 0 ] = $_POST [ 'scriptPath' ];
if (( $this -> attributes [ 'scriptPath' ][ 0 ] != '' ) && ( ! get_preg ( $this -> attributes [ 'scriptPath' ][ 0 ], 'logonscript' ))) {
$return [] = $this -> messages [ 'scriptPath' ][ 0 ];
2013-04-07 17:28:09 +00:00
}
2013-11-23 14:40:06 +00:00
// home drive
if ( $_POST [ 'homeDrive' ] == " - " ) {
$this -> attributes [ 'homeDrive' ][ 0 ] = '' ;
}
else {
$this -> attributes [ 'homeDrive' ][ 0 ] = $_POST [ 'homeDrive' ];
}
// home directory
$this -> attributes [ 'homeDirectory' ][ 0 ] = $_POST [ 'homeDirectory' ];
if ( ! empty ( $this -> attributes [ 'homeDrive' ][ 0 ]) && ! get_preg ( $this -> attributes [ 'homeDirectory' ][ 0 ], 'UNC' )) {
$return [] = $this -> messages [ 'homeDirectory' ][ 0 ];
}
2014-02-12 19:39:51 +00:00
// NIS name
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemsSFU30Name' , true )) {
if ( $this -> getAccountContainer () -> isNewAccount && ! isset ( $this -> attributes [ 'msSFU30Name' ]) && empty ( $_POST [ 'msSFU30Name' ])) {
$this -> attributes [ 'msSFU30Name' ][ 0 ] = $_POST [ 'userPrincipalName' ];
}
else {
$this -> attributes [ 'msSFU30Name' ][ 0 ] = $_POST [ 'msSFU30Name' ];
}
if ( ! empty ( $this -> attributes [ 'msSFU30Name' ][ 0 ]) && ! get_preg ( $this -> attributes [ 'msSFU30Name' ][ 0 ], 'username' )) {
$return [] = $this -> messages [ 'msSFU30Name' ][ 0 ];
}
}
// NIS domain
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemsSFU30Name' , true )) {
$this -> attributes [ 'msSFU30NisDomain' ][ 0 ] = $_POST [ 'msSFU30NisDomain' ];
}
2015-11-08 09:59:20 +00:00
// title
2015-11-08 16:33:08 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidetitle' , true )) {
2015-11-08 09:59:20 +00:00
$this -> attributes [ 'title' ][ 0 ] = $_POST [ 'title' ];
}
// car license
2015-11-08 16:33:08 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidecarLicense' , true )) {
2015-11-08 09:59:20 +00:00
$this -> attributes [ 'carLicense' ][ 0 ] = $_POST [ 'carLicense' ];
}
// employee number
2015-11-08 16:33:08 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideemployeeNumber' , true )) {
2015-11-08 09:59:20 +00:00
$this -> attributes [ 'employeeNumber' ][ 0 ] = $_POST [ 'employeeNumber' ];
}
// employee type
2015-11-08 16:33:08 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideemployeeType' , true )) {
2015-11-08 09:59:20 +00:00
$this -> attributes [ 'employeeType' ][ 0 ] = $_POST [ 'employeeType' ];
}
// business category
2015-11-08 16:33:08 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidebusinessCategory' , true )) {
2015-11-08 09:59:20 +00:00
$this -> processMultiValueInputTextField ( 'businessCategory' , $return , 'businessCategory' );
}
// department
2017-03-04 10:14:17 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartment' , true )) {
$this -> attributes [ 'department' ][ 0 ] = $_POST [ 'department' ];
2015-11-08 09:59:20 +00:00
}
2018-10-20 17:44:23 +00:00
// department number
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartmentNumber' , true )) {
$this -> processMultiValueInputTextField ( 'departmentNumber' , $return );
}
2015-11-08 09:59:20 +00:00
// organizational unit
2015-11-08 16:33:08 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideou' , true )) {
2015-11-08 09:59:20 +00:00
$this -> processMultiValueInputTextField ( 'ou' , $return );
}
// organisation
2015-11-08 16:33:08 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideo' , true )) {
2015-11-08 09:59:20 +00:00
$this -> processMultiValueInputTextField ( 'o' , $return );
}
2016-11-09 18:22:43 +00:00
// Company
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidecompany' , true )) {
$this -> attributes [ 'company' ][ 0 ] = $_POST [ 'company' ];
}
// Mobile
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemobile' , true )) {
$this -> attributes [ 'mobile' ][ 0 ] = $_POST [ 'mobile' ];
if ( ! get_preg ( $_POST [ 'mobile' ], 'telephone' )) {
$return [] = $this -> messages [ 'mobile' ][ 0 ];
}
}
// Other mobiles
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideotherMobile' , true )) {
$this -> processMultiValueInputTextField ( 'otherMobile' , $return , 'telephone' );
}
// Pager
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidepager' , true )) {
$this -> attributes [ 'pager' ][ 0 ] = $_POST [ 'pager' ];
if ( ! get_preg ( $_POST [ 'pager' ], 'telephone' )) {
$return [] = $this -> messages [ 'pager' ][ 0 ];
}
}
// Other pagers
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideotherPager' , true )) {
$this -> processMultiValueInputTextField ( 'otherPager' , $return , 'telephone' );
}
2016-11-09 20:46:27 +00:00
// Proxy-Addresses
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideproxyAddresses' , true )) {
$this -> processMultiValueInputTextField ( 'proxyAddresses' , $return );
}
2017-11-07 19:28:38 +00:00
// photo
2018-12-29 14:49:42 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidejpegPhoto' , true )
&& isset ( $_POST [ 'delPhoto' ])) {
unset ( $this -> attributes [ 'jpegPhoto' ]);
2017-11-07 19:28:38 +00:00
}
2013-04-06 15:00:53 +00:00
return $return ;
}
2015-08-04 18:41:12 +00:00
2015-11-02 20:53:20 +00:00
/**
* This function will create the meta HTML code to show a page to change account expiration .
*
* @ return htmlElement meta HTML code
*/
function display_html_accountExpires () {
2019-09-26 17:24:49 +00:00
$return = new htmlResponsiveRow ();
2015-11-02 20:53:20 +00:00
$attr = 'accountExpires' ;
$text = _ ( 'Account expiration date' );
$help = " accountExpires " ;
$datetime = new DateTime ( 'now' , getTimeZone ());
if ( ! empty ( $this -> attributes [ $attr ][ 0 ]) && ! ( $this -> attributes [ $attr ][ 0 ] == '0' )) {
2015-11-27 21:03:27 +00:00
$datetime = windowsUser :: getFileTime ( $this -> attributes [ $attr ][ 0 ]);
2015-11-02 20:53:20 +00:00
}
2018-12-29 14:49:42 +00:00
for ( $i = 1 ; $i <= 31 ; $i ++ ) {
$mday [] = $i ;
}
for ( $i = 1 ; $i <= 12 ; $i ++ ) {
$mon [] = $i ;
}
for ( $i = 2003 ; $i <= 2050 ; $i ++ ) {
$year [] = $i ;
}
2019-09-26 17:24:49 +00:00
$return -> addLabel ( new htmlOutputText ( $text ));
$dateGroup = new htmlGroup ();
$daySelect = new htmlSelect ( 'expire_day' , $mday , array ( $datetime -> format ( 'd' )));
$daySelect -> setWidth ( '3rem' );
$dateGroup -> addElement ( $daySelect );
$monthSelect = new htmlSelect ( 'expire_mon' , $mon , array ( $datetime -> format ( 'm' )));
$monthSelect -> setWidth ( '3rem' );
$dateGroup -> addElement ( $monthSelect );
$yearSelect = new htmlSelect ( 'expire_yea' , $year , array ( $datetime -> format ( 'Y' )));
$yearSelect -> setWidth ( '5rem' );
$dateGroup -> addElement ( $yearSelect );
$dateGroup -> addElement ( new htmlHelpLink ( $help ), true );
$return -> addField ( $dateGroup );
2015-11-02 20:53:20 +00:00
if ( $this -> getAccountContainer () -> getAccountModule ( 'shadowAccount' ) != null ) {
2019-09-26 17:24:49 +00:00
$return -> add ( new htmlResponsiveInputCheckbox ( 'syncShadow' , false , _ ( 'Set also for Shadow' )), 12 );
2015-11-02 20:53:20 +00:00
}
if ( $this -> getAccountContainer () -> getAccountModule ( 'heimdalKerberos' ) != null ) {
2019-09-26 17:24:49 +00:00
$return -> add ( new htmlResponsiveInputCheckbox ( 'syncHeimdal' , false , _ ( 'Set also for Kerberos' )), 12 );
2015-11-02 20:53:20 +00:00
}
if ( $this -> getAccountContainer () -> getAccountModule ( 'mitKerberos' ) != null ) {
2019-09-26 17:24:49 +00:00
$return -> add ( new htmlResponsiveInputCheckbox ( 'syncMIT' , false , _ ( 'Set also for Kerberos' )), 12 );
2015-11-02 20:53:20 +00:00
}
if ( $this -> getAccountContainer () -> getAccountModule ( 'mitKerberosStructural' ) != null ) {
2019-09-26 17:24:49 +00:00
$return -> add ( new htmlResponsiveInputCheckbox ( 'syncMITStructural' , false , _ ( 'Set also for Kerberos' )), 12 );
2015-11-02 20:53:20 +00:00
}
2019-09-26 17:24:49 +00:00
$return -> addVerticalSpacer ( '2rem' );
$buttons = new htmlGroup ();
2015-11-02 20:53:20 +00:00
$buttons -> addElement ( new htmlAccountPageButton ( get_class ( $this ), 'attributes' , 'change' . $attr , _ ( 'Change' )));
if ( isset ( $this -> attributes [ $attr ][ 0 ])) {
2019-09-26 17:24:49 +00:00
$buttons -> addElement ( new htmlSpacer ( '0.5rem' , null ));
2015-11-02 20:53:20 +00:00
$buttons -> addElement ( new htmlAccountPageButton ( get_class ( $this ), 'attributes' , 'del' . $attr , _ ( 'Remove' )));
}
2019-09-26 17:24:49 +00:00
$buttons -> addElement ( new htmlSpacer ( '0.5rem' , null ));
2015-11-02 20:53:20 +00:00
$buttons -> addElement ( new htmlAccountPageButton ( get_class ( $this ), 'attributes' , 'back' . $attr , _ ( 'Cancel' )));
2019-09-26 17:24:49 +00:00
$return -> add ( $buttons , 12 , 12 , 12 , 'text-center' );
2015-11-02 20:53:20 +00:00
return $return ;
}
/**
* Processes user input of the account expiration page .
*
* @ return array list of info / error messages
*/
function process_accountExpires () {
$return = array ();
// find button name
$buttonName = '' ;
$postKeys = array_keys ( $_POST );
for ( $i = 0 ; $i < sizeof ( $postKeys ); $i ++ ) {
if ( strpos ( $postKeys [ $i ], 'form_subpage_windowsUser_attributes_' ) !== false ) {
$buttonName = $postKeys [ $i ];
}
}
2018-12-29 14:49:42 +00:00
if (( $buttonName == '' ) || ( strpos ( $buttonName , '_back' ) !== false )) {
return array ();
}
2015-11-02 20:53:20 +00:00
$attr = 'accountExpires' ;
// determine action
if ( strpos ( $buttonName , '_change' ) !== false ) {
// set new time
$this -> setExpirationDate ( $_POST [ 'expire_yea' ], $_POST [ 'expire_mon' ], $_POST [ 'expire_day' ]);
// sync other modules
if ( isset ( $_POST [ 'syncShadow' ]) && ( $_POST [ 'syncShadow' ] == 'on' )) {
$this -> getAccountContainer () -> getAccountModule ( 'shadowAccount' ) -> setExpirationDate (
$_POST [ 'expire_yea' ], $_POST [ 'expire_mon' ], $_POST [ 'expire_day' ]);
}
if ( isset ( $_POST [ 'syncHeimdal' ]) && ( $_POST [ 'syncHeimdal' ] == 'on' )) {
$this -> getAccountContainer () -> getAccountModule ( 'heimdalKerberos' ) -> setExpirationDate (
$_POST [ 'expire_yea' ], $_POST [ 'expire_mon' ], $_POST [ 'expire_day' ]);
}
if ( isset ( $_POST [ 'syncMIT' ]) && ( $_POST [ 'syncMIT' ] == 'on' )) {
$this -> getAccountContainer () -> getAccountModule ( 'mitKerberos' ) -> setExpirationDate (
$_POST [ 'expire_yea' ], $_POST [ 'expire_mon' ], $_POST [ 'expire_day' ]);
}
if ( isset ( $_POST [ 'syncMITStructural' ]) && ( $_POST [ 'syncMITStructural' ] == 'on' )) {
$this -> getAccountContainer () -> getAccountModule ( 'mitKerberosStructural' ) -> setExpirationDate (
$_POST [ 'expire_yea' ], $_POST [ 'expire_mon' ], $_POST [ 'expire_day' ]);
}
}
elseif ( strpos ( $buttonName , '_del' ) !== false ) {
// remove attribute value
2018-11-03 10:22:19 +00:00
if ( ! isset ( $this -> orig [ $attr ][ 0 ])) {
unset ( $this -> attributes [ $attr ]);
}
else {
$this -> attributes [ $attr ][ 0 ] = '0' ;
}
2015-11-02 20:53:20 +00:00
// sync other modules
if ( isset ( $_POST [ 'syncShadow' ]) && ( $_POST [ 'syncShadow' ] == 'on' )) {
$this -> getAccountContainer () -> getAccountModule ( 'shadowAccount' ) -> setExpirationDate (
null , null , null );
}
if ( isset ( $_POST [ 'syncHeimdal' ]) && ( $_POST [ 'syncHeimdal' ] == 'on' )) {
$this -> getAccountContainer () -> getAccountModule ( 'heimdalKerberos' ) -> setExpirationDate (
null , null , null );
}
if ( isset ( $_POST [ 'syncMIT' ]) && ( $_POST [ 'syncMIT' ] == 'on' )) {
$this -> getAccountContainer () -> getAccountModule ( 'mitKerberos' ) -> setExpirationDate (
null , null , null );
}
if ( isset ( $_POST [ 'syncMITStructural' ]) && ( $_POST [ 'syncMITStructural' ] == 'on' )) {
$this -> getAccountContainer () -> getAccountModule ( 'mitKerberosStructural' ) -> setExpirationDate (
null , null , null );
}
}
return $return ;
}
2013-04-13 15:57:32 +00:00
/**
* Displays the group selection .
*
* @ return htmlElement meta HTML code
*/
2018-11-17 19:40:09 +00:00
public function display_html_group () {
2019-09-26 17:24:49 +00:00
$return = new htmlResponsiveRow ();
2020-06-14 17:58:02 +00:00
$return -> setCSSClasses ( array ( 'maxrow' ));
2019-09-26 17:24:49 +00:00
$return -> add ( new htmlSubTitle ( _ ( " Groups " )), 12 );
2013-04-13 15:57:32 +00:00
$groups = $this -> findGroups ();
2020-06-15 13:34:44 +00:00
$groupDisplayContainsDn = $this -> groupDisplayContainsDn ();
2013-04-13 15:57:32 +00:00
// sort by DN
2020-06-15 13:34:44 +00:00
if ( $groupDisplayContainsDn ) {
usort ( $groups , 'compareDN' );
}
2015-08-04 18:41:12 +00:00
2013-04-13 15:57:32 +00:00
$selectedGroups = array ();
// sort by DN
2020-06-15 13:34:44 +00:00
if ( $groupDisplayContainsDn ) {
usort ( $this -> groupList , 'compareDN' );
}
2013-04-13 15:57:32 +00:00
for ( $i = 0 ; $i < sizeof ( $this -> groupList ); $i ++ ) {
if ( in_array ( $this -> groupList [ $i ], $groups )) {
2020-06-15 13:34:44 +00:00
$groupDn = $this -> groupList [ $i ];
$groupCn = extractRDNValue ( $groupDn );
$displayName = $this -> formatGroupName ( $groupCn , $groupDn );
$selectedGroups [ $displayName ] = $groupDn ;
2013-04-13 15:57:32 +00:00
}
}
$availableGroups = array ();
foreach ( $groups as $dn ) {
if ( ! in_array ( $dn , $this -> groupList )) {
2020-06-15 13:34:44 +00:00
$groupCn = extractRDNValue ( $dn );
$displayName = $this -> formatGroupName ( $groupCn , $dn );
$availableGroups [ $displayName ] = $dn ;
2013-04-13 15:57:32 +00:00
}
}
2015-08-04 18:41:12 +00:00
2020-06-15 13:34:44 +00:00
if ( ! $groupDisplayContainsDn ) {
$selectedGroups = array_flip ( $selectedGroups );
natcasesort ( $selectedGroups );
$selectedGroups = array_flip ( $selectedGroups );
$availableGroups = array_flip ( $availableGroups );
natcasesort ( $availableGroups );
$availableGroups = array_flip ( $availableGroups );
}
2019-09-26 17:24:49 +00:00
$this -> addDoubleSelectionArea ( $return , _ ( " Selected groups " ), _ ( " Available groups " ),
2020-06-15 13:34:44 +00:00
$selectedGroups , null , $availableGroups , null , 'groups' , $groupDisplayContainsDn , true );
2013-04-13 15:57:32 +00:00
2018-11-17 19:40:09 +00:00
// sync options
$typeManager = new TypeManager ();
$syncTypes = $typeManager -> getConfiguredTypesForScopes ( array ( 'group' , 'gon' , 'user' ));
$syncActive = false ;
$syncGonActive = false ;
$possibleGonSyncModules = array ( 'groupOfNames' , 'groupOfMembers' , 'groupOfUniqueNames' );
foreach ( $syncTypes as $syncType ) {
$modules = $syncType -> getModules ();
foreach ( $possibleGonSyncModules as $possibleModule ) {
if ( in_array ( $possibleModule , $modules )) {
$syncGonActive = true ;
break ;
}
}
}
if ( in_array ( 'posixAccount' , $this -> getAccountContainer () -> get_type () -> getModules ())) {
$syncActive = true ;
}
$syncActive = $syncActive && ! $this -> isBooleanConfigOptionSet ( 'windowsUser_syncGroups' );
if ( $syncActive ) {
2019-09-26 17:24:49 +00:00
$return -> add ( new htmlSubTitle ( _ ( 'Sync groups' )), 12 );
$return -> add ( new htmlResponsiveInputCheckbox ( 'syncDeleteGroups' , true , _ ( 'Delete non-matching entries' )), 12 );
$return -> addVerticalSpacer ( '2rem' );
2018-11-17 19:40:09 +00:00
$syncButtons = new htmlGroup ();
2018-11-17 19:43:59 +00:00
$u2wButton = new htmlAccountPageButton ( get_class ( $this ), 'group' , 'syncU2W' , _ ( 'Sync Unix to Windows' ));
$u2wButton -> setIconClass ( 'unixButton' );
$syncButtons -> addElement ( $u2wButton );
$syncButtons -> addElement ( new htmlSpacer ( '2rem' , null ));
2018-11-17 19:40:09 +00:00
if ( $syncGonActive ) {
$g2wButton = new htmlAccountPageButton ( get_class ( $this ), 'group' , 'syncG2W' , _ ( 'Sync group of names to Windows' ));
$g2wButton -> setIconClass ( 'groupButton' );
$syncButtons -> addElement ( $g2wButton );
$syncButtons -> addElement ( new htmlSpacer ( '2rem' , null ));
}
2019-09-26 17:24:49 +00:00
$return -> add ( $syncButtons , 12 , 12 , 12 , 'text-center' );
$return -> addVerticalSpacer ( '2rem' );
2018-11-17 19:40:09 +00:00
}
2013-04-13 15:57:32 +00:00
$backButton = new htmlAccountPageButton ( get_class ( $this ), 'attributes' , 'back' , _ ( 'Back' ));
2019-09-26 17:24:49 +00:00
$return -> add ( $backButton , 12 );
2013-04-13 15:57:32 +00:00
return $return ;
}
/**
* 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
*/
2018-11-17 19:40:09 +00:00
public function process_group () {
2019-09-26 17:24:49 +00:00
if ( isset ( $_POST [ 'groups_2' ]) && isset ( $_POST [ 'groups_left' ])) { // Add groups to list
2013-04-13 15:57:32 +00:00
// add new group
2019-09-26 17:24:49 +00:00
$this -> groupList = @ array_merge ( $this -> groupList , $_POST [ 'groups_2' ]);
2013-04-13 15:57:32 +00:00
}
2019-09-26 17:24:49 +00:00
elseif ( isset ( $_POST [ 'groups_1' ]) && isset ( $_POST [ 'groups_right' ])) { // remove groups from list
$this -> groupList = array_delete ( $_POST [ 'groups_1' ], $this -> groupList );
2013-04-13 15:57:32 +00:00
}
2018-11-17 19:40:09 +00:00
// sync Unix to Windows
if ( isset ( $_POST [ 'form_subpage_windowsUser_group_syncU2W' ])) {
$this -> manualSyncUnixToWindows ();
}
// sync group of names to Windows
if ( isset ( $_POST [ 'form_subpage_windowsUser_group_syncG2W' ])) {
$this -> manualSyncGonToWindows ();
}
2013-04-13 15:57:32 +00:00
return array ();
}
2018-11-17 19:40:09 +00:00
/**
* Syncs the Unix groups to Windows .
*/
private function manualSyncUnixToWindows () {
$windowsGroups = $this -> getGroupList ();
$unixGroups = $this -> getAccountContainer () -> getAccountModule ( 'posixAccount' ) -> getGroups ();
$allWindowsGroups = searchLDAPByAttribute ( 'cn' , '*' , 'group' , array ( 'cn' ), array ( 'group' ));
$dnToCn = array ();
foreach ( $allWindowsGroups as $windowsGroup ) {
$dnToCn [ $windowsGroup [ 'dn' ]] = $windowsGroup [ 'cn' ][ 0 ];
}
$cnToDn = array_flip ( $dnToCn );
$currentGroupNames = array ();
foreach ( $windowsGroups as $windowsGroup ) {
$currentGroupNames [] = $dnToCn [ $windowsGroup ];
}
$deleteNonMatching = isset ( $_POST [ 'syncDeleteGroups' ]) && ( $_POST [ 'syncDeleteGroups' ] == 'on' );
$namesToIgnore = array ();
if ( ! empty ( $this -> moduleSettings [ 'windowsUser_syncGroupsExclusions' ])) {
$namesToIgnore = $this -> moduleSettings [ 'windowsUser_syncGroupsExclusions' ];
array_map ( 'trim' , $namesToIgnore );
}
foreach ( $unixGroups as $unixGroup ) {
if ( in_array ( $unixGroup , $namesToIgnore )) {
continue ;
}
if ( ! in_array ( $unixGroup , $currentGroupNames ) && isset ( $cnToDn [ $unixGroup ])) {
$windowsGroups [] = $cnToDn [ $unixGroup ];
}
}
if ( $deleteNonMatching ) {
foreach ( $currentGroupNames as $currentGroupName ) {
if ( in_array ( $currentGroupName , $namesToIgnore )) {
continue ;
}
if ( ! in_array ( $currentGroupName , $unixGroups )) {
foreach ( $windowsGroups as $windowsGroup ) {
if ( $dnToCn [ $windowsGroup ] == $currentGroupName ) {
$windowsGroups = array_delete ( array ( $windowsGroup ), $windowsGroups );
break ;
}
}
}
}
}
$this -> groupList = $windowsGroups ;
}
/**
* Syncs the group of names to Windows .
*/
private function manualSyncGonToWindows () {
$windowsGroups = $this -> getGroupList ();
$gonGroupDns = $this -> getAccountContainer () -> getAccountModule ( 'posixAccount' ) -> getGroupOfNames ();
$allGons = $this -> getAccountContainer () -> getAccountModule ( 'posixAccount' ) -> findGroupOfNames ();
$gonGroups = array ();
foreach ( $gonGroupDns as $gonGroupDn ) {
$gonGroups [] = $this -> getAccountContainer () -> getAccountModule ( 'posixAccount' ) -> getGonName ( $gonGroupDn , $allGons );
}
$allWindowsGroups = searchLDAPByAttribute ( 'cn' , '*' , 'group' , array ( 'cn' ), array ( 'group' ));
$dnToCn = array ();
foreach ( $allWindowsGroups as $windowsGroup ) {
$dnToCn [ $windowsGroup [ 'dn' ]] = $windowsGroup [ 'cn' ][ 0 ];
}
$cnToDn = array_flip ( $dnToCn );
$currentGroupNames = array ();
foreach ( $windowsGroups as $windowsGroup ) {
$currentGroupNames [] = $dnToCn [ $windowsGroup ];
}
$deleteNonMatching = isset ( $_POST [ 'syncDeleteGroups' ]) && ( $_POST [ 'syncDeleteGroups' ] == 'on' );
$namesToIgnore = array ();
if ( ! empty ( $this -> moduleSettings [ 'windowsUser_syncGroupsExclusions' ])) {
$namesToIgnore = $this -> moduleSettings [ 'windowsUser_syncGroupsExclusions' ];
array_map ( 'trim' , $namesToIgnore );
}
foreach ( $gonGroups as $gonGroup ) {
if ( in_array ( $gonGroup , $namesToIgnore )) {
continue ;
}
if ( ! in_array ( $gonGroup , $currentGroupNames ) && isset ( $cnToDn [ $gonGroup ])) {
$windowsGroups [] = $cnToDn [ $gonGroup ];
}
}
if ( $deleteNonMatching ) {
foreach ( $currentGroupNames as $currentGroupName ) {
if ( in_array ( $currentGroupName , $namesToIgnore )) {
continue ;
}
if ( ! in_array ( $currentGroupName , $gonGroups )) {
foreach ( $windowsGroups as $windowsGroup ) {
if ( $dnToCn [ $windowsGroup ] == $currentGroupName ) {
$windowsGroups = array_delete ( array ( $windowsGroup ), $windowsGroups );
break ;
}
}
}
}
}
$this -> groupList = $windowsGroups ;
}
2015-11-07 15:43:43 +00:00
/**
* Displays the photo upload page .
*
* @ return array meta HTML code
*/
2018-05-12 14:41:52 +00:00
public function display_html_photo () {
2019-09-26 17:24:49 +00:00
$container = new htmlResponsiveRow ();
2018-05-12 14:41:52 +00:00
if ( empty ( $this -> attributes [ 'jpegPhoto' ][ 0 ])) {
2019-09-26 17:24:49 +00:00
$container -> add ( new htmlSubTitle ( _ ( 'Upload image' )), 12 );
2018-05-12 14:41:52 +00:00
$label = _ ( 'Photo file' );
2019-09-26 17:24:49 +00:00
$container -> add ( new htmlResponsiveInputFileUpload ( 'photoFile' , $label , 'photoUpload' ), 12 );
2020-07-24 18:49:04 +00:00
$container -> addVerticalSpacer ( '0.5rem' );
$container -> addLabel ( new htmlOutputText ( ' ' , false ));
$container -> addField ( new htmlAccountPageButton ( get_class ( $this ), 'photo' , 'upload' , _ ( 'Upload' )));
$container -> addVerticalSpacer ( '1rem' );
$webcamContent = new htmlResponsiveRow ();
$webcamContent -> add ( new htmlSubTitle ( _ ( 'Use webcam' )), 12 );
$errorMessage = new htmlStatusMessage ( 'ERROR' , '' );
$errorMessage -> setCSSClasses ( array ( 'hidden' , 'lam-webcam-message' ));
$webcamContent -> add ( $errorMessage , 12 );
$captureButton = new htmlButton ( 'lam-webcam-capture' , _ ( 'Start capture' ));
$captureButton -> setOnClick ( 'window.lam.tools.webcam.capture(event);' );
$webcamContent -> add ( $captureButton , 12 , 12 , 12 , 'text-center' );
$video = new htmlVideo ( 'lam-webcam-video' );
$video -> setCSSClasses ( array ( 'hidden' ));
$webcamContent -> add ( $video , 12 , 12 , 12 , 'text-center' );
$webcamContent -> addVerticalSpacer ( '0.5rem' );
$webcamUploadButton = new htmlButton ( 'uploadWebcam' , _ ( 'Upload' ));
$webcamUploadButton -> setCSSClasses ( array ( 'btn-lam-webcam-upload' , 'hidden' ));
$webcamUploadButton -> setOnClick ( 'window.lam.tools.webcam.upload();' );
$webcamContent -> add ( $webcamUploadButton , 12 , 12 , 12 , 'text-center' );
$canvas = new htmlCanvas ( 'lam-webcam-canvas' );
$canvas -> setCSSClasses ( array ( 'hidden' ));
$webcamContent -> add ( $canvas , 12 );
$webcamDiv = new htmlDiv ( 'lam_webcam_div' , $webcamContent , array ( 'hidden' ));
$container -> add ( $webcamDiv , 12 );
$container -> addVerticalSpacer ( '1rem' );
$container -> add ( new htmlAccountPageButton ( get_class ( $this ), 'attributes' , 'back' , _ ( 'Back' )), 12 );
2018-05-12 14:41:52 +00:00
}
else {
2019-09-26 17:24:49 +00:00
$container -> add ( new htmlSubTitle ( _ ( 'Crop image' )), 12 );
2018-05-12 14:41:52 +00:00
$jpeg_filename = 'jpg' . getRandomNumber () . '.jpg' ;
$outjpeg = @ fopen ( dirname ( __FILE__ ) . '/../../tmp/' . $jpeg_filename , " wb " );
fwrite ( $outjpeg , $this -> attributes [ 'jpegPhoto' ][ 0 ]);
fclose ( $outjpeg );
$photoFile = '../../tmp/' . $jpeg_filename ;
$img = new htmlImage ( $photoFile );
$img -> setCSSClasses ( array ( 'photo' ));
$img -> enableCropping ();
2019-09-26 17:24:49 +00:00
$container -> add ( $img , 12 );
$container -> addVerticalSpacer ( '2rem' );
$container -> add ( new htmlAccountPageButton ( get_class ( $this ), 'attributes' , 'crop' , _ ( 'Done' )), 12 );
2018-05-12 14:41:52 +00:00
}
2015-11-07 15:43:43 +00:00
return $container ;
}
/**
* Sets a new photo .
*/
2018-05-12 14:41:52 +00:00
public function process_photo () {
if ( isset ( $_POST [ 'form_subpage_' . get_class ( $this ) . '_attributes_back' ])) {
2015-11-07 15:43:43 +00:00
return array ();
}
2020-07-24 18:49:04 +00:00
if ( isset ( $_POST [ 'form_subpage_' . get_class ( $this ) . '_photo_upload' ]) || isset ( $_POST [ 'webcamData' ])) {
2018-05-12 14:41:52 +00:00
return $this -> uploadPhoto ();
}
if ( isset ( $_POST [ 'form_subpage_' . get_class ( $this ) . '_attributes_crop' ])) {
$messages = array ();
try {
2018-08-19 18:25:15 +00:00
include_once dirname ( __FILE__ ) . '/../imageutils.inc' ;
$imageManipulator = ImageManipulationFactory :: getImageManipulator ( $this -> attributes [ 'jpegPhoto' ][ 0 ]);
$imageManipulator -> crop ( $_POST [ 'croppingDataX' ], $_POST [ 'croppingDataY' ], $_POST [ 'croppingDataWidth' ], $_POST [ 'croppingDataHeight' ]);
$this -> attributes [ 'jpegPhoto' ][ 0 ] = $imageManipulator -> getImageData ();
2018-05-12 14:41:52 +00:00
}
catch ( Exception $e ) {
$msg = $this -> messages [ 'file' ][ 2 ];
$msg [] = htmlspecialchars ( $e -> getMessage ());
$messages [] = $msg ;
}
return $messages ;
}
}
/**
* Uploads the photo file .
*
* @ return array error messages if any
*/
private function uploadPhoto () {
2015-11-07 15:43:43 +00:00
$messages = array ();
2020-07-24 18:49:04 +00:00
if (( empty ( $_FILES [ 'photoFile' ]) || ( $_FILES [ 'photoFile' ][ 'size' ] <= 0 )) && empty ( $_POST [ 'webcamData' ])) {
$messages [] = $this -> messages [ 'file' ][ 0 ];
return $messages ;
}
if ( ! empty ( $_FILES [ 'photoFile' ][ 'tmp_name' ])) {
2015-11-07 15:43:43 +00:00
$handle = fopen ( $_FILES [ 'photoFile' ][ 'tmp_name' ], " r " );
$data = fread ( $handle , 10000000 );
2020-07-24 18:49:04 +00:00
fclose ( $handle );
2015-11-07 15:43:43 +00:00
if ( ! empty ( $this -> moduleSettings [ 'windowsUser_jpegPhoto_maxSize' ][ 0 ]) && ( strlen ( $data ) > ( 1024 * $this -> moduleSettings [ 'windowsUser_jpegPhoto_maxSize' ][ 0 ]))) {
$errMsg = $this -> messages [ 'file' ][ 3 ];
$errMsg [] = null ;
$errMsg [] = array ( $this -> moduleSettings [ 'windowsUser_jpegPhoto_maxSize' ][ 0 ]);
return array ( $errMsg );
}
2020-07-24 18:49:04 +00:00
}
elseif ( isset ( $_POST [ 'webcamData' ])) {
$data = $_POST [ 'webcamData' ];
$data = str_replace ( 'data:image/png;base64,' , '' , $data );
$data = base64_decode ( $data );
}
// convert to JPG
try {
include_once dirname ( __FILE__ ) . '/../imageutils.inc' ;
$imageManipulator = ImageManipulationFactory :: getImageManipulator ( $data );
// resize if maximum values specified
if ( ! empty ( $this -> moduleSettings [ 'windowsUser_jpegPhoto_maxWidth' ][ 0 ]) || ! empty ( $this -> moduleSettings [ 'windowsUser_jpegPhoto_maxHeight' ][ 0 ])) {
$maxWidth = empty ( $this -> moduleSettings [ 'windowsUser_jpegPhoto_maxWidth' ][ 0 ]) ? $imageManipulator -> getWidth () : $this -> moduleSettings [ 'windowsUser_jpegPhoto_maxWidth' ][ 0 ];
$maxHeight = empty ( $this -> moduleSettings [ 'windowsUser_jpegPhoto_maxHeight' ][ 0 ]) ? $imageManipulator -> getHeight () : $this -> moduleSettings [ 'windowsUser_jpegPhoto_maxHeight' ][ 0 ];
$imageManipulator -> thumbnail ( $maxWidth , $maxHeight );
2015-11-07 15:43:43 +00:00
}
2020-07-24 18:49:04 +00:00
$imageManipulator -> convertToJpeg ();
$data = $imageManipulator -> getImageData ();
2015-11-07 15:43:43 +00:00
}
2020-07-24 18:49:04 +00:00
catch ( Exception $e ) {
$msg = $this -> messages [ 'file' ][ 2 ];
$msg [] = htmlspecialchars ( $e -> getMessage ());
$messages [] = $msg ;
return $messages ;
2015-11-07 15:43:43 +00:00
}
2020-07-24 18:49:04 +00:00
$this -> attributes [ 'jpegPhoto' ][ 0 ] = $data ;
2015-11-07 15:43:43 +00:00
return $messages ;
}
2015-11-08 09:59:20 +00:00
/**
* This function will create the meta HTML code to show a page to change the manager attribute .
*
* @ return htmlElement HTML meta data
*/
function display_html_manager () {
2019-09-26 17:24:49 +00:00
$return = new htmlResponsiveRow ();
2015-11-08 09:59:20 +00:00
if ( ! isset ( $this -> attributes [ 'manager' ])) {
$this -> attributes [ 'manager' ] = array ();
}
// show list of possible new managers
$options = array ();
$filter = get_ldap_filter ( 'user' );
$entries = searchLDAPByFilter ( '(|' . $filter . '(objectclass=organizationalRole))' , array ( 'dn' ), array ( 'user' ));
for ( $i = 0 ; $i < sizeof ( $entries ); $i ++ ) {
$entries [ $i ] = $entries [ $i ][ 'dn' ];
}
// sort by DN
usort ( $entries , 'compareDN' );
for ( $i = 0 ; $i < sizeof ( $entries ); $i ++ ) {
$options [ getAbstractDN ( $entries [ $i ])] = $entries [ $i ];
}
$selectedManager = array ();
if ( ! empty ( $this -> attributes [ 'manager' ][ 0 ])) {
$selectedManager [] = $this -> attributes [ 'manager' ][ 0 ];
}
2019-09-26 17:24:49 +00:00
$managerSelect = new htmlSelect ( 'manager' , $options , $selectedManager );
2015-11-08 09:59:20 +00:00
$managerSelect -> setHasDescriptiveElements ( true );
$managerSelect -> setRightToLeftTextDirection ( true );
$managerSelect -> setSortElements ( false );
$managerSelect -> setTransformSingleSelect ( false );
2019-09-26 17:24:49 +00:00
$return -> add ( $managerSelect , 12 );
$return -> addVerticalSpacer ( '2rem' );
$buttonTable = new htmlGroup ();
2015-11-08 09:59:20 +00:00
$buttonTable -> addElement ( new htmlAccountPageButton ( get_class ( $this ), 'attributes' , 'setManager' , _ ( 'Change' )));
2019-09-26 17:24:49 +00:00
$buttonTable -> addElement ( new htmlSpacer ( '0.5rem' , null ));
2015-11-08 09:59:20 +00:00
$buttonTable -> addElement ( new htmlAccountPageButton ( get_class ( $this ), 'attributes' , 'removeManager' , _ ( 'Remove' )));
2019-09-26 17:24:49 +00:00
$buttonTable -> addElement ( new htmlSpacer ( '2rem' , null ));
2015-11-08 09:59:20 +00:00
$buttonTable -> addElement ( new htmlAccountPageButton ( get_class ( $this ), 'attributes' , 'cancelManager' , _ ( 'Cancel' )));
2019-09-26 17:24:49 +00:00
$return -> add ( $buttonTable , 12 );
2015-11-08 09:59:20 +00:00
return $return ;
}
/**
* Processes user input of the manager page .
* It checks if all input values are correct and updates the associated LDAP attributes .
*
* @ return array list of info / error messages
*/
function process_manager () {
$return = array ();
if ( isset ( $_POST [ 'form_subpage_' . get_class ( $this ) . '_attributes_removeManager' ])) {
if ( ! empty ( $this -> attributes [ 'manager' ])) {
unset ( $this -> attributes [ 'manager' ]);
}
}
elseif ( isset ( $_POST [ 'form_subpage_' . get_class ( $this ) . '_attributes_setManager' ]) && isset ( $_POST [ 'manager' ])) {
$this -> attributes [ 'manager' ][ 0 ] = $_POST [ 'manager' ];
}
return $return ;
}
2020-02-08 14:43:11 +00:00
/**
* This function will create the HTML page to edit the allowed workstations .
*
* @ return htmlElement meta HTML code
*/
function display_html_userWorkstations () {
$return = new htmlResponsiveRow ();
if ( $this -> get_scope () == 'user' ) {
// Get list of all hosts.
$userWorkstations = array ();
$availableUserWorkstations = array ();
$result = $this -> getHostList ();
foreach ( $result as $host ) {
$availableUserWorkstations [] = str_replace ( " $ " , '' , $host );
}
sort ( $availableUserWorkstations , SORT_STRING );
if ( isset ( $this -> attributes [ 'userWorkstations' ][ 0 ])) {
$wsAttr = str_replace ( ' ' , '' , $this -> attributes [ 'userWorkstations' ][ 0 ]);
$userWorkstations = explode ( ',' , $wsAttr );
}
$availableUserWorkstations = array_delete ( $userWorkstations , $availableUserWorkstations );
$return -> add ( new htmlSubTitle ( _ ( " Allowed workstations " )), 12 );
$userWorkstationsOptions = array ();
foreach ( $userWorkstations as $userWorkstation ) {
$userWorkstationsOptions [ $userWorkstation ] = $userWorkstation ;
}
$availableUserWorkstationsOptions = array ();
foreach ( $availableUserWorkstations as $availableUserWorkstation ) {
$availableUserWorkstationsOptions [ $availableUserWorkstation ] = $availableUserWorkstation ;
}
$this -> addDoubleSelectionArea ( $return , _ ( " Allowed workstations " ), _ ( " Available workstations " ), $userWorkstationsOptions , array (), $availableUserWorkstationsOptions , array (), 'workstations' , false , true );
$return -> addVerticalSpacer ( '2rem' );
$backButton = new htmlAccountPageButton ( get_class ( $this ), 'attributes' , 'back' , _ ( 'Back' ));
$return -> add ( $backButton , 12 );
}
return $return ;
}
/**
* Processes user input of the workstation page .
* It checks if all input values are correct and updates the associated LDAP attributes .
*
* @ return array list of info / error messages
*/
function process_userWorkstations () {
// Load attributes
if ( isset ( $_POST [ 'workstations_2' ]) && isset ( $_POST [ 'workstations_left' ])) { // Add workstations to list
$workstations = array ();
if ( isset ( $this -> attributes [ 'userWorkstations' ][ 0 ])) {
$temp = str_replace ( ' ' , '' , $this -> attributes [ 'userWorkstations' ][ 0 ]);
$workstations = explode ( ',' , $temp );
for ( $i = 0 ; $i < count ( $workstations ); $i ++ ) {
if ( $workstations [ $i ] == '' ) {
unset ( $workstations [ $i ]);
}
}
$workstations = array_values ( $workstations );
}
// Add new // Add workstations
$workstations = array_merge ( $workstations , $_POST [ 'workstations_2' ]);
// remove doubles
$workstations = array_flip ( $workstations );
$workstations = array_unique ( $workstations );
$workstations = array_flip ( $workstations );
// sort workstations
sort ( $workstations );
// Recreate workstation string
$this -> attributes [ 'userWorkstations' ][ 0 ] = $workstations [ 0 ];
for ( $i = 1 ; $i < count ( $workstations ); $i ++ ) {
$this -> attributes [ 'userWorkstations' ][ 0 ] = $this -> attributes [ 'userWorkstations' ][ 0 ] . " , " . $workstations [ $i ];
}
}
elseif ( isset ( $_POST [ 'workstations_1' ]) && isset ( $_POST [ 'workstations_right' ])) { // remove // Add workstations from list
// Put all workstations in array
$temp = str_replace ( ' ' , '' , $this -> attributes [ 'userWorkstations' ][ 0 ]);
$workstations = explode ( ',' , $temp );
for ( $i = 0 ; $i < count ( $workstations ); $i ++ ) {
if ( $workstations [ $i ] == '' ) {
unset ( $workstations [ $i ]);
}
}
$workstations = array_values ( $workstations );
// Remove unwanted workstations from array
$workstations = array_delete ( $_POST [ 'workstations_1' ], $workstations );
// Recreate workstation string
unset ( $this -> attributes [ 'userWorkstations' ][ 0 ]);
if ( sizeof ( $workstations ) > 0 ) {
$this -> attributes [ 'userWorkstations' ][ 0 ] = $workstations [ 0 ];
for ( $i = 1 ; $i < count ( $workstations ); $i ++ ) {
$this -> attributes [ 'userWorkstations' ][ 0 ] = $this -> attributes [ 'userWorkstations' ][ 0 ] . " , " . $workstations [ $i ];
}
}
}
return array ();
}
/**
* Returns a list of existing hosts .
*
* @ return array host names
*/
private function getHostList () {
if ( $this -> cachedHostList != null ) {
return $this -> cachedHostList ;
}
$this -> cachedHostList = searchLDAPByAttribute ( 'cn' , '*' , 'computer' , array ( 'cn' ), array ( 'host' ));
for ( $i = 0 ; $i < sizeof ( $this -> cachedHostList ); $i ++ ) {
$this -> cachedHostList [ $i ] = $this -> cachedHostList [ $i ][ 'cn' ][ 0 ];
}
return $this -> cachedHostList ;
}
2013-04-13 15:57:32 +00:00
/**
* Runs the postmodify actions .
2015-08-04 18:41:12 +00:00
*
2013-04-13 15:57:32 +00:00
* @ see baseModule :: postModifyActions ()
*
* @ param boolean $newAccount
* @ param array $attributes LDAP attributes of this entry
* @ return array array which contains status messages . Each entry is an array containing the status message parameters .
*/
public function postModifyActions ( $newAccount , $attributes ) {
$messages = array ();
// set groups
$groups = $this -> findGroups ();
$toAdd = array_values ( array_diff ( $this -> groupList , $this -> groupList_orig ));
$toRem = array_values ( array_diff ( $this -> groupList_orig , $this -> groupList ));
// add groups
for ( $i = 0 ; $i < sizeof ( $toAdd ); $i ++ ) {
if ( in_array ( $toAdd [ $i ], $groups )) {
$success = @ ldap_mod_add ( $_SESSION [ 'ldap' ] -> server (), $toAdd [ $i ], array ( 'member' => array ( $this -> getAccountContainer () -> finalDN )));
if ( ! $success ) {
2019-08-05 19:56:06 +00:00
logNewMessage ( LOG_ERR , 'Unable to add user ' . $this -> getAccountContainer () -> finalDN . ' to group: ' . $toAdd [ $i ] . ' (' . ldap_error ( $_SESSION [ 'ldap' ] -> server ()) . ').' );
2013-10-16 17:37:17 +00:00
$messages [] = array ( 'ERROR' , sprintf ( _ ( 'Was unable to add attributes to DN: %s.' ), $toAdd [ $i ]), getDefaultLDAPErrorString ( $_SESSION [ 'ldap' ] -> server ()));
2013-04-13 15:57:32 +00:00
}
else {
2019-08-05 19:56:06 +00:00
logNewMessage ( LOG_NOTICE , 'Added user ' . $this -> getAccountContainer () -> finalDN . ' to group: ' . $toAdd [ $i ]);
2013-04-13 15:57:32 +00:00
}
}
}
// remove groups
for ( $i = 0 ; $i < sizeof ( $toRem ); $i ++ ) {
if ( in_array ( $toRem [ $i ], $groups )) {
$success = @ ldap_mod_del ( $_SESSION [ 'ldap' ] -> server (), $toRem [ $i ], array ( 'member' => array ( $this -> getAccountContainer () -> dn_orig )));
if ( ! $success ) {
2019-08-05 19:56:06 +00:00
logNewMessage ( LOG_ERR , 'Unable to delete user ' . $this -> getAccountContainer () -> finalDN . ' from group: ' . $toRem [ $i ] . ' (' . ldap_error ( $_SESSION [ 'ldap' ] -> server ()) . ').' );
2013-10-16 17:37:17 +00:00
$messages [] = array ( 'ERROR' , sprintf ( _ ( 'Was unable to remove attributes from DN: %s.' ), $toRem [ $i ]), getDefaultLDAPErrorString ( $_SESSION [ 'ldap' ] -> server ()));
2013-04-13 15:57:32 +00:00
}
else {
2019-08-05 19:56:06 +00:00
logNewMessage ( LOG_NOTICE , 'Removed user ' . $this -> getAccountContainer () -> finalDN . ' from group: ' . $toRem [ $i ]);
2013-04-13 15:57:32 +00:00
}
}
}
2013-04-21 16:41:19 +00:00
// force password change if needed
if ( $this -> pwdLastSet != null ) {
$attrs = array ( 'pwdLastSet' => array ( $this -> pwdLastSet ));
$success = @ ldap_modify ( $_SESSION [ 'ldap' ] -> server (), $this -> getAccountContainer () -> finalDN , $attrs );
if ( ! $success ) {
2019-08-05 19:56:06 +00:00
logNewMessage ( LOG_ERR , 'Unable to change pwdLastSet for ' . $this -> getAccountContainer () -> finalDN . ' (' . ldap_error ( $_SESSION [ 'ldap' ] -> server ()) . ').' );
2013-10-16 17:37:17 +00:00
$messages [] = array ( 'ERROR' , sprintf ( _ ( 'Was unable to modify attributes of DN: %s.' ), $this -> getAccountContainer () -> finalDN ), getDefaultLDAPErrorString ( $_SESSION [ 'ldap' ] -> server ()));
2013-04-21 16:41:19 +00:00
}
}
2013-04-13 15:57:32 +00:00
return $messages ;
}
2015-08-04 18:41:12 +00:00
2013-04-06 15:00:53 +00:00
/**
2017-05-20 09:46:49 +00:00
* { @ inheritDoc }
* @ see baseModule :: build_uploadAccounts ()
*/
public function build_uploadAccounts ( $rawAccounts , $ids , & $partialAccounts , $selectedModules , & $type ) {
2013-04-06 15:00:53 +00:00
$errors = array ();
2013-04-14 19:19:33 +00:00
// get list of existing groups
$groupList = $this -> findGroups ();
$groupMap = array ();
foreach ( $groupList as $dn ) {
$groupMap [ extractRDNValue ( $dn )] = $dn ;
}
2018-05-20 07:31:06 +00:00
$existingUsers = $this -> getUserNames ();
2018-05-27 16:25:00 +00:00
$existingCns = $this -> getCns ();
2018-05-22 17:55:49 +00:00
$existingMailAccounts = searchLDAPByAttribute ( null , null , 'user' , array ( 'mail' , 'otherMailbox' ), array ( 'user' ));
$existingMails = array ();
foreach ( $existingMailAccounts as $existingMailAccount ) {
if ( ! empty ( $existingMailAccount [ 'mail' ][ 0 ])) {
$existingMails [] = $existingMailAccount [ 'mail' ][ 0 ];
}
if ( ! empty ( $existingMailAccount [ 'othermailbox' ][ 0 ])) {
$existingMails = array_merge ( $existingMails , $existingMailAccount [ 'othermailbox' ]);
}
}
2013-04-14 19:19:33 +00:00
$booleanOptions = array ( _ ( 'yes' ) => true , _ ( 'no' ) => false );
2013-04-06 15:00:53 +00:00
for ( $i = 0 ; $i < sizeof ( $rawAccounts ); $i ++ ) {
// add object class
2018-12-29 14:49:42 +00:00
if ( ! in_array ( 'user' , $partialAccounts [ $i ][ 'objectClass' ])) {
$partialAccounts [ $i ][ 'objectClass' ][] = 'user' ;
}
2013-11-09 13:26:31 +00:00
// userPrincipalName
if ( get_preg ( $rawAccounts [ $i ][ $ids [ 'windowsUser_userPrincipalName' ]], 'username' )) {
$partialAccounts [ $i ][ 'userPrincipalName' ] = $rawAccounts [ $i ][ $ids [ 'windowsUser_userPrincipalName' ]];
2018-05-20 07:31:06 +00:00
if ( array_key_exists ( $partialAccounts [ $i ][ 'userPrincipalName' ], $existingUsers )) {
$errMsg = $this -> messages [ 'userPrincipalName' ][ 3 ];
array_push ( $errMsg , array ( $i ));
$errors [] = $errMsg ;
}
2013-11-09 13:26:31 +00:00
}
else {
$errMsg = $this -> messages [ 'userPrincipalName' ][ 1 ];
array_push ( $errMsg , array ( $i ));
$errors [] = $errMsg ;
}
2013-12-28 10:47:50 +00:00
// first name
if ( $rawAccounts [ $i ][ $ids [ 'windowsUser_firstName' ]] != " " ) {
if ( get_preg ( $rawAccounts [ $i ][ $ids [ 'windowsUser_firstName' ]], 'realname' )) {
$partialAccounts [ $i ][ 'givenName' ] = $rawAccounts [ $i ][ $ids [ 'windowsUser_firstName' ]];
}
else {
$errMsg = $this -> messages [ 'givenName' ][ 1 ];
array_push ( $errMsg , array ( $i ));
$errors [] = $errMsg ;
}
}
// last name
if ( $rawAccounts [ $i ][ $ids [ 'windowsUser_lastName' ]] != " " ) {
if ( get_preg ( $rawAccounts [ $i ][ $ids [ 'windowsUser_lastName' ]], 'realname' )) {
$partialAccounts [ $i ][ 'sn' ] = $rawAccounts [ $i ][ $ids [ 'windowsUser_lastName' ]];
}
else {
$errMsg = $this -> messages [ 'sn' ][ 1 ];
array_push ( $errMsg , array ( $i ));
$errors [] = $errMsg ;
}
}
2013-11-09 13:26:31 +00:00
// cn
if ( $rawAccounts [ $i ][ $ids [ 'windowsUser_cn' ]] != " " ) {
if ( get_preg ( $rawAccounts [ $i ][ $ids [ 'windowsUser_cn' ]], 'cn' )) {
$partialAccounts [ $i ][ 'cn' ] = $rawAccounts [ $i ][ $ids [ 'windowsUser_cn' ]];
2018-05-27 16:25:00 +00:00
if ( array_key_exists ( $partialAccounts [ $i ][ 'cn' ], $existingCns )) {
$errMsg = $this -> messages [ 'cn' ][ 3 ];
array_push ( $errMsg , array ( $i ));
$errors [] = $errMsg ;
}
2013-04-06 15:00:53 +00:00
}
else {
$errMsg = $this -> messages [ 'cn' ][ 1 ];
array_push ( $errMsg , array ( $i ));
$errors [] = $errMsg ;
}
}
2013-11-09 13:26:31 +00:00
else {
$cn = '' ;
if ( ! empty ( $rawAccounts [ $i ][ $ids [ 'windowsUser_firstName' ]])) {
$cn = $rawAccounts [ $i ][ $ids [ 'windowsUser_firstName' ]];
}
if ( ! empty ( $rawAccounts [ $i ][ $ids [ 'windowsUser_lastName' ]])) {
$cn .= ' ' . $rawAccounts [ $i ][ $ids [ 'windowsUser_lastName' ]];
}
$cn = trim ( $cn );
if ( ! empty ( $cn )) {
$partialAccounts [ $i ][ 'cn' ] = $cn ;
}
}
// sAMAccountName
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidesAMAccountName' , true )) {
if ( ! empty ( $rawAccounts [ $i ][ $ids [ 'windowsUser_sAMAccountName' ]])) {
if ( get_preg ( $rawAccounts [ $i ][ $ids [ 'windowsUser_sAMAccountName' ]], 'username' )) {
$partialAccounts [ $i ][ 'sAMAccountName' ] = $rawAccounts [ $i ][ $ids [ 'windowsUser_sAMAccountName' ]];
}
else {
$errMsg = $this -> messages [ 'sAMAccountName' ][ 1 ];
array_push ( $errMsg , array ( $i ));
$errors [] = $errMsg ;
}
}
else {
$samUser = explode ( '@' , $partialAccounts [ $i ][ 'userPrincipalName' ]);
$partialAccounts [ $i ][ 'sAMAccountName' ] = $samUser [ 0 ];
}
}
2014-07-26 12:44:32 +00:00
else {
// set sAMAccountName to user name if not managed (W2012 requires it)
2016-11-20 09:32:13 +00:00
$parts = explode ( '@' , $partialAccounts [ $i ][ 'userPrincipalName' ]);
$partialAccounts [ $i ][ 'sAMAccountName' ] = $parts [ 0 ];
2014-07-26 12:44:32 +00:00
}
2013-04-14 19:19:33 +00:00
// password
if (( $rawAccounts [ $i ][ $ids [ 'windowsUser_password' ]] != " " ) && ( get_preg ( $rawAccounts [ $i ][ $ids [ 'windowsUser_password' ]], 'password' ))) {
2013-04-20 08:54:29 +00:00
$partialAccounts [ $i ][ 'unicodePwd' ] = self :: pwdAttributeValue ( $rawAccounts [ $i ][ $ids [ 'windowsUser_password' ]]);
2013-04-14 19:19:33 +00:00
$partialAccounts [ $i ][ 'INFO.userPasswordClearText' ] = $rawAccounts [ $i ][ $ids [ 'windowsUser_password' ]]; // for custom scripts etc.
}
2013-04-23 18:30:08 +00:00
elseif ( $rawAccounts [ $i ][ $ids [ 'windowsUser_password' ]] != " " ) {
2013-04-14 19:19:33 +00:00
$errMsg = $this -> messages [ 'userPassword' ][ 4 ];
$errMsg [ 2 ] = str_replace ( '%' , '%%' , $errMsg [ 2 ]); // double "%" because of later sprintf
array_push ( $errMsg , array ( $i ));
$errors [] = $errMsg ;
}
// display name
if ( $rawAccounts [ $i ][ $ids [ 'windowsUser_displayName' ]] != " " ) {
$partialAccounts [ $i ][ 'displayName' ] = $rawAccounts [ $i ][ $ids [ 'windowsUser_displayName' ]];
}
2013-11-09 13:26:31 +00:00
elseif ( ! empty ( $partialAccounts [ $i ][ 'cn' ])) {
$partialAccounts [ $i ][ 'displayName' ] = $partialAccounts [ $i ][ 'cn' ];
}
2013-04-14 19:19:33 +00:00
// initials
2014-04-18 18:29:51 +00:00
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_initials' , 'initials' );
2013-04-06 15:00:53 +00:00
// description
2014-04-18 18:29:51 +00:00
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_description' , 'description' );
2013-04-14 19:19:33 +00:00
// street
2014-04-18 18:29:51 +00:00
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_streetAddress' , 'streetAddress' );
2013-04-14 19:19:33 +00:00
// post office box
2014-04-18 18:29:51 +00:00
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_postOfficeBox' , 'postOfficeBox' );
2013-04-14 19:19:33 +00:00
// postal code
2014-04-18 18:29:51 +00:00
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_postalCode' , 'postalCode' ,
'postalCode' , $this -> messages [ 'postalCode' ][ 1 ], $errors );
2013-04-06 15:00:53 +00:00
// location
2014-04-18 18:29:51 +00:00
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_l' , 'l' );
2013-04-14 19:19:33 +00:00
// state
2014-04-18 18:29:51 +00:00
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_state' , 'st' );
2013-04-14 19:19:33 +00:00
// office name
2014-04-18 18:29:51 +00:00
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_officeName' , 'physicalDeliveryOfficeName' );
2013-04-14 19:19:33 +00:00
// mail
if ( $rawAccounts [ $i ][ $ids [ 'windowsUser_mail' ]] != " " ) {
if ( get_preg ( $rawAccounts [ $i ][ $ids [ 'windowsUser_mail' ]], 'email' )) {
$partialAccounts [ $i ][ 'mail' ] = $rawAccounts [ $i ][ $ids [ 'windowsUser_mail' ]];
2018-05-22 17:55:49 +00:00
if ( in_array_ignore_case ( $partialAccounts [ $i ][ 'mail' ], $existingMails )) {
$errMsg = $this -> messages [ 'mail' ][ 3 ];
array_push ( $errMsg , array ( $i , $partialAccounts [ $i ][ 'mail' ]));
$errors [] = $errMsg ;
}
2013-04-14 19:19:33 +00:00
}
else {
$errMsg = $this -> messages [ 'mail' ][ 1 ];
array_push ( $errMsg , array ( $i ));
$errors [] = $errMsg ;
}
}
2013-04-27 17:38:01 +00:00
// mail aliases
if ( isset ( $ids [ 'windowsUser_otherMailbox' ]) && ( $rawAccounts [ $i ][ $ids [ 'windowsUser_otherMailbox' ]] != " " )) {
$valueList = preg_split ( '/;[ ]*/' , $rawAccounts [ $i ][ $ids [ 'windowsUser_otherMailbox' ]]);
$partialAccounts [ $i ][ 'otherMailbox' ] = $valueList ;
for ( $x = 0 ; $x < sizeof ( $valueList ); $x ++ ) {
if ( ! get_preg ( $valueList [ $x ], 'email' )) {
$errMsg = $this -> messages [ 'otherMailbox' ][ 1 ];
array_push ( $errMsg , array ( $i ));
$errors [] = $errMsg ;
break ;
}
2018-05-22 17:55:49 +00:00
if ( in_array_ignore_case ( $valueList [ $x ], $existingMails )) {
$errMsg = $this -> messages [ 'otherMailbox' ][ 3 ];
array_push ( $errMsg , array ( $i , $valueList [ $x ]));
$errors [] = $errMsg ;
}
2013-04-27 17:38:01 +00:00
}
}
2013-04-14 19:19:33 +00:00
// telephone
2014-04-18 18:29:51 +00:00
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_telephoneNumber' , 'telephoneNumber' ,
'telephone' , $this -> messages [ 'telephoneNumber' ][ 1 ], $errors );
2013-04-14 19:19:33 +00:00
// other telephone
2015-08-16 16:43:42 +00:00
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_otherTelephone' , 'otherTelephone' , 'telephone' , $this -> messages [ 'otherTelephone' ][ 1 ], $errors , '/;[ ]*/' );
2016-01-03 15:43:28 +00:00
// fax number
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidefacsimileTelephoneNumber' )) {
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_facsimileTelephoneNumber' , 'facsimileTelephoneNumber' ,
'telephone' , $this -> messages [ 'facsimileTelephoneNumber' ][ 1 ], $errors );
}
2013-04-14 19:19:33 +00:00
// website
2014-04-18 18:29:51 +00:00
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_webSite' , 'wWWHomePage' );
2013-04-14 19:19:33 +00:00
// other websites
2015-08-16 16:43:42 +00:00
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_otherWebSites' , 'url' , null , null , $errors , '/;[ ]*/' );
2013-04-14 19:19:33 +00:00
// user account control
$userAccountControlAttr [ 'userAccountControl' ][ 0 ] = windowsUser :: DEFAULT_ACCOUNT_CONTROL ;
// deactivated
if ( $rawAccounts [ $i ][ $ids [ 'windowsUser_deactivated' ]] != " " ) {
if ( ! isset ( $booleanOptions [ $rawAccounts [ $i ][ $ids [ 'windowsUser_deactivated' ]]])) {
$errors [] = array ( 'ERROR' , sprintf ( _ ( 'Account %s:' ), $i ) . ' windowsUser_deactivated' , _ ( 'Please enter either yes or no.' ));
}
else {
2013-04-20 08:32:12 +00:00
$this -> setIsDeactivated ( $booleanOptions [ $rawAccounts [ $i ][ $ids [ 'windowsUser_deactivated' ]]], $userAccountControlAttr );
2013-04-14 19:19:33 +00:00
}
}
// password does not expire
if ( $rawAccounts [ $i ][ $ids [ 'windowsUser_noExpire' ]] != " " ) {
if ( ! isset ( $booleanOptions [ $rawAccounts [ $i ][ $ids [ 'windowsUser_noExpire' ]]])) {
$errors [] = array ( 'ERROR' , sprintf ( _ ( 'Account %s:' ), $i ) . ' windowsUser_noExpire' , _ ( 'Please enter either yes or no.' ));
}
else {
$this -> setIsNeverExpiring ( $userAccountControlAttr , $booleanOptions [ $rawAccounts [ $i ][ $ids [ 'windowsUser_noExpire' ]]]);
}
}
2015-11-02 20:53:20 +00:00
// account expiration
if ( ! empty ( $rawAccounts [ $i ][ $ids [ 'windowsUser_accountExpires' ]])) {
if ( get_preg ( $rawAccounts [ $i ][ $ids [ 'windowsUser_accountExpires' ]], 'date' )) {
$dateParts = explode ( '-' , $rawAccounts [ $i ][ $ids [ 'windowsUser_accountExpires' ]]);
$partialAccounts [ $i ][ 'accountExpires' ] = $this -> buildExpirationDate ( $dateParts [ 2 ], $dateParts [ 1 ], $dateParts [ 0 ]);
}
else {
$errMsg = $this -> messages [ 'accountExpires' ][ 1 ];
array_push ( $errMsg , array ( $i ));
$errors [] = $errMsg ;
}
}
2013-04-14 19:19:33 +00:00
// require smartcard
if ( $rawAccounts [ $i ][ $ids [ 'windowsUser_requireCard' ]] != " " ) {
if ( ! isset ( $booleanOptions [ $rawAccounts [ $i ][ $ids [ 'windowsUser_requireCard' ]]])) {
$errors [] = array ( 'ERROR' , sprintf ( _ ( 'Account %s:' ), $i ) . ' windowsUser_requireCard' , _ ( 'Please enter either yes or no.' ));
}
else {
$this -> setIsSmartCardRequired ( $userAccountControlAttr , $booleanOptions [ $rawAccounts [ $i ][ $ids [ 'windowsUser_requireCard' ]]]);
}
}
$partialAccounts [ $i ][ 'userAccountControl' ][ 0 ] = $userAccountControlAttr [ 'userAccountControl' ][ 0 ];
// end user account control
// password change at next login
2018-12-29 14:49:42 +00:00
if (( $rawAccounts [ $i ][ $ids [ 'windowsUser_pwdMustChange' ]] != " " )
&& ! isset ( $booleanOptions [ $rawAccounts [ $i ][ $ids [ 'windowsUser_pwdMustChange' ]]])) {
$errors [] = array ( 'ERROR' , sprintf ( _ ( 'Account %s:' ), $i ) . ' windowsUser_pwdMustChange' , _ ( 'Please enter either yes or no.' ));
2013-04-14 19:19:33 +00:00
// attribute must be set in postModify
}
// profile path
if ( $rawAccounts [ $i ][ $ids [ 'windowsUser_profilePath' ]] != " " ) {
if ( get_preg ( $rawAccounts [ $i ][ $ids [ 'windowsUser_profilePath' ]], 'UNC' )) {
$partialAccounts [ $i ][ 'profilePath' ] = $rawAccounts [ $i ][ $ids [ 'windowsUser_profilePath' ]];
}
else {
$errMsg = $this -> messages [ 'profilePath' ][ 1 ];
array_push ( $errMsg , array ( $i ));
$errors [] = $errMsg ;
}
}
// logon script
if ( $rawAccounts [ $i ][ $ids [ 'windowsUser_scriptPath' ]] != " " ) {
if ( get_preg ( $rawAccounts [ $i ][ $ids [ 'windowsUser_scriptPath' ]], 'logonscript' )) {
$partialAccounts [ $i ][ 'scriptPath' ] = $rawAccounts [ $i ][ $ids [ 'windowsUser_scriptPath' ]];
}
else {
$errMsg = $this -> messages [ 'scriptPath' ][ 1 ];
array_push ( $errMsg , array ( $i ));
$errors [] = $errMsg ;
}
}
2013-11-23 14:40:06 +00:00
// home drive
if ( ! empty ( $rawAccounts [ $i ][ $ids [ 'windowsUser_homeDrive' ]])) {
if ( preg_match ( " /[d-z]:/i " , $rawAccounts [ $i ][ $ids [ 'windowsUser_homeDrive' ]])) {
$partialAccounts [ $i ][ 'homeDrive' ] = strtoupper ( $rawAccounts [ $i ][ $ids [ 'windowsUser_homeDrive' ]]);
}
else {
$errMsg = $this -> messages [ 'homeDrive' ][ 0 ];
array_push ( $errMsg , array ( $i ));
$errors [] = $errMsg ;
}
}
// home directory
if ( $rawAccounts [ $i ][ $ids [ 'windowsUser_homeDirectory' ]] != " " ) {
if ( empty ( $partialAccounts [ $i ][ 'homeDrive' ]) || get_preg ( $rawAccounts [ $i ][ $ids [ 'windowsUser_homeDirectory' ]], 'UNC' )) {
$partialAccounts [ $i ][ 'homeDirectory' ] = $rawAccounts [ $i ][ $ids [ 'windowsUser_homeDirectory' ]];
}
else {
$errMsg = $this -> messages [ 'homeDirectory' ][ 1 ];
array_push ( $errMsg , array ( $i ));
$errors [] = $errMsg ;
}
}
2020-02-08 14:43:11 +00:00
// workstations
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_workstations' , 'userWorkstations' ,
'workstations' , $this -> messages [ 'workstations' ][ 1 ], $errors );
2013-04-14 19:19:33 +00:00
// groups
if ( isset ( $ids [ 'windowsUser_groups' ]) && ( $rawAccounts [ $i ][ $ids [ 'windowsUser_groups' ]] != " " )) {
$valueList = preg_split ( '/;[ ]*/' , $rawAccounts [ $i ][ $ids [ 'windowsUser_groups' ]]);
$invalidGroups = array ();
foreach ( $valueList as $group ) {
if ( ! in_array ( $group , $groupList ) && ! isset ( $groupMap [ $group ])) {
$invalidGroups [] = $group ;
}
}
if ( sizeof ( $invalidGroups ) > 0 ) {
$errors [] = array ( 'ERROR' , sprintf ( _ ( 'Account %s:' ), $i ) . ' windowsUser_groups' ,
_ ( 'LAM was unable to find a group with this name!' ) . '<br>' . htmlspecialchars ( implode ( '; ' , $invalidGroups )));
}
}
2014-02-12 19:39:51 +00:00
// NIS name
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemsSFU30Name' , true )) {
2014-04-18 18:29:51 +00:00
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_msSFU30Name' , 'msSFU30Name' ,
'username' , $this -> messages [ 'msSFU30Name' ][ 1 ], $errors );
2014-02-12 19:39:51 +00:00
}
// NIS domain
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemsSFU30NisDomain' , true )) {
2014-04-18 18:29:51 +00:00
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_msSFU30NisDomain' , 'msSFU30NisDomain' );
2014-02-12 19:39:51 +00:00
}
2015-11-08 16:33:08 +00:00
// title
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidetitle' , true )) {
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_title' , 'title' , 'title' , $this -> messages [ 'title' ][ 1 ], $errors );
}
// carLicense
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidecarLicense' , true )) {
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_carLicense' , 'carLicense' );
}
// employee number
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideemployeeNumber' , true )) {
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_employeeNumber' , 'employeeNumber' );
}
// employee type
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideemployeeType' , true )) {
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_employeeType' , 'employeeType' ,
'employeeType' , $this -> messages [ 'employeeType' ][ 1 ], $errors );
}
// business category
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidebusinessCategory' , true )) {
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_businessCategory' , 'businessCategory' , 'businessCategory' , $this -> messages [ 'businessCategory' ][ 1 ], $errors , '/;[ ]*/' );
}
// departments
2017-03-04 10:14:17 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartment' , true )) {
2018-10-20 17:44:23 +00:00
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_department' , 'department' , null , null , $errors );
}
// department numbers
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartmentNumber' , true )) {
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_departmentNumber' , 'departmentNumber' , null , null , $errors , '/;[ ]*/' );
2015-11-08 16:33:08 +00:00
}
// organisational unit
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideou' , true )) {
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_ou' , 'ou' , null , null , $errors , '/;[ ]*/' );
}
// organisation
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideo' , true )) {
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_o' , 'o' , null , null , $errors , '/;[ ]*/' );
}
// manager
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemanager' , true )) {
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_manager' , 'manager' , 'dn' , $this -> messages [ 'manager' ][ 0 ], $errors );
}
2016-11-09 18:22:43 +00:00
// company
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidecompany' , true )) {
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_company' , 'company' );
}
// mobile
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidemobile' , true )) {
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_mobile' , 'mobile' ,
'telephone' , $this -> messages [ 'mobile' ][ 1 ], $errors );
}
// other mobile
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideotherMobile' , true )) {
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_otherMobile' , 'otherMobile' ,
'telephone' , $this -> messages [ 'otherMobile' ][ 1 ], $errors , '/;[ ]*/' );
}
// pager
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidepager' , true )) {
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_pager' , 'pager' ,
'telephone' , $this -> messages [ 'pager' ][ 1 ], $errors );
}
// other pager
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideotherPager' , true )) {
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_otherPager' , 'otherPager' ,
'telephone' , $this -> messages [ 'otherPager' ][ 1 ], $errors , '/;[ ]*/' );
}
2016-11-09 20:46:27 +00:00
// Proxy-Addresses
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideproxyAddresses' , true )) {
$this -> mapSimpleUploadField ( $rawAccounts , $ids , $partialAccounts , $i , 'windowsUser_proxyAddresses' , 'proxyAddresses' ,
null , null , $errors , '/;[ ]*/' );
}
2013-04-06 15:00:53 +00:00
}
return $errors ;
}
2015-08-04 18:41:12 +00:00
2013-04-14 19:19:33 +00:00
/**
2017-05-10 17:23:28 +00:00
* { @ inheritDoc }
* @ see baseModule :: doUploadPostActions ()
*/
2017-09-02 11:03:36 +00:00
function doUploadPostActions ( & $data , $ids , $failed , & $temp , & $accounts , $selectedModules , $type ) {
2014-01-15 20:48:52 +00:00
if ( ! checkIfWriteAccessIsAllowed ( $this -> get_scope ())) {
2013-04-14 19:19:33 +00:00
die ();
}
// on first call generate list of ldap operations
if ( ! isset ( $temp [ 'counter' ])) {
$groupList = $this -> findGroups ();
$groupMap = array ();
foreach ( $groupList as $dn ) {
$groupMap [ extractRDNValue ( $dn )] = $dn ;
}
$temp [ 'groups' ] = & $groupList ;
$temp [ 'groupMap' ] = & $groupMap ;
$temp [ 'members' ] = array ();
$temp [ 'memberCount' ] = 0 ;
$temp [ 'pwdChange' ] = array ();
$temp [ 'pwdChangeCount' ] = 0 ;
$groupCol = $ids [ 'windowsUser_groups' ];
$passwordChangeRequiredCol = $ids [ 'windowsUser_pwdMustChange' ];
for ( $i = 0 ; $i < sizeof ( $data ); $i ++ ) {
if ( in_array ( $i , $failed )) continue ; // ignore failed accounts
if ( $data [ $i ][ $groupCol ] != " " ) {
$groups = preg_split ( '/;[ ]*/' , $data [ $i ][ $groupCol ]);
for ( $g = 0 ; $g < sizeof ( $groups ); $g ++ ) {
if ( in_array ( $groups [ $g ], $temp [ 'groups' ])) {
$temp [ 'members' ][ $groups [ $g ]][] = $accounts [ $i ][ 'dn' ];
}
elseif ( isset ( $temp [ 'groupMap' ][ $groups [ $g ]])) {
$temp [ 'members' ][ $temp [ 'groupMap' ][ $groups [ $g ]]][] = $accounts [ $i ][ 'dn' ];
}
}
}
if ( isset ( $data [ $i ][ $passwordChangeRequiredCol ]) && ( $data [ $i ][ $passwordChangeRequiredCol ] == _ ( 'yes' ))) {
$temp [ 'pwdChange' ][] = $accounts [ $i ][ 'dn' ];
}
}
$temp [ 'memberCount' ] = sizeof ( $temp [ 'members' ]);
$temp [ 'pwdChangeCount' ] = sizeof ( $temp [ 'pwdChange' ]);
$temp [ 'counter' ] = $temp [ 'memberCount' ] + $temp [ 'pwdChangeCount' ];
return array (
'status' => 'inProgress' ,
'progress' => 0 ,
'errors' => array ()
);
}
// add users to groups
elseif ( sizeof ( $temp [ 'members' ]) > 0 ) {
$keys = array_keys ( $temp [ 'members' ]);
$group = $keys [ 0 ];
$member = array_pop ( $temp [ 'members' ][ $group ]);
$success = @ ldap_mod_add ( $_SESSION [ 'ldap' ] -> server (), $group , array ( 'member' => $member ));
$errors = array ();
if ( ! $success ) {
$errors [] = array (
" ERROR " ,
_ ( " LAM was unable to modify group memberships for group: %s " ),
2013-10-16 17:37:17 +00:00
getDefaultLDAPErrorString ( $_SESSION [ 'ldap' ] -> server ()),
2013-04-14 19:19:33 +00:00
array ( $group )
);
}
if ( sizeof ( $temp [ 'members' ][ $group ]) == 0 ) {
unset ( $temp [ 'members' ][ $group ]);
}
$memberPercentage = ( 100 * ( $temp [ 'memberCount' ] - sizeof ( $temp [ 'members' ]))) / $temp [ 'counter' ];
return array (
'status' => 'inProgress' ,
'progress' => $memberPercentage ,
'errors' => $errors
);
}
// force password change
elseif ( sizeof ( $temp [ 'pwdChange' ]) > 0 ) {
$dn = array_pop ( $temp [ 'pwdChange' ]);
$success = @ ldap_mod_replace ( $_SESSION [ 'ldap' ] -> server (), $dn , array ( 'pwdLastSet' => '0' ));
$errors = array ();
if ( ! $success ) {
$errors [] = array (
" ERROR " ,
_ ( " Was unable to modify attributes of DN: %s. " ),
2013-10-16 17:37:17 +00:00
getDefaultLDAPErrorString ( $_SESSION [ 'ldap' ] -> server ()),
2013-04-14 19:19:33 +00:00
array ( $dn )
);
}
$pwdPercentage = ( 100 * ( $temp [ 'memberCount' ] + ( $temp [ 'pwdChangeCount' ] - sizeof ( $temp [ 'pwdChange' ])))) / $temp [ 'counter' ];
return array (
'status' => 'inProgress' ,
'progress' => $pwdPercentage ,
'errors' => $errors
);
}
// all modifications are done
else {
return array (
'status' => 'finished' ,
'progress' => 100 ,
'errors' => array ()
);
}
}
2015-08-04 18:41:12 +00:00
2013-04-06 15:00:53 +00:00
/**
2017-02-19 08:14:11 +00:00
* { @ inheritDoc }
* @ see baseModule :: get_pdfEntries ()
2015-01-07 17:16:35 +00:00
*/
2017-04-01 07:57:03 +00:00
public function get_pdfEntries ( $pdfKeys , $typeId ) {
2013-04-06 15:00:53 +00:00
$return = array ();
2013-11-09 13:26:31 +00:00
$this -> addSimplePDFField ( $return , 'userPrincipalName' , _ ( 'User name' ));
$this -> addSimplePDFField ( $return , 'cn' , _ ( 'Common name' ));
$this -> addSimplePDFField ( $return , 'sAMAccountName' , _ ( 'User name (pre W2K)' ));
2013-04-06 15:00:53 +00:00
$this -> addSimplePDFField ( $return , 'description' , _ ( 'Description' ));
$this -> addSimplePDFField ( $return , 'displayName' , _ ( 'Display name' ));
$this -> addSimplePDFField ( $return , 'givenName' , _ ( 'First name' ));
$this -> addSimplePDFField ( $return , 'initials' , _ ( 'Initials' ));
$this -> addSimplePDFField ( $return , 'l' , _ ( 'Location' ));
$this -> addSimplePDFField ( $return , 'mail' , _ ( 'Email address' ));
2013-04-27 17:38:01 +00:00
$this -> addSimplePDFField ( $return , 'otherMailbox' , _ ( 'Email alias' ));
2013-04-06 15:00:53 +00:00
$this -> addSimplePDFField ( $return , 'otherTelephone' , _ ( 'Other telephone numbers' ));
$this -> addSimplePDFField ( $return , 'physicalDeliveryOfficeName' , _ ( 'Office name' ));
$this -> addSimplePDFField ( $return , 'postalCode' , _ ( 'Postal code' ));
$this -> addSimplePDFField ( $return , 'postOfficeBox' , _ ( 'Post office box' ));
$this -> addSimplePDFField ( $return , 'sn' , _ ( 'Last name' ));
$this -> addSimplePDFField ( $return , 'st' , _ ( 'State' ));
$this -> addSimplePDFField ( $return , 'streetAddress' , _ ( 'Street' ));
$this -> addSimplePDFField ( $return , 'telephoneNumber' , _ ( 'Telephone number' ));
2016-01-03 15:43:28 +00:00
$this -> addSimplePDFField ( $return , 'facsimileTelephoneNumber' , _ ( 'Fax number' ));
2016-11-09 18:22:43 +00:00
$this -> addSimplePDFField ( $return , 'company' , _ ( 'Company' ));
$this -> addSimplePDFField ( $return , 'pager' , _ ( 'Pager' ));
$this -> addSimplePDFField ( $return , 'otherPager' , _ ( 'Other pagers' ));
$this -> addSimplePDFField ( $return , 'mobile' , _ ( 'Mobile' ));
$this -> addSimplePDFField ( $return , 'otherMobile' , _ ( 'Other mobiles' ));
2016-11-09 20:46:27 +00:00
$this -> addSimplePDFField ( $return , 'proxyAddresses' , _ ( 'Proxy-Addresses' ));
2013-04-06 15:00:53 +00:00
$this -> addSimplePDFField ( $return , 'url' , _ ( 'Other web sites' ));
$this -> addSimplePDFField ( $return , 'wWWHomePage' , _ ( 'Web site' ));
2014-02-12 19:39:51 +00:00
$this -> addSimplePDFField ( $return , 'msSFU30Name' , _ ( 'NIS name' ));
$this -> addSimplePDFField ( $return , 'msSFU30NisDomain' , _ ( 'NIS domain' ));
2015-11-08 16:33:08 +00:00
$this -> addSimplePDFField ( $return , 'title' , _ ( 'Job title' ));
$this -> addSimplePDFField ( $return , 'carLicense' , _ ( 'Car license' ));
$this -> addSimplePDFField ( $return , 'employeeNumber' , _ ( 'Employee number' ));
$this -> addSimplePDFField ( $return , 'employeeType' , _ ( 'Employee type' ));
$this -> addSimplePDFField ( $return , 'businessCategory' , _ ( 'Business category' ));
2017-03-04 10:14:17 +00:00
$this -> addSimplePDFField ( $return , 'department' , _ ( 'Department' ));
2018-10-20 17:44:23 +00:00
$this -> addSimplePDFField ( $return , 'departmentNumber' , _ ( 'Department number' ));
2015-11-08 16:33:08 +00:00
$this -> addSimplePDFField ( $return , 'ou' , _ ( 'Organisational unit' ));
$this -> addSimplePDFField ( $return , 'o' , _ ( 'Organisation' ));
$this -> addSimplePDFField ( $return , 'manager' , _ ( 'Manager' ));
2020-02-08 14:43:11 +00:00
$this -> addSimplePDFField ( $return , 'userWorkstations' , _ ( 'Workstations' ));
2013-04-14 19:19:33 +00:00
$deactivated = _ ( 'no' );
if ( $this -> isDeactivated ( $this -> attributes )) {
$deactivated = _ ( 'yes' );
}
2015-03-15 17:38:03 +00:00
$this -> addPDFKeyValue ( $return , 'deactivated' , _ ( 'Account is deactivated' ), $deactivated );
2013-04-14 19:19:33 +00:00
$noExpire = _ ( 'no' );
if ( $this -> isNeverExpiring ( $this -> attributes )) {
$noExpire = _ ( 'yes' );
}
2015-03-15 17:38:03 +00:00
$this -> addPDFKeyValue ( $return , 'noExpire' , _ ( 'Password does not expire' ), $noExpire );
2015-11-02 20:53:20 +00:00
$this -> addPDFKeyValue ( $return , 'accountExpires' , _ ( 'Account expiration date' ), $this -> formatAccountExpires ());
2013-04-14 19:19:33 +00:00
$requireCard = _ ( 'no' );
if ( $this -> isSmartCardRequired ( $this -> attributes )) {
$requireCard = _ ( 'yes' );
}
2015-03-15 17:38:03 +00:00
$this -> addPDFKeyValue ( $return , 'requireCard' , _ ( 'Require smartcard' ), $requireCard );
2013-04-14 19:19:33 +00:00
$pwdMustChange = _ ( 'no' );
if ( isset ( $this -> attributes [ 'pwdLastSet' ][ 0 ]) && ( $this -> attributes [ 'pwdLastSet' ][ 0 ] === '0' )) {
$pwdMustChange = _ ( 'yes' );
}
2015-03-15 17:38:03 +00:00
$this -> addPDFKeyValue ( $return , 'pwdMustChange' , _ ( 'Password change at next login' ), $pwdMustChange );
2013-04-14 19:19:33 +00:00
$this -> addSimplePDFField ( $return , 'profilePath' , _ ( 'Profile path' ));
$this -> addSimplePDFField ( $return , 'scriptPath' , _ ( 'Logon script' ));
2013-11-23 14:40:06 +00:00
$this -> addSimplePDFField ( $return , 'homeDirectory' , _ ( 'Home directory' ));
$this -> addSimplePDFField ( $return , 'homeDrive' , _ ( 'Home drive' ));
2013-04-14 19:19:33 +00:00
$groups = array ();
foreach ( $this -> groupList as $group ) {
$groups [] = extractRDNValue ( $group );
}
2015-03-15 17:38:03 +00:00
$this -> addPDFKeyValue ( $return , 'groups' , _ ( 'Groups' ), $groups );
2013-04-21 18:53:39 +00:00
// password
if ( isset ( $this -> clearTextPassword )) {
2015-03-15 17:38:03 +00:00
$this -> addPDFKeyValue ( $return , 'password' , _ ( 'Password' ), $this -> clearTextPassword );
2013-04-21 18:53:39 +00:00
}
else if ( isset ( $this -> attributes [ 'INFO.userPasswordClearText' ])) {
2015-03-15 17:38:03 +00:00
$this -> addPDFKeyValue ( $return , 'password' , _ ( 'Password' ), $this -> attributes [ 'INFO.userPasswordClearText' ]);
2013-04-21 18:53:39 +00:00
}
2015-09-02 16:39:30 +00:00
// last password change
$this -> addPDFKeyValue ( $return , 'pwdLastSet' , _ ( 'Last password change' ), $this -> formatPwdLastSet ());
// last login
$this -> addPDFKeyValue ( $return , 'lastLogonTimestamp' , _ ( 'Last login' ), $this -> formatLastLogonTimestamp ());
2013-04-06 15:00:53 +00:00
return $return ;
}
2015-08-04 18:41:12 +00:00
2013-04-14 19:19:33 +00:00
/**
2017-03-30 18:39:24 +00:00
* { @ inheritDoc }
2013-04-14 19:19:33 +00:00
*/
2017-03-30 18:39:24 +00:00
function get_profileOptions ( $typeId ) {
$return = parent :: get_profileOptions ( $typeId );
2013-11-09 13:26:31 +00:00
// domain
$domains = $this -> getDomains ();
$domains [] = '' ;
2018-05-19 09:14:31 +00:00
$return -> add ( new htmlResponsiveSelect ( 'windowsUser_userPrincipalNameDomain' , $domains , array (), _ ( 'Domain' ), 'userPrincipalNameDomain' ), 12 );
2013-11-09 13:26:31 +00:00
// group memberships
2013-04-14 19:19:33 +00:00
$groups = $this -> findGroups ();
2019-05-12 18:51:46 +00:00
$groupOptions = array ();
2013-04-14 19:19:33 +00:00
foreach ( $groups as $dn ) {
2019-05-12 18:51:46 +00:00
$groupOptions [ extractRDNValue ( $dn )] = $dn ;
2013-04-14 19:19:33 +00:00
}
2019-05-12 18:51:46 +00:00
$groupSelect = new htmlResponsiveSelect ( 'windowsUser_groups' , $groupOptions , array (), _ ( 'Groups' ), 'groups' , 10 );
2013-04-14 19:19:33 +00:00
$groupSelect -> setHasDescriptiveElements ( true );
$groupSelect -> setMultiSelect ( true );
2018-05-19 09:14:31 +00:00
$return -> add ( $groupSelect , 12 );
2019-05-12 18:51:46 +00:00
// home drive
$drives = array ( '-' );
for ( $i = 90 ; $i > 67 ; $i -- ) {
$drives [] = chr ( $i ) . ':' ;
}
$driveSelect = new htmlResponsiveSelect ( 'windowsUser_homeDrive' , $drives , array ( '-' ), _ ( 'Home drive' ), 'homeDrive' );
$return -> add ( $driveSelect , 12 );
2019-05-20 11:10:06 +00:00
// force password change
$passwordChangeCheckbox = new htmlResponsiveInputCheckbox ( 'windowsUser_pwdMustChange' , true , _ ( 'Password change at next login' ), 'pwdMustChange' );
$return -> add ( $passwordChangeCheckbox , 12 );
2020-02-08 14:43:11 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideWorkstations' )) {
// allowed workstations
$return -> add ( new htmlResponsiveInputField ( _ ( 'Workstations' ), 'windowsUser_userWorkstations' , '' , 'workstations' ), 12 );
}
2013-04-14 19:19:33 +00:00
return $return ;
}
2015-08-04 18:41:12 +00:00
2013-04-14 19:19:33 +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 );
2013-11-09 13:26:31 +00:00
// load domain
if ( isset ( $profile [ 'windowsUser_userPrincipalNameDomain' ][ 0 ])) {
$user = empty ( $this -> attributes [ 'userPrincipalName' ][ 0 ]) ? '' : $this -> attributes [ 'userPrincipalName' ][ 0 ];
$user = explode ( '@' , $user );
$user = $user [ 0 ] . '@' . $profile [ 'windowsUser_userPrincipalNameDomain' ][ 0 ];
$this -> attributes [ 'userPrincipalName' ][ 0 ] = $user ;
}
2013-04-14 19:19:33 +00:00
// load groups
if ( isset ( $profile [ 'windowsUser_groups' ][ 0 ])) {
$this -> groupList = $profile [ 'windowsUser_groups' ];
}
2013-12-28 10:47:50 +00:00
// other mailboxes
if ( ! empty ( $profile [ 'windowsUser_otherMailbox' ][ 0 ])) {
$this -> attributes [ 'otherMailbox' ] = preg_split ( '/;[ ]*/' , $profile [ 'windowsUser_otherMailbox' ][ 0 ]);
}
2015-11-02 20:53:20 +00:00
// account expiration date
if ( ! empty ( $profile [ 'windowsUser_accountExpires' ][ 0 ]) && is_numeric ( $profile [ 'windowsUser_accountExpires' ][ 0 ])) {
$numDays = $profile [ 'windowsUser_accountExpires' ][ 0 ];
$date = new DateTime ( 'now' , getTimeZone ());
$toAdd = new DateInterval ( 'P' . $numDays . 'D' );
$dateTarget = $date -> add ( $toAdd );
$this -> setExpirationDate ( $dateTarget -> format ( 'Y' ), $dateTarget -> format ( 'm' ), $dateTarget -> format ( 'd' ));
}
2015-11-07 14:44:34 +00:00
// departments
2018-12-29 14:49:42 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartment' )
&& isset ( $profile [ 'windowsUser_department' ][ 0 ])
&& ( $profile [ 'windowsUser_department' ][ 0 ] != '' )) {
$departments = explode ( ';' , $profile [ 'windowsUser_department' ][ 0 ]);
// remove extra spaces and set attributes
$this -> attributes [ 'department' ] = array_map ( 'trim' , $departments );
2015-11-07 14:44:34 +00:00
}
2018-10-20 17:44:23 +00:00
// department numbers
2018-12-29 14:49:42 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartmentNumber' )
&& ! empty ( $profile [ 'windowsUser_departmentNumber' ][ 0 ])) {
$departmentNumbers = explode ( ';' , $profile [ 'windowsUser_departmentNumber' ][ 0 ]);
// remove extra spaces and set attributes
$this -> attributes [ 'departmentNumber' ] = array_map ( 'trim' , $departmentNumbers );
2018-10-20 17:44:23 +00:00
}
2015-11-07 14:44:34 +00:00
// organizational unit
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideou' ) && isset ( $profile [ 'windowsUser_ou' ][ 0 ])) {
$oList = preg_split ( '/;[ ]*/' , $profile [ 'windowsUser_ou' ][ 0 ]);
$this -> attributes [ 'ou' ] = $oList ;
}
// organisation
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideo' ) && isset ( $profile [ 'windowsUser_o' ][ 0 ])) {
$oList = preg_split ( '/;[ ]*/' , $profile [ 'windowsUser_o' ][ 0 ]);
$this -> attributes [ 'o' ] = $oList ;
}
2019-05-20 11:10:06 +00:00
// force password change
if ( isset ( $profile [ 'windowsUser_pwdMustChange' ][ 0 ]) && ( $profile [ 'windowsUser_pwdMustChange' ][ 0 ] == " true " )) {
$this -> attributes [ 'pwdLastSet' ][ 0 ] = '0' ;
}
elseif ( isset ( $profile [ 'windowsUser_pwdMustChange' ][ 0 ]) && ( $profile [ 'windowsUser_pwdMustChange' ][ 0 ] == " false " )) {
if ( isset ( $this -> orig [ 'pwdLastSet' ][ 0 ]) && ( $this -> orig [ 'pwdLastSet' ][ 0 ] !== '0' )) {
$this -> attributes [ 'pwdLastSet' ][ 0 ] = $this -> orig [ 'pwdLastSet' ][ 0 ];
}
else {
$this -> attributes [ 'pwdLastSet' ][ 0 ] = '-1' ;
}
}
2013-04-14 19:19:33 +00:00
}
2013-04-20 12:52:30 +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
* @ 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
* @ param array $readOnlyFields list of read - only fields
2015-08-04 18:41:12 +00:00
* @ return array list of meta HTML elements ( field name => htmlResponsiveRow )
2013-04-20 12:52:30 +00:00
*/
function getSelfServiceOptions ( $fields , $attributes , $passwordChangeOnly , $readOnlyFields ) {
$return = array ();
if ( in_array ( 'unicodePwd' , $fields )) {
2015-08-04 18:41:12 +00:00
$row = new htmlResponsiveRow ();
$pwd1 = new htmlResponsiveInputField ( $this -> getSelfServiceLabel ( 'unicodePwd' , _ ( 'New password' )), 'windowsUser_unicodePwd' );
2014-05-25 17:29:19 +00:00
$pwd1 -> setIsPassword ( true , true );
2015-08-04 18:41:12 +00:00
$pwd1 -> setFieldSize ( null );
$row -> add ( $pwd1 , 12 );
$pwd2 = new htmlResponsiveInputField ( _ ( 'Reenter password' ), 'windowsUser_unicodePwd2' );
2013-04-20 12:52:30 +00:00
$pwd2 -> setIsPassword ( true );
2015-08-04 18:41:12 +00:00
$pwd2 -> setFieldSize ( null );
2014-05-25 14:37:05 +00:00
$pwd2 -> setSameValueFieldID ( 'windowsUser_unicodePwd' );
2015-08-04 18:41:12 +00:00
$row -> add ( $pwd2 , 12 );
$return [ 'unicodePwd' ] = $row ;
2013-04-20 12:52:30 +00:00
}
if ( $passwordChangeOnly ) {
return $return ; // only password fields as long no LDAP content can be read
}
2013-04-20 16:13:16 +00:00
$this -> addSimpleSelfServiceTextField ( $return , 'physicalDeliveryOfficeName' , _ ( 'Office name' ), $fields , $attributes , $readOnlyFields );
$this -> addSimpleSelfServiceTextField ( $return , 'telephoneNumber' , _ ( 'Telephone number' ), $fields , $attributes , $readOnlyFields );
2016-01-03 15:43:28 +00:00
$this -> addSimpleSelfServiceTextField ( $return , 'facsimileTelephoneNumber' , _ ( 'Fax number' ), $fields , $attributes , $readOnlyFields );
2013-04-20 16:13:16 +00:00
$this -> addSimpleSelfServiceTextField ( $return , 'wWWHomePage' , _ ( 'Web site' ), $fields , $attributes , $readOnlyFields );
if ( isset ( $attributes [ 'street' ])) {
$attributes [ 'streetAddress' ] = $attributes [ 'street' ];
}
$this -> addSimpleSelfServiceTextField ( $return , 'streetAddress' , _ ( 'Street' ), $fields , $attributes , $readOnlyFields , false , true );
$this -> addSimpleSelfServiceTextField ( $return , 'st' , _ ( 'State' ), $fields , $attributes , $readOnlyFields );
$this -> addSimpleSelfServiceTextField ( $return , 'l' , _ ( 'Location' ), $fields , $attributes , $readOnlyFields );
$this -> addSimpleSelfServiceTextField ( $return , 'postOfficeBox' , _ ( 'Post office box' ), $fields , $attributes , $readOnlyFields );
$this -> addSimpleSelfServiceTextField ( $return , 'postalCode' , _ ( 'Postal code' ), $fields , $attributes , $readOnlyFields );
2017-03-04 10:14:17 +00:00
$this -> addSimpleSelfServiceTextField ( $return , 'department' , _ ( 'Department' ), $fields , $attributes , $readOnlyFields );
2018-10-20 17:44:23 +00:00
$this -> addMultiValueSelfServiceTextField ( $return , 'departmentNumber' , _ ( 'Department number' ), $fields , $attributes , $readOnlyFields );
2015-09-02 16:39:30 +00:00
// last password change
$row = new htmlResponsiveRow ();
$row -> addLabel ( new htmlOutputText ( $this -> getSelfServiceLabel ( 'pwdLastSet' , _ ( 'Last password change' ))));
$row -> addField ( new htmlOutputText ( $this -> formatPwdLastSet ( $attributes )));
$return [ 'pwdLastSet' ] = $row ;
2015-11-02 20:53:20 +00:00
// account expiration
$row = new htmlResponsiveRow ();
$row -> addLabel ( new htmlOutputText ( $this -> getSelfServiceLabel ( 'accountExpires' , _ ( 'Account expiration date' ))));
$row -> addField ( new htmlOutputText ( $this -> formatAccountExpires ( $attributes )));
$return [ 'accountExpires' ] = $row ;
2019-01-16 19:52:59 +00:00
if ( in_array ( 'proxyAddresses' , $fields )) {
$proxyAddresses = array ();
if ( isset ( $attributes [ 'proxyAddresses' ])) {
$proxyAddresses = $attributes [ 'proxyAddresses' ];
}
array_map ( 'htmlspecialchars' , $proxyAddresses );
$row = new htmlResponsiveRow ();
$row -> addLabel ( new htmlOutputText ( $this -> getSelfServiceLabel ( 'proxyAddresses' , _ ( 'Proxy-Addresses' ))));
$row -> addField ( new htmlOutputText ( implode ( '<br>' , $proxyAddresses ), false ));
$return [ 'proxyAddresses' ] = $row ;
}
2019-03-03 12:18:02 +00:00
if ( in_array ( 'otherMailbox' , $fields )) {
$otherMailbox = array ();
if ( isset ( $attributes [ 'otherMailbox' ])) {
$otherMailbox = $attributes [ 'otherMailbox' ];
}
array_map ( 'htmlspecialchars' , $otherMailbox );
$row = new htmlResponsiveRow ();
$row -> addLabel ( new htmlOutputText ( $this -> getSelfServiceLabel ( 'otherMailbox' , _ ( 'Email alias' ))));
$row -> addField ( new htmlOutputText ( implode ( '<br>' , $otherMailbox ), false ));
$return [ 'otherMailbox' ] = $row ;
}
2013-04-20 12:52:30 +00:00
return $return ;
}
/**
* 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 : array of values with informational value ( e . g . to be used later by pre / postModify actions )
2015-08-04 18:41:12 +00:00
*
2013-04-20 12:52:30 +00:00
* Calling this method does not require the existence of an enclosing { @ link accountContainer } .
*
* @ 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
* @ param array $readOnlyFields list of read - only fields
* @ return array messages and attributes ( array ( 'messages' => array (), 'add' => array ( 'mail' => array ( 'test@test.com' )), 'del' => array (), 'mod' => array (), 'info' => array ()))
*/
function checkSelfServiceOptions ( $fields , $attributes , $passwordChangeOnly , $readOnlyFields ) {
$return = array ( 'messages' => array (), 'add' => array (), 'del' => array (), 'mod' => array (), 'info' => array ());
2018-12-29 14:49:42 +00:00
if ( in_array ( 'unicodePwd' , $fields )
&& isset ( $_POST [ 'windowsUser_unicodePwd' ])
&& ( $_POST [ 'windowsUser_unicodePwd' ] != '' )) {
if ( $_POST [ 'windowsUser_unicodePwd' ] != $_POST [ 'windowsUser_unicodePwd2' ]) {
$return [ 'messages' ][] = $this -> messages [ 'unicodePwd' ][ 0 ];
}
else {
if ( ! get_preg ( $_POST [ 'windowsUser_unicodePwd' ], 'password' )) {
$return [ 'messages' ][] = $this -> messages [ 'unicodePwd' ][ 1 ];
2013-04-20 12:52:30 +00:00
}
else {
2018-12-29 14:49:42 +00:00
$userName = empty ( $attributes [ 'userPrincipalName' ][ 0 ]) ? null : $attributes [ 'userPrincipalName' ][ 0 ];
$additionalAttrs = array ();
if ( ! empty ( $attributes [ 'sn' ][ 0 ])) {
$additionalAttrs [] = $attributes [ 'sn' ][ 0 ];
}
if ( ! empty ( $attributes [ 'givenName' ][ 0 ])) {
$additionalAttrs [] = $attributes [ 'givenName' ][ 0 ];
}
$pwdPolicyResult = checkPasswordStrength ( $_POST [ 'windowsUser_unicodePwd' ], $userName , $additionalAttrs );
if ( $pwdPolicyResult === true ) {
$this -> setSelfServicePassword ( $return , $attributes );
$return [ 'info' ][ 'userPasswordClearText' ][ 0 ] = $_POST [ 'windowsUser_unicodePwd' ];
2013-04-20 12:52:30 +00:00
}
else {
2018-12-29 14:49:42 +00:00
$return [ 'messages' ][] = array ( 'ERROR' , $pwdPolicyResult );
2013-04-20 12:52:30 +00:00
}
}
}
}
if ( $passwordChangeOnly ) {
return $return ; // skip processing if only a password change is done
}
2013-04-20 16:13:16 +00:00
if ( isset ( $attributes [ 'street' ])) {
$attributes [ 'streetAddress' ] = $attributes [ 'street' ];
2013-04-20 12:52:30 +00:00
}
2013-04-20 16:13:16 +00:00
$this -> checkSimpleSelfServiceTextField ( $return , 'physicalDeliveryOfficeName' , $attributes , $fields , $readOnlyFields );
$this -> checkSimpleSelfServiceTextField ( $return , 'telephoneNumber' , $attributes , $fields , $readOnlyFields , 'telephone' );
2016-01-03 15:43:28 +00:00
$this -> checkSimpleSelfServiceTextField ( $return , 'facsimileTelephoneNumber' , $attributes , $fields , $readOnlyFields , 'telephone' );
2013-04-20 16:13:16 +00:00
$this -> checkSimpleSelfServiceTextField ( $return , 'wWWHomePage' , $attributes , $fields , $readOnlyFields );
$this -> checkSimpleSelfServiceTextField ( $return , 'streetAddress' , $attributes , $fields , $readOnlyFields );
$this -> checkSimpleSelfServiceTextField ( $return , 'st' , $attributes , $fields , $readOnlyFields );
$this -> checkSimpleSelfServiceTextField ( $return , 'l' , $attributes , $fields , $readOnlyFields );
$this -> checkSimpleSelfServiceTextField ( $return , 'postOfficeBox' , $attributes , $fields , $readOnlyFields );
$this -> checkSimpleSelfServiceTextField ( $return , 'postalCode' , $attributes , $fields , $readOnlyFields , 'postalCode' );
2017-03-04 10:14:17 +00:00
$this -> checkSimpleSelfServiceTextField ( $return , 'department' , $attributes , $fields , $readOnlyFields );
2018-10-20 17:44:23 +00:00
$this -> checkMultiValueSelfServiceTextField ( $return , 'departmentNumber' , $attributes , $fields , $readOnlyFields );
2013-04-20 12:52:30 +00:00
return $return ;
}
2015-08-04 18:41:12 +00:00
2013-04-20 12:52:30 +00:00
/**
* Sets the user password in self service .
* Since the change requires the old password we need to run ldapmodify for this task .
2015-08-04 18:41:12 +00:00
*
2013-04-20 12:52:30 +00:00
* Enter description here ...
* @ param array $return return value for checkSelfServiceOptions () ( used to add message if any )
* @ param array $attributes LDAP attributes
*/
private function setSelfServicePassword ( & $return , $attributes ) {
2016-09-02 09:05:19 +00:00
$newPasswordVal = self :: pwdAttributeValue ( $_POST [ 'windowsUser_unicodePwd' ]);
$oldPassword = lamDecrypt ( $_SESSION [ 'selfService_clientPassword' ], 'SelfService' );
$oldPasswordVal = self :: pwdAttributeValue ( $oldPassword );
$dn = $attributes [ 'dn' ];
$operation = array (
array (
'attrib' => 'unicodePwd' ,
'modtype' => LDAP_MODIFY_BATCH_REMOVE ,
'values' => array ( $oldPasswordVal )
),
array (
'attrib' => 'unicodePwd' ,
'modtype' => LDAP_MODIFY_BATCH_ADD ,
'values' => array ( $newPasswordVal )
)
);
2018-12-29 14:49:42 +00:00
@ ldap_modify_batch ( $_SESSION [ 'ldapHandle' ], $dn , $operation );
2016-09-02 09:05:19 +00:00
$returnCode = ldap_errno ( $_SESSION [ 'ldapHandle' ]);
if ( $returnCode != 0 ) {
$outputMessages = htmlspecialchars ( getExtendedLDAPErrorMessage ( $_SESSION [ 'ldapHandle' ]));
// Active Directory message translations
if (( strpos ( $outputMessages , 'DSID-03190F80' ) !== false ) && ( strpos ( $outputMessages , 'unicodePwd' ) !== false )) {
2014-02-27 20:50:57 +00:00
$outputMessages = _ ( 'Your password does not meet the password strength qualifications. Please retry with another one.' ) . '<br><br>' . $outputMessages ;
}
2013-04-20 12:52:30 +00:00
logNewMessage ( LOG_ERR , 'Changing user password failed: ' . $outputMessages );
2014-02-27 20:50:57 +00:00
$return [ 'messages' ][] = array ( 'ERROR' , _ ( 'Unable to change password.' ), $outputMessages );
2013-04-20 12:52:30 +00:00
}
else {
2015-08-04 18:41:12 +00:00
// update session password for next page load
2013-04-20 12:52:30 +00:00
$_SESSION [ 'selfService_clientPasswordNew' ] = $_POST [ 'windowsUser_unicodePwd' ];
}
}
2013-04-07 17:28:09 +00:00
/**
* This method specifies if a module manages password attributes . The module alias will
2015-08-04 18:41:12 +00:00
* then appear as option in the GUI .
2013-04-07 17:28:09 +00:00
* < br > If the module only wants to get notified about password changes then return false .
*
* @ 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 .
2015-08-04 18:41:12 +00:00
*
2013-04-07 17:28:09 +00:00
* @ return boolean force password change supported
*/
public function supportsForcePasswordChange () {
2013-04-13 15:57:32 +00:00
return true ;
2013-04-07 17:28:09 +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
* @ param array $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
2020-02-24 19:08:28 +00:00
* e . g . return array ( array ( 'ERROR' , 'Password change failed.' ))
2013-04-07 17:28:09 +00:00
*/
public function passwordChangeRequested ( $password , $modules , $forcePasswordChange ) {
if ( ! in_array ( get_class ( $this ), $modules )) {
return array ();
}
2014-04-17 19:26:08 +00:00
// check password strength
$user = empty ( $this -> attributes [ 'userPrincipalName' ][ 0 ]) ? null : $this -> attributes [ 'userPrincipalName' ][ 0 ];
$additionalAttrs = array ();
if ( ! empty ( $this -> attributes [ 'sn' ][ 0 ])) {
$additionalAttrs [] = $this -> attributes [ 'sn' ][ 0 ];
}
if ( ! empty ( $this -> attributes [ 'givenName' ][ 0 ])) {
$additionalAttrs [] = $this -> attributes [ 'givenName' ][ 0 ];
}
$checkResult = checkPasswordStrength ( $password , $user , $additionalAttrs );
if ( $checkResult !== true ) {
return array ( array ( 'ERROR' , $checkResult ));
}
// set new password
2013-04-20 08:54:29 +00:00
$pwdBin = self :: pwdAttributeValue ( $password );
2013-04-07 17:28:09 +00:00
$this -> orig [ 'unicodePwd' ][ 0 ] = 'unknown' ;
$this -> attributes [ 'unicodePwd' ][ 0 ] = $pwdBin ;
2013-04-13 15:57:32 +00:00
$this -> attributes [ 'pwdLastSet' ][ 0 ] = '-1' ;
2013-04-21 16:41:19 +00:00
if ( $forcePasswordChange ) {
$this -> attributes [ 'pwdLastSet' ][ 0 ] = '0' ;
}
2013-04-21 18:53:39 +00:00
$this -> clearTextPassword = $password ;
2013-04-07 17:28:09 +00:00
return array ();
}
2015-08-04 18:41:12 +00:00
2013-04-14 19:19:33 +00:00
/**
* Creates the LDAP password value .
2015-08-04 18:41:12 +00:00
*
2013-04-14 19:19:33 +00:00
* @ param String $password password
*/
2013-04-20 08:54:29 +00:00
public static function pwdAttributeValue ( $password ) {
2018-11-23 17:31:47 +00:00
return convertUtf8ToUtf16Le ( '"' . $password . '"' );
2013-04-14 19:19:33 +00:00
}
2013-04-06 15:00:53 +00:00
2013-04-13 15:57:32 +00:00
/**
* Returns if the account is currently deactivated .
2015-08-04 18:41:12 +00:00
*
* @ param array $attrs LDAP attributes
2013-04-13 15:57:32 +00:00
* @ return boolean is deactivated
*/
public static function isDeactivated ( $attrs ) {
$myAttrs = array_change_key_case ( $attrs , CASE_LOWER );
if ( ! isset ( $myAttrs [ 'useraccountcontrol' ][ 0 ])) {
return false ;
}
return intval ( $myAttrs [ 'useraccountcontrol' ][ 0 ]) & windowsUser :: AC_ACCOUNT_DISABLED ;
}
2013-04-06 15:00:53 +00:00
2017-05-07 11:26:41 +00:00
/**
* Returns if the account is currently deactivated .
*
* @ param array $attrs LDAP attributes
* @ param ConfiguredType type
* @ return DateTime locked till or null
*/
public static function getPasswordLocked ( $attrs , $type ) {
$myAttrs = array_change_key_case ( $attrs , CASE_LOWER );
if ( empty ( $myAttrs [ 'lockouttime' ][ 0 ])) {
return false ;
}
$lockoutDuration = self :: getDomainLockoutDuration ( $attrs [ 'dn' ]);
if ( empty ( $lockoutDuration ) || ( $lockoutDuration > - 1 )) {
return false ;
}
$lockoutDurationSeconds = substr ( $lockoutDuration , 0 , - 7 );
$lockoutTime = self :: getFileTime ( $myAttrs [ 'lockouttime' ][ 0 ]);
$unlockTime = clone $lockoutTime ;
$unlockTime -> add ( new DateInterval ( 'PT' . abs ( $lockoutDurationSeconds ) . 'S' ));
2017-06-27 18:23:04 +00:00
$now = new DateTime ( null , getTimeZone ());
2017-05-07 11:26:41 +00:00
if ( $unlockTime > $now ) {
$unlockTime -> setTimezone ( getTimeZone ());
return $unlockTime ;
}
return null ;
}
/**
* Returns the domain lockout duration for this DN .
*
* @ param string $dn user DN
*/
private static function getDomainLockoutDuration ( $dn ) {
$lowerDn = strtolower ( $dn );
$domainRoot = substr ( $lowerDn , strpos ( $lowerDn , 'dc=' ));
2018-12-29 14:49:42 +00:00
if ( ! isset ( $_SESSION [ 'windowsUser_cacheDomainLockoutDuration' ])) {
$_SESSION [ 'windowsUser_cacheDomainLockoutDuration' ] = array ();
}
$cache = & $_SESSION [ 'windowsUser_cacheDomainLockoutDuration' ];
if ( isset ( $cache [ $domainRoot ])) {
return $cache [ $domainRoot ];
2017-05-07 11:26:41 +00:00
}
$policyDN = 'cn=builtin,' . $domainRoot ;
$policyAttrs = ldapGetDN ( $policyDN , array ( 'lockoutduration' ));
if ( ! empty ( $policyAttrs [ 'lockoutduration' ][ 0 ])) {
2018-12-29 14:49:42 +00:00
$cache [ $domainRoot ] = $policyAttrs [ 'lockoutduration' ][ 0 ];
2017-05-07 11:26:41 +00:00
}
else {
2018-12-29 14:49:42 +00:00
$cache [ $domainRoot ] = null ;
2017-05-07 11:26:41 +00:00
}
2018-12-29 14:49:42 +00:00
return $cache [ $domainRoot ];
2017-05-07 11:26:41 +00:00
}
/**
* Unlocks the user password . This resets 'lockoutTime' to 0.
*/
public function unlockPassword () {
if ( ! empty ( $this -> attributes [ 'lockoutTime' ][ 0 ])) {
$this -> attributes [ 'lockoutTime' ][ 0 ] = '0' ;
}
}
2013-04-13 15:57:32 +00:00
/**
* Sets if the account is currently deactivated .
2015-08-04 18:41:12 +00:00
*
2013-04-13 15:57:32 +00:00
* @ param boolean $deactivated is deactivated
2013-04-20 08:32:12 +00:00
* @ param array $attrs LDAP attributes to modify ( default $this -> attributes )
2013-04-13 15:57:32 +00:00
*/
2013-04-20 08:32:12 +00:00
public function setIsDeactivated ( $deactivated , & $attrs = null ) {
if ( $attrs == null ) {
$attrs = & $this -> attributes ;
}
2013-04-13 15:57:32 +00:00
foreach ( $attrs as $key => $value ) {
if ( strtolower ( $key ) == 'useraccountcontrol' ) {
if ( $deactivated ) {
$attrs [ $key ][ 0 ] = intval ( $attrs [ $key ][ 0 ]) | windowsUser :: AC_ACCOUNT_DISABLED ;
}
else {
if ( intval ( $attrs [ $key ][ 0 ]) & windowsUser :: AC_ACCOUNT_DISABLED ) {
$attrs [ $key ][ 0 ] = intval ( $attrs [ $key ][ 0 ]) - windowsUser :: AC_ACCOUNT_DISABLED ;
}
}
}
}
}
2013-04-06 15:00:53 +00:00
2013-04-13 15:57:32 +00:00
/**
* Returns if the account requires a smartcard to login .
2015-08-04 18:41:12 +00:00
*
* @ param array $attrs LDAP attributes
2013-04-13 15:57:32 +00:00
* @ return boolean requires a smartcard
*/
public static function isSmartCardRequired ( $attrs ) {
$myAttrs = array_change_key_case ( $attrs , CASE_LOWER );
if ( ! isset ( $myAttrs [ 'useraccountcontrol' ][ 0 ])) {
return false ;
}
return intval ( $myAttrs [ 'useraccountcontrol' ][ 0 ]) & windowsUser :: AC_SMARTCARD_REQUIRED ;
}
/**
* Sets if the account requires a smartcard to login .
2015-08-04 18:41:12 +00:00
*
2013-04-13 15:57:32 +00:00
* @ param array $attrs LDAP attributes to modify
* @ param boolean $requireCard requires a smartcard
*/
public static function setIsSmartCardRequired ( & $attrs , $requireCard ) {
foreach ( $attrs as $key => $value ) {
if ( strtolower ( $key ) == 'useraccountcontrol' ) {
if ( $requireCard ) {
$attrs [ $key ][ 0 ] = intval ( $attrs [ $key ][ 0 ]) | windowsUser :: AC_SMARTCARD_REQUIRED ;
}
else {
if ( intval ( $attrs [ $key ][ 0 ]) & windowsUser :: AC_SMARTCARD_REQUIRED ) {
$attrs [ $key ][ 0 ] = intval ( $attrs [ $key ][ 0 ]) - windowsUser :: AC_SMARTCARD_REQUIRED ;
}
}
}
}
}
/**
* Returns if the account never expires .
2015-08-04 18:41:12 +00:00
*
* @ param array $attrs LDAP attributes
2013-04-13 15:57:32 +00:00
* @ return boolean never expires
*/
public static function isNeverExpiring ( $attrs ) {
$myAttrs = array_change_key_case ( $attrs , CASE_LOWER );
if ( ! isset ( $myAttrs [ 'useraccountcontrol' ][ 0 ])) {
return false ;
}
return intval ( $myAttrs [ 'useraccountcontrol' ][ 0 ]) & windowsUser :: AC_PWD_NEVER_EXPIRES ;
}
/**
* Sets if the account never expires .
2015-08-04 18:41:12 +00:00
*
2013-04-13 15:57:32 +00:00
* @ param array $attrs LDAP attributes to modify
* @ param boolean $neverExpires never expires
*/
public static function setIsNeverExpiring ( & $attrs , $neverExpires ) {
foreach ( $attrs as $key => $value ) {
if ( strtolower ( $key ) == 'useraccountcontrol' ) {
if ( $neverExpires ) {
$attrs [ $key ][ 0 ] = intval ( $attrs [ $key ][ 0 ]) | windowsUser :: AC_PWD_NEVER_EXPIRES ;
}
else {
if ( intval ( $attrs [ $key ][ 0 ]) & windowsUser :: AC_PWD_NEVER_EXPIRES ) {
$attrs [ $key ][ 0 ] = intval ( $attrs [ $key ][ 0 ]) - windowsUser :: AC_PWD_NEVER_EXPIRES ;
}
}
}
}
}
/**
* Finds all existing groups .
*
* @ return array group DNs
*/
private function findGroups () {
if ( $this -> groupCache != null ) {
return $this -> groupCache ;
}
$return = array ();
$types = array ( 'group' );
$results = searchLDAPByFilter ( '(objectClass=group)' , array ( 'dn' ), $types );
$count = sizeof ( $results );
for ( $i = 0 ; $i < $count ; $i ++ ) {
if ( isset ( $results [ $i ][ 'dn' ])) {
$return [] = $results [ $i ][ 'dn' ];
}
}
$this -> groupCache = $return ;
return $return ;
}
2015-08-04 18:41:12 +00:00
2013-11-09 13:26:31 +00:00
/**
* Gets the list of possible domains from the config setting .
2015-08-04 18:41:12 +00:00
*
2013-11-09 13:26:31 +00:00
* @ return array domain list
*/
private function getDomains () {
$domains = array ();
if ( ! empty ( $this -> moduleSettings [ 'windowsUser_domains' ])) {
foreach ( $this -> moduleSettings [ 'windowsUser_domains' ] as $domain ) {
$domain = trim ( str_replace ( '@' , '' , $domain ));
if ( ! empty ( $domain )) {
$domains [] = $domain ;
}
}
}
return array_values ( array_unique ( $domains ));
}
2015-08-04 18:41:12 +00:00
2018-05-20 07:31:06 +00:00
/**
* Returns a list of all user names in LDAP .
*
* @ return array user names
*/
private function getUserNames () {
if ( $this -> cachedUserNameList != null ) {
return $this -> cachedUserNameList ;
}
$this -> cachedUserNameList = array ();
$attrs = array ( 'userPrincipalName' );
$filter = '(&(objectClass=user)(userPrincipalName=*))' ;
$typeManager = new TypeManager ();
$typesUser = $typeManager -> getConfiguredTypesForScope ( 'user' );
$suffixes = array ();
if ( ! empty ( $typesUser )) {
foreach ( $typesUser as $type ) {
$suffixes [] = $type -> getSuffix ();
}
}
$suffixes = array_unique ( $suffixes );
foreach ( $suffixes as $suffix ) {
$result = searchLDAP ( $suffix , $filter , $attrs );
foreach ( $result as $resultEntry ) {
$this -> cachedUserNameList [ $resultEntry [ 'userprincipalname' ][ 0 ]] = $resultEntry [ 'dn' ];
}
}
return $this -> cachedUserNameList ;
}
2018-05-27 16:25:00 +00:00
/**
* Returns a list of all CNs in LDAP .
*
* @ return array CN list
*/
private function getCns () {
if ( $this -> cachedCnList != null ) {
return $this -> cachedCnList ;
}
$this -> cachedCnList = array ();
$attrs = array ( 'cn' );
$filter = '(&(objectClass=user)(cn=*))' ;
$typeManager = new TypeManager ();
$typesUser = $typeManager -> getConfiguredTypesForScope ( 'user' );
$suffixes = array ();
if ( ! empty ( $typesUser )) {
foreach ( $typesUser as $type ) {
$suffixes [] = $type -> getSuffix ();
}
}
$suffixes = array_unique ( $suffixes );
foreach ( $suffixes as $suffix ) {
$result = searchLDAP ( $suffix , $filter , $attrs );
foreach ( $result as $resultEntry ) {
$this -> cachedCnList [ $resultEntry [ 'cn' ][ 0 ]] = $resultEntry [ 'dn' ];
}
}
return $this -> cachedCnList ;
}
2015-09-02 16:39:30 +00:00
/**
* Returns the formatted value for last password change .
*
* @ param array $attributes user attributes ( $this -> attributes if null )
* @ return String last password change or " - "
*/
private function formatPwdLastSet ( $attributes = null ) {
if ( $attributes == null ) {
$attributes = & $this -> attributes ;
}
if ( ! empty ( $attributes [ 'pwdlastset' ][ 0 ])) {
return $this -> formatFileTime ( $attributes [ 'pwdlastset' ][ 0 ]);
}
elseif ( empty ( $attributes [ 'pwdLastSet' ][ 0 ])) {
return ' - ' ;
}
return $this -> formatFileTime ( $attributes [ 'pwdLastSet' ][ 0 ]);
}
/**
* Returns the formatted value for last login .
*
* @ return String last login or " - "
*/
private function formatLastLogonTimestamp () {
if ( empty ( $this -> attributes [ 'lastLogonTimestamp' ][ 0 ])) {
return ' - ' ;
}
return $this -> formatFileTime ( $this -> attributes [ 'lastLogonTimestamp' ][ 0 ]);
}
2015-11-02 20:53:20 +00:00
/**
* Returns the formatted value for the account expiration date .
*
* @ param array $attributes user attributes ( $this -> attributes if null )
* @ return String date or -
*/
private function formatAccountExpires ( $attributes = null ) {
if ( $attributes == null ) {
$attributes = & $this -> attributes ;
}
if ( empty ( $attributes [ 'accountExpires' ][ 0 ]) || ( $attributes [ 'accountExpires' ][ 0 ] == '0' )
|| ( $attributes [ 'accountExpires' ][ 0 ] == '9223372036854775807' )) {
return ' - ' ;
}
return $this -> formatFileTime ( $attributes [ 'accountExpires' ][ 0 ]);
}
2015-09-02 16:39:30 +00:00
/**
* Formats a value in file time ( 100 ns since 1601 - 01 - 01 ) .
*
* @ param integer $value time value
* @ return String formatted value
*/
private function formatFileTime ( $value ) {
2015-11-16 19:48:58 +00:00
if ( empty ( $value ) || ( $value == '-1' )) {
2015-09-02 16:39:30 +00:00
return '' ;
}
$seconds = substr ( $value , 0 , - 7 );
$time = new DateTime ( '1601-01-01' , new DateTimeZone ( 'UTC' ));
$time -> add ( new DateInterval ( 'PT' . $seconds . 'S' ));
$time -> setTimezone ( getTimeZone ());
return $time -> format ( 'Y-m-d H:i:s' );
}
2015-11-02 20:53:20 +00:00
/**
* Returns a value in file time ( 100 ns since 1601 - 01 - 01 ) .
*
* @ param integer $value time value as int
* @ return DateTime time value
*/
2015-11-27 21:03:27 +00:00
public static function getFileTime ( $value ) {
2015-11-02 20:53:20 +00:00
if ( empty ( $value )) {
return null ;
}
$seconds = substr ( $value , 0 , - 7 );
$time = new DateTime ( '1601-01-01' , new DateTimeZone ( 'UTC' ));
$time -> add ( new DateInterval ( 'PT' . $seconds . 'S' ));
$time -> setTimezone ( getTimeZone ());
return $time ;
}
/**
* Sets the expiration date of this account .
* If all parameters are null the expiration date will be removed .
*
* @ param String $year year ( e . g . 2040 )
* @ param String $month month ( e . g . 8 )
* @ param String $day day ( e . g . 27 )
*/
public function setExpirationDate ( $year , $month , $day ) {
if (( $year == null ) && ( $month == null ) && ( $day == null )) {
unset ( $this -> attributes [ 'accountExpires' ]);
return ;
}
$this -> attributes [ 'accountExpires' ][ 0 ] = $this -> buildExpirationDate ( $year , $month , $day );
}
/**
* Builds the value for the expiration date .
*
* @ param int $year year
* @ param int $month month
* @ param int $day day
*/
private function buildExpirationDate ( $year , $month , $day ) {
$timeBase = new DateTime ( '1601-01-01' , getTimeZone ());
$time = new DateTime ( " $year - $month - $day " , getTimeZone ());
$timeDiff = $time -> diff ( $timeBase );
$days = $timeDiff -> format ( '%a' );
$seconds = $days * 24 * 3600 - ( $time -> getOffset ());
return $seconds . '0000000' ;
}
2015-11-07 14:44:34 +00:00
/**
2017-11-25 13:35:22 +00:00
* { @ inheritDoc }
* @ see baseModule :: get_configOptions ()
*/
2015-11-07 14:44:34 +00:00
public function get_configOptions ( $scopes , $allScopes ) {
2018-11-17 19:40:09 +00:00
$typeManager = new TypeManager ( $_SESSION [ 'conf_config' ]);
2015-11-07 14:44:34 +00:00
// configuration options
2017-11-25 13:35:22 +00:00
$configContainer = new htmlResponsiveRow ();
$configContainer -> add ( new htmlResponsiveInputTextarea ( 'windowsUser_domains' , '' , 30 , 3 , _ ( 'Domains' ), 'domains' ), 12 );
2020-06-15 13:34:44 +00:00
$displayOptions = array (
'dn' => self :: DISPLAY_GROUPS_DN ,
'cn' => self :: DISPLAY_GROUPS_CN ,
);
$groupDisplaySelect = new htmlResponsiveSelect ( 'windowsUser_displayGroups' , $displayOptions , array (), _ ( 'Display format' ), 'displayGroups' );
$groupDisplaySelect -> setHasDescriptiveElements ( true );
$configContainer -> add ( $groupDisplaySelect , 12 );
2015-11-07 14:44:34 +00:00
$configHiddenGroup = new htmlGroup ();
$configHiddenGroup -> addElement ( new htmlOutputText ( _ ( 'Hidden options' )));
$configHiddenGroup -> addElement ( new htmlHelpLink ( 'hiddenOptions' ));
2017-11-25 13:35:22 +00:00
$configContainer -> add ( $configHiddenGroup , 12 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hideproxyAddresses' , true , _ ( 'Proxy-Addresses' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hidefacsimileTelephoneNumber' , false , _ ( 'Fax number' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hidemobile' , true , _ ( 'Mobile' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hideotherMobile' , true , _ ( 'Other mobiles' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hidepager' , true , _ ( 'Pager' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hideotherPager' , true , _ ( 'Other pagers' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hidesAMAccountName' , true , _ ( 'User name (pre W2K)' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hidemsSFU30Name' , true , _ ( 'NIS name' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hidemsSFU30NisDomain' , true , _ ( 'NIS domain' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hidepwdLastSet' , false , _ ( 'Last password change' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hidelastLogonTimestamp' , false , _ ( 'Last login' ), null , true ), 12 , 4 );
2020-02-08 14:43:11 +00:00
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hideWorkstations' , false , _ ( 'Workstations' ), null , true ), 12 , 4 );
2017-11-25 13:35:22 +00:00
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hidejpegPhoto' , true , _ ( 'Photo' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hidetitle' , true , _ ( 'Job title' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hidecarLicense' , true , _ ( 'Car license' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hideemployeeNumber' , true , _ ( 'Employee number' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hideemployeeType' , true , _ ( 'Employee type' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hidebusinessCategory' , true , _ ( 'Business category' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hidecompany' , true , _ ( 'Company' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hidedepartment' , true , _ ( 'Department' ), null , true ), 12 , 4 );
2018-10-20 17:44:23 +00:00
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hidedepartmentNumber' , true , _ ( 'Department number' ), null , true ), 12 , 4 );
2017-11-25 13:35:22 +00:00
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hideou' , true , _ ( 'Organisational unit' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hideo' , true , _ ( 'Organisation' ), null , true ), 12 , 4 );
$configContainer -> add ( new htmlResponsiveInputCheckbox ( 'windowsUser_hidemanager' , true , _ ( 'Manager' ), null , true ), 12 , 4 );
2018-11-17 19:40:09 +00:00
$syncTypes = $typeManager -> getConfiguredTypesForScopes ( array ( 'group' , 'gon' , 'user' ));
$syncActive = false ;
$possibleSyncModules = array ( 'groupOfNames' , 'groupOfMembers' , 'groupOfUniqueNames' , 'posixAccount' );
foreach ( $syncTypes as $syncType ) {
$modules = $syncType -> getModules ();
foreach ( $possibleSyncModules as $possibleModule ) {
if ( in_array ( $possibleModule , $modules )) {
$syncActive = true ;
break ;
}
}
}
if ( $syncActive ) {
$syncGroupsCheckbox = new htmlResponsiveInputCheckbox ( 'windowsUser_syncGroups' , false , _ ( 'Sync groups' ), null , true );
$syncGroupsCheckbox -> setTableRowsToHide ( array ( 'windowsUser_syncGroupsExclusions' ));
$configContainer -> add ( $syncGroupsCheckbox , 12 , 4 );
$configContainer -> addVerticalSpacer ( '2rem' );
$configContainer -> add ( new htmlResponsiveInputTextarea ( 'windowsUser_syncGroupsExclusions' , '' , 20 , 4 , _ ( 'Exclude from group sync' ), 'excludeFromGroupSync' ), 12 );
2017-11-25 13:35:22 +00:00
}
$advancedOptions = new htmlResponsiveRow ();
$advancedOptions -> add ( new htmlSubTitle ( _ ( 'Photo' )), 12 );
2018-05-12 07:39:29 +00:00
$advancedOptions -> add ( new htmlResponsiveInputField ( _ ( 'Maximum width (px)' ), 'windowsUser_jpegPhoto_maxWidth' , null , 'crop' ), 12 );
$advancedOptions -> add ( new htmlResponsiveInputField ( _ ( 'Maximum height (px)' ), 'windowsUser_jpegPhoto_maxHeight' , null , 'crop' ), 12 );
2017-11-25 13:35:22 +00:00
$advancedOptions -> add ( new htmlResponsiveInputField ( _ ( 'Maximum file size (kB)' ), 'windowsUser_jpegPhoto_maxSize' ), 12 );
2015-11-07 15:43:43 +00:00
$advancedOptionsAccordion = new htmlAccordion ( 'inetOrgPersonAdvancedOptions' , array ( _ ( 'Advanced options' ) => $advancedOptions ), false );
$advancedOptionsAccordion -> colspan = 5 ;
2017-11-25 13:35:22 +00:00
$configContainer -> add ( $advancedOptionsAccordion , 12 );
2015-11-07 14:44:34 +00:00
return $configContainer ;
}
2015-11-08 09:59:20 +00:00
/**
* Loads cached data from LDAP such as departmets etc .
*/
private function initCache () {
if ( $this -> departmentCache != null ) {
return ;
}
$attrs = array ();
2017-03-04 10:14:17 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartment' , true )) {
$attrs [] = 'department' ;
2015-11-08 09:59:20 +00:00
}
2018-10-20 17:44:23 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidedepartmentNumber' , true )) {
$attrs [] = 'departmentNumber' ;
}
2015-11-08 09:59:20 +00:00
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideou' , true )) {
$attrs [] = 'ou' ;
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideo' , true )) {
$attrs [] = 'o' ;
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidetitle' , true )) {
$attrs [] = 'title' ;
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hideemployeeType' , true )) {
$attrs [] = 'employeeType' ;
}
if ( ! $this -> isBooleanConfigOptionSet ( 'windowsUser_hidebusinessCategory' , true )) {
$attrs [] = 'businessCategory' ;
}
$departments = array ();
2018-10-20 17:44:23 +00:00
$departmentNumbers = array ();
2015-11-08 09:59:20 +00:00
$ous = array ();
$os = array ();
$titles = array ();
$employeeTypes = array ();
$businessCategories = array ();
if ( sizeof ( $attrs ) > 0 ) {
$result = searchLDAPByFilter ( '(objectClass=user)' , $attrs , array ( $this -> get_scope ()));
foreach ( $result as $attributes ) {
2017-03-04 10:14:17 +00:00
if ( isset ( $attributes [ 'department' ])) {
foreach ( $attributes [ 'department' ] as $val ) {
2015-11-08 09:59:20 +00:00
$departments [] = $val ;
}
}
2018-10-20 17:44:23 +00:00
if ( isset ( $attributes [ 'departmentnumber' ])) {
foreach ( $attributes [ 'departmentnumber' ] as $val ) {
$departmentNumbers [] = $val ;
}
}
2015-11-08 09:59:20 +00:00
if ( isset ( $attributes [ 'ou' ])) {
foreach ( $attributes [ 'ou' ] as $val ) {
$ous [] = $val ;
}
}
if ( isset ( $attributes [ 'o' ])) {
foreach ( $attributes [ 'o' ] as $val ) {
$os [] = $val ;
}
}
if ( isset ( $attributes [ 'title' ])) {
foreach ( $attributes [ 'title' ] as $val ) {
$titles [] = $val ;
}
}
if ( isset ( $attributes [ 'employeetype' ])) {
foreach ( $attributes [ 'employeetype' ] as $val ) {
$employeeTypes [] = $val ;
}
}
if ( isset ( $attributes [ 'businesscategory' ])) {
foreach ( $attributes [ 'businesscategory' ] as $val ) {
$businessCategories [] = $val ;
}
}
}
}
$this -> departmentCache = array_values ( array_unique ( $departments ));
2018-10-20 17:44:23 +00:00
$this -> departmentNumberCache = array_values ( array_unique ( $departmentNumbers ));
2015-11-08 09:59:20 +00:00
$this -> oCache = array_values ( array_unique ( $os ));
$this -> ouCache = array_values ( array_unique ( $ous ));
$this -> titleCache = array_values ( array_unique ( $titles ));
$this -> employeeTypeCache = array_values ( array_unique ( $employeeTypes ));
$this -> businessCategoryCache = array_values ( array_unique ( $businessCategories ));
}
2015-11-18 07:17:54 +00:00
/**
* Returns a list of jobs that can be run .
*
* @ param LAMConfig $config configuration
* @ return array list of jobs
*/
public function getSupportedJobs ( & $config ) {
return array (
2016-07-17 08:26:22 +00:00
new WindowsPasswordNotifyJob (),
2018-11-03 10:22:19 +00:00
new WindowsAccountExpirationCleanupJob (),
2020-07-18 18:13:38 +00:00
new WindowsAccountExpirationNotifyJob (),
new WindowsManagedGroupsNotifyJob ()
2015-11-18 07:17:54 +00:00
);
}
2016-11-20 09:32:13 +00:00
/**
2017-06-05 07:39:29 +00:00
* { @ inheritdoc }
2016-11-20 09:32:13 +00:00
*/
public function getWildCardReplacements () {
$replacements = array ();
// first name
if ( ! empty ( $_POST [ 'givenName' ])) {
$replacements [ 'firstname' ] = $_POST [ 'givenName' ];
}
elseif ( ! empty ( $this -> attributes [ 'givenName' ][ 0 ])) {
$replacements [ 'firstname' ] = $this -> attributes [ 'givenName' ][ 0 ];
}
// last name
if ( ! empty ( $_POST [ 'sn' ])) {
$replacements [ 'lastname' ] = $_POST [ 'sn' ];
}
elseif ( ! empty ( $this -> attributes [ 'sn' ][ 0 ])) {
$replacements [ 'lastname' ] = $this -> attributes [ 'sn' ][ 0 ];
}
// user name
if ( ! empty ( $_POST [ 'userPrincipalName' ])) {
$replacements [ 'user' ] = $_POST [ 'userPrincipalName' ];
}
elseif ( ! empty ( $this -> attributes [ 'userPrincipalName' ][ 0 ])) {
$replacements [ 'user' ] = $this -> attributes [ 'userPrincipalName' ][ 0 ];
}
// cn
if ( ! empty ( $_POST [ 'cn_0' ])) {
$replacements [ 'commonname' ] = $_POST [ 'cn_0' ];
}
elseif ( ! empty ( $this -> attributes [ 'cn' ][ 0 ])) {
$replacements [ 'commonname' ] = $this -> attributes [ 'cn' ][ 0 ];
}
// mail
if ( ! empty ( $_POST [ 'mail_0' ])) {
$replacements [ 'email' ] = $_POST [ 'mail_0' ];
}
elseif ( ! empty ( $this -> attributes [ 'mail' ][ 0 ])) {
$replacements [ 'email' ] = $this -> attributes [ 'mail' ][ 0 ];
}
return $replacements ;
}
2017-10-19 17:32:22 +00:00
/**
* Returns if the given account is expired .
*
* @ param array $attrs LDAP attributes
* @ return bool expired
*/
public static function isAccountExpired ( $attrs ) {
$attrs = array_change_key_case ( $attrs , CASE_LOWER );
if ( empty ( $attrs [ 'accountexpires' ][ 0 ])) {
return false ;
}
$value = $attrs [ 'accountexpires' ][ 0 ];
if ( $value < 1 ) {
return false ;
}
$seconds = substr ( $value , 0 , - 7 );
$time = new DateTime ( '1601-01-01' , new DateTimeZone ( 'UTC' ));
$time -> add ( new DateInterval ( 'PT' . $seconds . 'S' ));
$now = new DateTime ( null , getTimeZone ());
return ( $time < $now );
}
2018-06-15 17:03:51 +00:00
/**
* Returns the list of groups .
*
* @ return array DNs of Windows groups
*/
public function getGroupList () {
return $this -> groupList ;
}
2015-11-18 07:17:54 +00:00
}
2016-01-05 16:55:01 +00:00
if ( interface_exists ( '\LAM\JOB\Job' , false )) {
2015-11-18 07:17:54 +00:00
include_once dirname ( __FILE__ ) . '/../passwordExpirationJob.inc' ;
/**
* Job to notify users about password expiration .
*
* @ package jobs
*/
class WindowsPasswordNotifyJob extends \LAM\JOB\PasswordExpirationJob {
/**
* Returns the alias name of the job .
*
* @ return String name
*/
public function getAlias () {
return _ ( 'Windows' ) . ': ' . _ ( 'Notify users about password expiration' );
}
/**
* Returns a list of password policy options . The options are later passed to function checkSingleUser () .
* This reads the password policy to calculate expiration times later . Maxpwdage is the maximum amount of
* time , in 100 - nanosecond intervals , a password is valid .
*
* @ return array options ( 'maxpwdage' => max age in ns )
*/
protected function getPolicyOptions () {
2017-05-06 13:22:27 +00:00
$typeManager = new TypeManager ();
$maxPwdAge = array ();
foreach ( $typeManager -> getConfiguredTypesForScope ( 'user' ) as $type ) {
$userSuffix = $type -> getSuffix ();
if ( empty ( $userSuffix )) {
logNewMessage ( LOG_ERR , 'No user suffix set in server profile for ' . $type -> getAlias () . '.' );
continue ;
}
// extract base DN from user suffix
$domainRoot = strtolower ( substr ( $userSuffix , stripos ( $userSuffix , 'dc=' )));
if ( empty ( $domainRoot )) {
logNewMessage ( LOG_ERR , " No domain root found in $userSuffix . " );
continue ;
}
logNewMessage ( LOG_DEBUG , " Using $domainRoot as domain root " );
$policyDN = 'cn=builtin,' . $domainRoot ;
$policyAttrs = ldapGetDN ( $policyDN , array ( 'maxPwdAge' ));
if ( empty ( $policyAttrs [ 'maxpwdage' ][ 0 ])) {
logNewMessage ( LOG_ERR , 'No maxPwdAge found for this domain in ' . $type -> getAlias () . '.' );
continue ;
}
$maxPwdAge [ $domainRoot ] = $policyAttrs [ 'maxpwdage' ][ 0 ];
logNewMessage ( LOG_DEBUG , " Using maxPwdAge = " . $maxPwdAge [ $domainRoot ] . " . " );
}
2015-11-18 07:17:54 +00:00
return array ( 'maxpwdage' => $maxPwdAge );
}
/**
* Searches for users in LDAP .
*
* @ param String $jobID unique job identifier
* @ param array $options config options ( name => value )
* @ return array list of user attributes
*/
protected function findUsers ( $jobID , $options ) {
// read users
2015-11-27 21:03:27 +00:00
$sysattrs = array ( 'mail' , 'pwdLastSet' , 'accountExpires' , 'useraccountcontrol' );
2015-11-18 07:17:54 +00:00
$attrs = $this -> getAttrWildcards ( $jobID , $options );
$attrs = array_values ( array_unique ( array_merge ( $attrs , $sysattrs )));
2018-12-29 14:49:42 +00:00
return searchLDAPByFilter ( '(&(pwdLastSet=*)(mail=*))' , $attrs , array ( 'user' ));
2015-11-18 07:17:54 +00:00
}
/**
* Checks if a user needs to change his password .
*
* @ param integer $jobID job ID
* @ param array $options job settings
* @ param PDO $pdo PDO
* @ param DateTime $now current time
* @ param array $policyOptions list of max age values ( policy DN => maxAge )
* @ param array $user user attributes
* @ param boolean $isDryRun just do a dry run , nothing is modified
*/
protected function checkSingleUser ( $jobID , $options , & $pdo , $now , $policyOptions , $user , $isDryRun ) {
2017-05-06 13:22:27 +00:00
$dn = $user [ 'dn' ];
$domainRoot = strtolower ( substr ( $dn , stripos ( $dn , 'dc=' )));
2015-11-27 21:03:27 +00:00
// skip if password does not expire at all
2015-11-18 07:17:54 +00:00
if ( windowsUser :: isNeverExpiring ( $user )) {
2017-10-29 15:26:25 +00:00
$this -> jobResultLog -> logDebug ( $dn . ' does not expire.' );
2015-11-18 07:17:54 +00:00
return ;
}
2015-11-27 21:03:27 +00:00
// skip if no information about last password change
2015-11-18 07:17:54 +00:00
if ( empty ( $user [ 'pwdlastset' ][ 0 ]) || ( $user [ 'pwdlastset' ][ 0 ] < 1 )) {
2017-10-29 15:26:25 +00:00
$this -> jobResultLog -> logDebug ( $dn . ' has no valid "pwdLastSet".' );
2015-11-18 07:17:54 +00:00
return ;
}
2015-11-27 21:03:27 +00:00
// skip if account itself is expired
if ( ! empty ( $user [ 'accountexpires' ][ 0 ])) {
$accountExpiration = windowsUser :: getFileTime ( $user [ 'accountexpires' ][ 0 ]);
if ( $accountExpiration <= $now ) {
2017-10-29 15:26:25 +00:00
$this -> jobResultLog -> logDebug ( $dn . ' already expired' );
2015-11-27 21:03:27 +00:00
return ;
}
}
// skip if account is deactivated
if ( windowsUser :: isDeactivated ( $user )) {
2017-10-29 15:26:25 +00:00
$this -> jobResultLog -> logDebug ( $dn . ' is deactivated.' );
2015-11-27 21:03:27 +00:00
return ;
}
2017-05-06 13:22:27 +00:00
$maxPwdAge = $policyOptions [ 'maxpwdage' ][ $domainRoot ];
2015-11-18 07:17:54 +00:00
// calculate time when password expires
2015-11-27 21:03:27 +00:00
$lastPwdTime = windowsUser :: getFileTime ( $user [ 'pwdlastset' ][ 0 ]);
2017-10-29 15:26:25 +00:00
$this -> jobResultLog -> logDebug ( " Last password change on " . $lastPwdTime -> format ( 'Y-m-d' ));
2015-11-18 07:17:54 +00:00
$numDaysToWarn = $options [ $this -> getConfigPrefix () . '_mailNotificationPeriod' . $jobID ][ 0 ];
2017-10-29 15:26:25 +00:00
$this -> jobResultLog -> logDebug ( " Number of days before warning " . $numDaysToWarn );
2015-11-27 21:03:27 +00:00
// expiration date = pwdLastSet - maxpwdage
$expireTime = windowsUser :: getFileTime ( $user [ 'pwdlastset' ][ 0 ] - $maxPwdAge );
2017-10-29 15:26:25 +00:00
$this -> jobResultLog -> logDebug ( " Password expires on " . $expireTime -> format ( 'Y-m-d' ));
2015-11-18 07:17:54 +00:00
// skip already expired accounts
if ( $expireTime <= $now ) {
2017-10-29 15:26:25 +00:00
$this -> jobResultLog -> logDebug ( $dn . ' already expired' );
2015-11-18 07:17:54 +00:00
return ;
}
// calculate time of notification
$notifyTime = clone $expireTime ;
$notifyTime -> sub ( new DateInterval ( 'P' . $numDaysToWarn . 'D' ));
$notifyTime -> setTimeZone ( getTimeZone ());
2017-10-29 15:26:25 +00:00
$this -> jobResultLog -> logDebug ( " Password notification on " . $notifyTime -> format ( 'Y-m-d H:i' ));
2015-11-18 07:17:54 +00:00
// skip if notification is in the future
if ( $notifyTime > $now ) {
2017-10-29 15:26:25 +00:00
$this -> jobResultLog -> logDebug ( $dn . ' does not need notification yet.' );
2015-11-18 07:17:54 +00:00
return ;
}
2017-05-06 13:22:27 +00:00
$dbLastChange = $this -> getDBLastPwdChangeTime ( $jobID , $pdo , $dn );
2015-11-18 07:17:54 +00:00
// skip entries where mail was already sent
2015-11-27 21:03:27 +00:00
if ( $dbLastChange == $user [ 'pwdlastset' ][ 0 ]) {
2017-10-29 15:26:25 +00:00
$this -> jobResultLog -> logDebug ( $dn . ' was already notified.' );
2015-11-18 07:17:54 +00:00
return ;
}
if ( $isDryRun ) {
// no action for dry run
2017-10-29 15:26:25 +00:00
$this -> jobResultLog -> logInfo ( 'Not sending email to ' . $dn . ' because of dry run.' );
2015-11-18 07:17:54 +00:00
return ;
}
// send email
2016-01-16 18:46:58 +00:00
$success = $this -> sendMail ( $options , $jobID , $user , $expireTime );
2015-11-18 07:17:54 +00:00
// update DB if mail was sent successfully
if ( $success ) {
2017-05-06 13:22:27 +00:00
$this -> setDBLastPwdChangeTime ( $jobID , $pdo , $dn , $user [ 'pwdlastset' ][ 0 ]);
2015-11-18 07:17:54 +00:00
}
}
}
2020-07-18 18:13:38 +00:00
/**
* Job to notify users about their managed groups .
*
* @ package jobs
*/
class WindowsManagedGroupsNotifyJob extends \LAM\JOB\PasswordExpirationJob {
const MANAGED_GROUPS = 'LAM_MANAGED_GROUPS' ;
const PERIOD_MONTHLY = 'MONTHLY' ;
const PERIOD_QUARTERLY = 'QUARTERLY' ;
const PERIOD_HALF_YEARLY = 'HALF_YEARLY' ;
const PERIOD_YEARLY = 'YEARLY' ;
/**
* Returns the alias name of the job .
*
* @ return String name
*/
public function getAlias () {
return _ ( 'Windows' ) . ': ' . _ ( 'Notify users about their managed groups' );
}
/**
* @ inheritDoc
*/
public function getDescription () {
return _ ( 'This will send each user a summary of the managed groups and their members.' );
}
/**
* @ inheritDoc
*/
public function getConfigOptions ( $jobID ) {
$prefix = $this -> getConfigPrefix ();
$container = new htmlResponsiveRow ();
$container -> add ( new htmlResponsiveInputField ( _ ( 'From address' ), $prefix . '_mailFrom' . $jobID , null , '800' , true ), 12 );
$container -> add ( new htmlResponsiveInputField ( _ ( 'Reply-to address' ), $prefix . '_mailReplyTo' . $jobID , null , '801' ), 12 );
$container -> add ( new htmlResponsiveInputField ( _ ( 'CC address' ), $prefix . '_mailCC' . $jobID , null , '805' ), 12 );
$container -> add ( new htmlResponsiveInputField ( _ ( 'BCC address' ), $prefix . '_mailBCC' . $jobID , null , '806' ), 12 );
$container -> add ( new htmlResponsiveInputField ( _ ( 'Subject' ), $prefix . '_mailSubject' . $jobID , null , '802' ), 12 );
$container -> add ( new htmlResponsiveInputCheckbox ( $prefix . '_mailIsHTML' . $jobID , false , _ ( 'HTML format' ), '553' ), 12 );
$container -> add ( new htmlResponsiveInputTextarea ( $prefix . '_mailtext' . $jobID , '' , 50 , 4 , _ ( 'Text' ), '810' ), 12 );
$periodOptions = array (
_ ( 'Monthly' ) => self :: PERIOD_MONTHLY ,
_ ( 'Quarterly' ) => self :: PERIOD_QUARTERLY ,
_ ( 'Half-yearly' ) => self :: PERIOD_HALF_YEARLY ,
_ ( 'Yearly' ) => self :: PERIOD_YEARLY ,
);
$periodSelect = new htmlResponsiveSelect ( $prefix . '_period' . $jobID , $periodOptions , array (), _ ( 'Period' ), '811' );
$periodSelect -> setHasDescriptiveElements ( true );
$periodSelect -> setSortElements ( false );
$container -> add ( $periodSelect , 12 );
return $container ;
}
/**
* @ inheritDoc
*/
public function checkConfigOptions ( $jobID , $options ) {
$prefix = $this -> getConfigPrefix ();
$errors = array ();
// from address
if ( empty ( $options [ $prefix . '_mailFrom' . $jobID ][ 0 ])
|| ! ( get_preg ( $options [ $prefix . '_mailFrom' . $jobID ][ 0 ], 'email' )
|| get_preg ( $options [ $prefix . '_mailFrom' . $jobID ][ 0 ], 'emailWithName' ))) {
$errors [] = array ( 'ERROR' , _ ( 'Please enter a valid email address!' ), _ ( 'From address' ));
}
// reply-to
if ( ! empty ( $options [ $prefix . '_mailReplyTo' . $jobID ][ 0 ])
&& ! get_preg ( $options [ $prefix . '_mailReplyTo' . $jobID ][ 0 ], 'email' )
&& ! get_preg ( $options [ $prefix . '_mailReplyTo' . $jobID ][ 0 ], 'emailWithName' )) {
$errors [] = array ( 'ERROR' , _ ( 'Please enter a valid email address!' ), _ ( 'Reply-to address' ));
}
// CC address
if ( ! empty ( $options [ $prefix . '_mailCC' . $jobID ][ 0 ])
&& ! get_preg ( $options [ $prefix . '_mailCC' . $jobID ][ 0 ], 'email' )
&& ! get_preg ( $options [ $prefix . '_mailCC' . $jobID ][ 0 ], 'emailWithName' )) {
$errors [] = array ( 'ERROR' , _ ( 'Please enter a valid email address!' ), _ ( 'CC address' ));
}
// BCC address
if ( ! empty ( $options [ $prefix . '_mailBCC' . $jobID ][ 0 ])
&& ! get_preg ( $options [ $prefix . '_mailBCC' . $jobID ][ 0 ], 'email' )
&& ! get_preg ( $options [ $prefix . '_mailBCC' . $jobID ][ 0 ], 'emailWithName' )) {
$errors [] = array ( 'ERROR' , _ ( 'Please enter a valid email address!' ), _ ( 'BCC address' ));
}
// text
$mailText = implode ( '' , $options [ $prefix . '_mailtext' . $jobID ]);
if ( empty ( $mailText )) {
$errors [] = array ( 'ERROR' , _ ( 'Please set a email text.' ));
}
if ( strpos ( $mailText , '@@' . self :: MANAGED_GROUPS . '@@' ) === false ) {
$errors [] = array ( 'ERROR' , _ ( 'Please add the wildcard for the list of managed groups.' ), '@@' . self :: MANAGED_GROUPS . '@@' );
}
return $errors ;
}
/**
* @ inheritDoc
*/
protected function getPolicyOptions () {
return array ();
}
/**
* Searches for users in LDAP .
*
* @ param String $jobID unique job identifier
* @ param array $options config options ( name => value )
* @ return array list of user attributes
*/
protected function findUsers ( $jobID , $options ) {
// read users
$sysAttrs = array ( 'managedObjects' , 'mail' );
$attrs = $this -> getAttrWildcards ( $jobID , $options );
$attrs = array_values ( array_unique ( array_merge ( $attrs , $sysAttrs )));
$users = searchLDAPByFilter ( '(&(mail=*)(managedObjects=*))' , $attrs , array ( 'user' ));
$groups = searchLDAPByFilter ( '(managedBy=*)' , array ( 'cn' , 'member' ), array ( 'group' ));
$groupByDn = array ();
foreach ( $groups as $group ) {
$groupByDn [ $group [ 'dn' ]] = $group ;
}
$groups = null ;
foreach ( $users as $index => $user ) {
$managedObjectDns = $user [ 'managedobjects' ];
$managedGroups = array ();
foreach ( $managedObjectDns as $managedObjectDn ) {
if ( array_key_exists ( $managedObjectDn , $groupByDn )) {
$managedGroups [] = $groupByDn [ $managedObjectDn ];
}
}
$users [ $index ][ strtolower ( self :: MANAGED_GROUPS )] = $managedGroups ;
}
return $users ;
}
/**
* @ inheritDoc
*/
public function execute ( $jobID , $options , & $pdo , $isDryRun , & $resultLog ) {
$this -> jobResultLog = & $resultLog ;
$this -> jobResultLog -> logDebug ( " Configuration options: " );
foreach ( $options as $key => $value ) {
if ( strpos ( $key , $jobID ) === false ) {
continue ;
}
$this -> jobResultLog -> logDebug ( $key . ': ' . implode ( ', ' , $value ));
}
$now = new DateTime ( null , getTimeZone ());
$baseDate = $this -> getBaseDate ( $now );
$monthInterval = $this -> getMonthInterval ( $options , $jobID );
if ( ! $this -> shouldRun ( $pdo , $options , $jobID , $baseDate , $monthInterval )) {
$this -> jobResultLog -> logDebug ( 'No run needed yet' );
return ;
}
$userResults = $this -> findUsers ( $jobID , $options );
$this -> jobResultLog -> logDebug ( " Found " . sizeof ( $userResults ) . " users to send an email. " );
$isHTML = ( ! empty ( $options [ $this -> getConfigPrefix () . '_mailIsHTML' . $jobID ][ 0 ]) && ( $options [ $this -> getConfigPrefix () . '_mailIsHTML' . $jobID ][ 0 ] == 'true' ));
foreach ( $userResults as $user ) {
if ( empty ( $user [ strtolower ( self :: MANAGED_GROUPS )])) {
continue ;
}
$user [ strtolower ( self :: MANAGED_GROUPS )][ 0 ] = $this -> formatGroups ( $user [ strtolower ( self :: MANAGED_GROUPS )], $isHTML );
if ( $isDryRun ) {
// no action for dry run
$this -> jobResultLog -> logInfo ( " Managed groups text for " . $user [ 'dn' ] . " : \n " . $user [ strtolower ( self :: MANAGED_GROUPS )][ 0 ]);
$this -> jobResultLog -> logInfo ( 'Not sending email to ' . $user [ 'dn' ] . ' because of dry run.' );
continue ;
}
// send email
$this -> sendMail ( $options , $jobID , $user , null );
}
if ( ! $isDryRun ) {
$this -> setDBLastPwdChangeTime ( $jobID , $pdo , $jobID , self :: getLastEffectiveExecutionDate ( $baseDate , $monthInterval , $this -> jobResultLog ) -> format ( 'Y-m-d' ));
}
}
/**
* Returns if the job should run .
*
* @ param $pdo PDO
* @ param $options job options
* @ param $jobId job id
* @ param DateTime $baseDate base date
* @ param int $monthInterval month interval
* @ return bool should run
*/
private function shouldRun ( & $pdo , $options , $jobId , $baseDate , $monthInterval ) {
$dbLastChange = $this -> getDBLastPwdChangeTime ( $jobId , $pdo , $jobId );
if ( empty ( $dbLastChange )) {
return true ;
}
$this -> jobResultLog -> logDebug ( 'Base date: ' . $baseDate -> format ( 'Y-m-d' ));
$effectiveDate = self :: getLastEffectiveExecutionDate ( $baseDate , $monthInterval , $this -> jobResultLog );
$dbLastChangeDate = DateTime :: createFromFormat ( 'Y-m-d' , $dbLastChange , getTimeZone ());
$this -> jobResultLog -> logDebug ( 'Last run date: ' . $dbLastChangeDate -> format ( 'Y-m-d' ));
return $effectiveDate > $dbLastChangeDate ;
}
/**
* Returns the month interval .
*
2020-07-24 18:54:19 +00:00
* @ param array $options config options
2020-07-18 18:13:38 +00:00
* @ param $jobId job id
* @ return int interval
*/
private function getMonthInterval ( $options , $jobId ) {
$monthInterval = 12 ;
switch ( $options [ $this -> getConfigPrefix () . '_period' . $jobId ][ 0 ]) {
case self :: PERIOD_HALF_YEARLY :
$monthInterval = 6 ;
break ;
case self :: PERIOD_QUARTERLY :
$monthInterval = 3 ;
break ;
case self :: PERIOD_MONTHLY :
$monthInterval = 1 ;
break ;
}
return $monthInterval ;
}
/**
* Returns the base date ( first of month ) for the current date .
*
* @ param DateTime $currentDate current date
* @ return DateTime base date
*/
private function getBaseDate ( $currentDate ) {
$baseDateText = $currentDate -> format ( 'Y-m-' ) . '1' ;
return DateTime :: createFromFormat ( 'Y-m-d' , $baseDateText , getTimeZone ());
}
/**
* Returns the last effective execution date .
*
* @ param DateTime $baseDate base date
* @ param int $monthInterval number of months in interval
* @ param \LAM\JOB\JobResultLog $resultLog result log
*/
public static function getLastEffectiveExecutionDate ( $baseDate , $monthInterval , $resultLog ) {
$month = $baseDate -> format ( 'm' );
$monthIndex = $month - 1 ;
while (( $monthIndex % $monthInterval ) !== 0 ) {
$monthIndex -- ;
}
$month = $monthIndex + 1 ;
$effectiveDateString = $baseDate -> format ( 'Y-' ) . $month . '-1' ;
$effectiveDate = DateTime :: createFromFormat ( 'Y-m-d' , $effectiveDateString , getTimeZone ());
$resultLog -> logDebug ( " Effective date: " . $effectiveDate -> format ( 'Y-m-d' ));
return $effectiveDate ;
}
/**
* @ inheritDoc
*/
protected function checkSingleUser ( $jobID , $options , & $pdo , $now , $policyOptions , $user , $isDryRun ) {
// not used
}
/**
* Formats the managed groups .
*
* @ param $managedGroups managed groups
* @ param bool $isHTML HTML email
* @ return string formatted text
*/
private function formatGroups ( $managedGroups , bool $isHTML ) {
$text = '' ;
foreach ( $managedGroups as $managedGroup ) {
if ( $isHTML ) {
$text .= '<br><b>' . $managedGroup [ 'cn' ][ 0 ] . '</b><br>' ;
}
else {
$text .= " \r \n " . $managedGroup [ 'cn' ][ 0 ] . " \r \n \r \n " ;
}
if ( empty ( $managedGroup [ 'member' ])) {
continue ;
}
foreach ( $managedGroup [ 'member' ] as $member ) {
$member = getAbstractDN ( $member );
if ( $isHTML ) {
$text .= ' ' . $member . '<br>' ;
}
else {
$text .= " " . $member . " \r \n " ;
}
}
}
return $text ;
}
}
2018-11-03 10:22:19 +00:00
/**
* Job to notify users about account expiration .
*
* @ package jobs
*/
class WindowsAccountExpirationNotifyJob extends \LAM\JOB\PasswordExpirationJob {
/**
* { @ inheritDoc }
* @ see \LAM\JOB\Job :: getAlias ()
*/
public function getAlias () {
return _ ( 'Windows' ) . ': ' . _ ( 'Notify users about account expiration' );
}
/**
* { @ inheritDoc }
* @ see \LAM\JOB\PasswordExpirationJob :: getDescription ()
*/
public function getDescription () {
return _ ( 'This job sends out emails to inform your users that their account will expire soon.' );
}
/**
* { @ inheritDoc }
* @ see \LAM\JOB\PasswordExpirationJob :: findUsers ()
*/
protected function findUsers ( $jobID , $options ) {
// read users
$sysattrs = array ( 'mail' , 'accountExpires' , 'useraccountcontrol' );
$attrs = $this -> getAttrWildcards ( $jobID , $options );
$attrs = array_values ( array_unique ( array_merge ( $attrs , $sysattrs )));
2018-12-29 14:49:42 +00:00
return searchLDAPByFilter ( '(&(accountExpires=*)(!(accountExpires=0))(mail=*))' , $attrs , array ( 'user' ));
2018-11-03 10:22:19 +00:00
}
/**
* { @ inheritDoc }
* @ see \LAM\JOB\PasswordExpirationJob :: checkSingleUser ()
*/
protected function checkSingleUser ( $jobID , $options , & $pdo , $now , $policyOptions , $user , $isDryRun ) {
$dn = $user [ 'dn' ];
// skip if account is deactivated
if ( windowsUser :: isDeactivated ( $user )) {
$this -> jobResultLog -> logDebug ( $dn . ' is deactivated.' );
return ;
}
// skip if account itself is expired
if ( ! empty ( $user [ 'accountexpires' ][ 0 ])) {
$accountExpiration = windowsUser :: getFileTime ( $user [ 'accountexpires' ][ 0 ]);
if ( $accountExpiration <= $now ) {
$this -> jobResultLog -> logDebug ( $dn . ' already expired' );
return ;
}
}
// get time when account expires
$expirationTime = windowsUser :: getFileTime ( $user [ 'accountexpires' ][ 0 ]);
$this -> jobResultLog -> logDebug ( " Account expiration on " . $expirationTime -> format ( 'Y-m-d' ));
$numDaysToWarn = $options [ $this -> getConfigPrefix () . '_mailNotificationPeriod' . $jobID ][ 0 ];
$this -> jobResultLog -> logDebug ( " Number of days before warning " . $numDaysToWarn );
// calculate time of notification
$notifyTime = clone $expirationTime ;
$notifyTime -> sub ( new DateInterval ( 'P' . $numDaysToWarn . 'D' ));
$notifyTime -> setTimeZone ( getTimeZone ());
2018-11-05 19:21:46 +00:00
$this -> jobResultLog -> logDebug ( " Account expiration notification on " . $notifyTime -> format ( 'Y-m-d H:i' ));
2018-11-03 10:22:19 +00:00
// skip if notification is in the future
if ( $notifyTime > $now ) {
$this -> jobResultLog -> logDebug ( $dn . ' does not need notification yet.' );
return ;
}
$dbLastChange = $this -> getDBLastPwdChangeTime ( $jobID , $pdo , $dn );
// skip entries where mail was already sent
if ( $dbLastChange == $user [ 'accountexpires' ][ 0 ]) {
$this -> jobResultLog -> logDebug ( $dn . ' was already notified.' );
return ;
}
if ( $isDryRun ) {
// no action for dry run
$this -> jobResultLog -> logInfo ( 'Not sending email to ' . $dn . ' because of dry run.' );
return ;
}
// send email
$success = $this -> sendMail ( $options , $jobID , $user , $expirationTime );
// update DB if mail was sent successfully
if ( $success ) {
$this -> setDBLastPwdChangeTime ( $jobID , $pdo , $dn , $user [ 'accountexpires' ][ 0 ]);
}
}
}
2016-07-17 08:26:22 +00:00
/**
* Job to delete or move users on account expiration .
*
* @ package jobs
*/
class WindowsAccountExpirationCleanupJob extends \LAM\JOB\AccountExpirationCleanupJob {
/**
* Returns the alias name of the job .
*
* @ return String name
*/
public function getAlias () {
return _ ( 'Windows' ) . ': ' . _ ( 'Cleanup expired user accounts' );
}
/**
* Returns the description of the job .
*
* @ return String description
*/
public function getDescription () {
return _ ( 'This job deletes or moves user accounts when they expire.' );
}
/**
* Searches for users in LDAP .
*
* @ param String $jobID unique job identifier
* @ param array $options config options ( name => value )
* @ return array list of user attributes
*/
protected function findUsers ( $jobID , $options ) {
// read users
$attrs = array ( 'accountExpires' );
2018-12-29 14:49:42 +00:00
return searchLDAPByFilter ( '(accountExpires=*)' , $attrs , array ( 'user' ));
2016-07-17 08:26:22 +00:00
}
/**
* Checks if a user is expired .
*
* @ param integer $jobID job ID
* @ param array $options job settings
* @ param PDO $pdo PDO
* @ param DateTime $now current time
* @ param array $policyOptions list of policy options by getPolicyOptions ()
* @ param array $user user attributes
* @ param boolean $isDryRun just do a dry run , nothing is modified
*/
protected function checkSingleUser ( $jobID , $options , & $pdo , $now , $policyOptions , $user , $isDryRun ) {
$seconds = substr ( $user [ 'accountexpires' ][ 0 ], 0 , - 7 );
$expireTime = new DateTime ( '1601-01-01' , new DateTimeZone ( 'UTC' ));
$expireTime -> add ( new DateInterval ( 'PT' . $seconds . 'S' ));
$expireTime -> setTimezone ( getTimeZone ());
2017-10-29 15:26:25 +00:00
$this -> jobResultLog -> logDebug ( " Expiration on " . $expireTime -> format ( 'Y-m-d' ));
2016-07-17 08:26:22 +00:00
$delay = 0 ;
if ( ! empty ( $options [ $this -> getConfigPrefix () . '_delay' . $jobID ][ 0 ])) {
$delay = $options [ $this -> getConfigPrefix () . '_delay' . $jobID ][ 0 ];
}
$actionTime = clone $expireTime ;
if ( $delay != 0 ) {
$actionTime -> add ( new DateInterval ( 'P' . $delay . 'D' ));
}
$actionTime -> setTimeZone ( getTimeZone ());
2017-10-29 15:26:25 +00:00
$this -> jobResultLog -> logDebug ( " Action time on " . $actionTime -> format ( 'Y-m-d' ));
2016-07-17 08:26:22 +00:00
if ( $actionTime <= $now ) {
$this -> performAction ( $jobID , $options , $user , $isDryRun );
}
}
}
2013-04-13 15:57:32 +00:00
}
2015-08-04 18:41:12 +00:00
2013-04-06 15:00:53 +00:00
?>