2011-06-24 00:51:25 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Dominik Schmidt <dev@dominik-schmidt.de>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author felixboehm <felix@webhippie.de>
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Renaud Fortier <Renaud.Fortier@fsaa.ulaval.ca>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Roger Szabo <roger.szabo@web.de>
|
|
|
|
* @author root <root@localhost.localdomain>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Tom Needham <tom@owncloud.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
|
|
|
|
* @author Vinicius Cubas Brand <vinicius@eita.org.br>
|
2011-06-24 00:51:25 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2011-06-24 00:51:25 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2011-06-24 00:51:25 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2011-06-24 00:51:25 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2011-06-24 00:51:25 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2011-06-24 00:51:25 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-05-12 12:01:29 +03:00
|
|
|
namespace OCA\User_LDAP;
|
2012-07-20 19:43:44 +04:00
|
|
|
|
2018-01-26 14:47:19 +03:00
|
|
|
use OC\ServerNotAvailableException;
|
2016-08-30 12:43:29 +03:00
|
|
|
use OC\User\Backend;
|
2015-12-11 02:12:41 +03:00
|
|
|
use OC\User\NoUserException;
|
2016-10-07 02:39:57 +03:00
|
|
|
use OCA\User_LDAP\Exceptions\NotOnLDAP;
|
2016-05-12 12:25:50 +03:00
|
|
|
use OCA\User_LDAP\User\OfflineUser;
|
|
|
|
use OCA\User_LDAP\User\User;
|
2015-01-07 01:28:49 +03:00
|
|
|
use OCP\IConfig;
|
2017-07-13 15:32:52 +03:00
|
|
|
use OCP\IUser;
|
2017-09-15 17:01:54 +03:00
|
|
|
use OCP\IUserSession;
|
2017-03-31 10:16:22 +03:00
|
|
|
use OCP\Notification\IManager as INotificationManager;
|
2016-11-29 19:05:55 +03:00
|
|
|
use OCP\Util;
|
2013-09-10 19:11:02 +04:00
|
|
|
|
2016-07-22 11:46:29 +03:00
|
|
|
class User_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserInterface, IUserLDAP {
|
2015-01-07 01:28:49 +03:00
|
|
|
/** @var \OCP\IConfig */
|
|
|
|
protected $ocConfig;
|
|
|
|
|
2017-03-31 10:16:22 +03:00
|
|
|
/** @var INotificationManager */
|
|
|
|
protected $notificationManager;
|
|
|
|
|
2017-07-13 15:32:52 +03:00
|
|
|
/** @var string */
|
|
|
|
protected $currentUserInDeletionProcess;
|
|
|
|
|
2017-11-02 15:40:38 +03:00
|
|
|
/** @var UserPluginManager */
|
|
|
|
protected $userPluginManager;
|
|
|
|
|
2014-08-21 19:59:13 +04:00
|
|
|
/**
|
2016-05-12 17:42:57 +03:00
|
|
|
* @param Access $access
|
2015-01-07 01:28:49 +03:00
|
|
|
* @param \OCP\IConfig $ocConfig
|
2017-03-31 10:16:22 +03:00
|
|
|
* @param \OCP\Notification\IManager $notificationManager
|
2017-09-15 17:01:54 +03:00
|
|
|
* @param IUserSession $userSession
|
2014-08-21 19:59:13 +04:00
|
|
|
*/
|
2017-11-02 15:40:38 +03:00
|
|
|
public function __construct(Access $access, IConfig $ocConfig, INotificationManager $notificationManager, IUserSession $userSession, UserPluginManager $userPluginManager) {
|
2015-01-07 01:28:49 +03:00
|
|
|
parent::__construct($access);
|
|
|
|
$this->ocConfig = $ocConfig;
|
2017-03-31 10:16:22 +03:00
|
|
|
$this->notificationManager = $notificationManager;
|
2017-11-02 15:40:38 +03:00
|
|
|
$this->userPluginManager = $userPluginManager;
|
2017-09-15 17:01:54 +03:00
|
|
|
$this->registerHooks($userSession);
|
2017-07-13 15:32:52 +03:00
|
|
|
}
|
|
|
|
|
2017-09-15 17:01:54 +03:00
|
|
|
protected function registerHooks(IUserSession $userSession) {
|
|
|
|
$userSession->listen('\OC\User', 'preDelete', [$this, 'preDeleteUser']);
|
|
|
|
$userSession->listen('\OC\User', 'postDelete', [$this, 'postDeleteUser']);
|
2017-07-13 15:32:52 +03:00
|
|
|
}
|
|
|
|
|
2017-09-15 17:01:54 +03:00
|
|
|
public function preDeleteUser(IUser $user) {
|
2017-07-13 15:32:52 +03:00
|
|
|
$this->currentUserInDeletionProcess = $user->getUID();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function postDeleteUser() {
|
|
|
|
$this->currentUserInDeletionProcess = null;
|
2015-01-07 01:28:49 +03:00
|
|
|
}
|
2014-08-21 19:59:13 +04:00
|
|
|
|
2013-11-21 20:02:37 +04:00
|
|
|
/**
|
2017-04-12 07:16:27 +03:00
|
|
|
* checks whether the user is allowed to change his avatar in Nextcloud
|
|
|
|
* @param string $uid the Nextcloud user name
|
2013-11-21 20:02:37 +04:00
|
|
|
* @return boolean either the user can or cannot
|
|
|
|
*/
|
|
|
|
public function canChangeAvatar($uid) {
|
2017-11-02 15:40:38 +03:00
|
|
|
if ($this->userPluginManager->implementsActions(Backend::PROVIDE_AVATAR)) {
|
|
|
|
return $this->userPluginManager->canChangeAvatar($uid);
|
|
|
|
}
|
|
|
|
|
2014-03-27 21:01:14 +04:00
|
|
|
$user = $this->access->userManager->get($uid);
|
2014-08-21 19:59:13 +04:00
|
|
|
if(!$user instanceof User) {
|
2013-11-21 20:02:37 +04:00
|
|
|
return false;
|
|
|
|
}
|
2014-03-27 21:01:14 +04:00
|
|
|
if($user->getAvatarImage() === false) {
|
2013-11-21 20:02:37 +04:00
|
|
|
return true;
|
|
|
|
}
|
2014-02-07 01:18:38 +04:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-02-20 15:09:33 +03:00
|
|
|
/**
|
|
|
|
* returns the username for the given login name, if available
|
|
|
|
*
|
|
|
|
* @param string $loginName
|
|
|
|
* @return string|false
|
|
|
|
*/
|
|
|
|
public function loginName2UserName($loginName) {
|
2016-10-07 02:39:57 +03:00
|
|
|
$cacheKey = 'loginName2UserName-'.$loginName;
|
|
|
|
$username = $this->access->connection->getFromCache($cacheKey);
|
|
|
|
if(!is_null($username)) {
|
|
|
|
return $username;
|
|
|
|
}
|
|
|
|
|
2015-02-20 15:09:33 +03:00
|
|
|
try {
|
|
|
|
$ldapRecord = $this->getLDAPUserByLoginName($loginName);
|
2015-10-08 22:18:34 +03:00
|
|
|
$user = $this->access->userManager->get($ldapRecord['dn'][0]);
|
2015-02-20 15:54:28 +03:00
|
|
|
if($user instanceof OfflineUser) {
|
2016-10-07 02:39:57 +03:00
|
|
|
// this path is not really possible, however get() is documented
|
|
|
|
// to return User or OfflineUser so we are very defensive here.
|
|
|
|
$this->access->connection->writeToCache($cacheKey, false);
|
2015-02-20 15:54:28 +03:00
|
|
|
return false;
|
|
|
|
}
|
2016-10-07 02:39:57 +03:00
|
|
|
$username = $user->getUsername();
|
|
|
|
$this->access->connection->writeToCache($cacheKey, $username);
|
|
|
|
return $username;
|
|
|
|
} catch (NotOnLDAP $e) {
|
|
|
|
$this->access->connection->writeToCache($cacheKey, false);
|
2015-02-20 15:09:33 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2016-07-22 11:46:29 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* returns the username for the given LDAP DN, if available
|
|
|
|
*
|
|
|
|
* @param string $dn
|
2016-07-27 10:16:57 +03:00
|
|
|
* @return string|false with the username
|
2016-07-22 11:46:29 +03:00
|
|
|
*/
|
|
|
|
public function dn2UserName($dn) {
|
|
|
|
return $this->access->dn2username($dn);
|
|
|
|
}
|
2015-02-20 15:09:33 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* returns an LDAP record based on a given login name
|
|
|
|
*
|
2015-04-13 12:59:47 +03:00
|
|
|
* @param string $loginName
|
2015-02-20 15:09:33 +03:00
|
|
|
* @return array
|
2016-10-07 02:39:57 +03:00
|
|
|
* @throws NotOnLDAP
|
2015-02-20 15:09:33 +03:00
|
|
|
*/
|
|
|
|
public function getLDAPUserByLoginName($loginName) {
|
|
|
|
//find out dn of the user name
|
2015-08-21 01:55:42 +03:00
|
|
|
$attrs = $this->access->userManager->getAttributes();
|
2016-05-12 17:55:58 +03:00
|
|
|
$users = $this->access->fetchUsersByLoginName($loginName, $attrs);
|
2015-02-20 15:09:33 +03:00
|
|
|
if(count($users) < 1) {
|
2016-10-07 02:39:57 +03:00
|
|
|
throw new NotOnLDAP('No user available for the given login name on ' .
|
2016-03-05 02:18:34 +03:00
|
|
|
$this->access->connection->ldapHost . ':' . $this->access->connection->ldapPort);
|
2015-02-20 15:09:33 +03:00
|
|
|
}
|
|
|
|
return $users[0];
|
|
|
|
}
|
|
|
|
|
2012-05-04 15:02:20 +04:00
|
|
|
/**
|
2017-01-30 18:57:40 +03:00
|
|
|
* Check if the password is correct without logging in the user
|
|
|
|
*
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param string $uid The username
|
|
|
|
* @param string $password The password
|
2015-01-07 15:28:56 +03:00
|
|
|
* @return false|string
|
2012-05-04 15:02:20 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function checkPassword($uid, $password) {
|
2015-02-20 15:09:33 +03:00
|
|
|
try {
|
|
|
|
$ldapRecord = $this->getLDAPUserByLoginName($uid);
|
2017-01-30 18:57:40 +03:00
|
|
|
} catch(NotOnLDAP $e) {
|
2016-11-29 19:05:55 +03:00
|
|
|
if($this->ocConfig->getSystemValue('loglevel', Util::WARN) === Util::DEBUG) {
|
|
|
|
\OC::$server->getLogger()->logException($e, ['app' => 'user_ldap']);
|
|
|
|
}
|
2011-07-06 02:30:57 +04:00
|
|
|
return false;
|
|
|
|
}
|
2015-10-08 22:18:34 +03:00
|
|
|
$dn = $ldapRecord['dn'][0];
|
2014-03-27 21:01:14 +04:00
|
|
|
$user = $this->access->userManager->get($dn);
|
2015-02-20 15:09:33 +03:00
|
|
|
|
2014-08-21 19:59:13 +04:00
|
|
|
if(!$user instanceof User) {
|
2016-11-29 19:05:55 +03:00
|
|
|
Util::writeLog('user_ldap',
|
2014-10-27 17:58:23 +03:00
|
|
|
'LDAP Login: Could not get user object for DN ' . $dn .
|
|
|
|
'. Maybe the LDAP entry has no set display name attribute?',
|
2016-11-29 19:05:55 +03:00
|
|
|
Util::WARN);
|
2014-10-27 17:58:23 +03:00
|
|
|
return false;
|
|
|
|
}
|
2014-03-27 21:01:14 +04:00
|
|
|
if($user->getUsername() !== false) {
|
2013-08-14 18:03:18 +04:00
|
|
|
//are the credentials OK?
|
2013-09-10 19:11:02 +04:00
|
|
|
if(!$this->access->areCredentialsValid($dn, $password)) {
|
2013-08-14 18:03:18 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-08-21 01:55:42 +03:00
|
|
|
$this->access->cacheUserExists($user->getUsername());
|
|
|
|
$user->processAttributes($ldapRecord);
|
2014-03-27 21:01:14 +04:00
|
|
|
$user->markLogin();
|
2013-11-26 15:57:39 +04:00
|
|
|
|
2014-03-27 21:01:14 +04:00
|
|
|
return $user->getUsername();
|
2012-07-30 19:42:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2011-06-24 01:41:02 +04:00
|
|
|
}
|
2011-06-24 00:51:25 +04:00
|
|
|
|
2016-08-30 12:43:29 +03:00
|
|
|
/**
|
|
|
|
* Set password
|
|
|
|
* @param string $uid The username
|
|
|
|
* @param string $password The new password
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function setPassword($uid, $password) {
|
2017-11-02 15:40:38 +03:00
|
|
|
if ($this->userPluginManager->implementsActions(Backend::SET_PASSWORD)) {
|
|
|
|
return $this->userPluginManager->setPassword($uid, $password);
|
|
|
|
}
|
|
|
|
|
2016-08-30 12:43:29 +03:00
|
|
|
$user = $this->access->userManager->get($uid);
|
|
|
|
|
|
|
|
if(!$user instanceof User) {
|
|
|
|
throw new \Exception('LDAP setPassword: Could not get user object for uid ' . $uid .
|
|
|
|
'. Maybe the LDAP entry has no set display name attribute?');
|
|
|
|
}
|
2017-03-31 10:16:22 +03:00
|
|
|
if($user->getUsername() !== false && $this->access->setPassword($user->getDN(), $password)) {
|
|
|
|
$ldapDefaultPPolicyDN = $this->access->connection->ldapDefaultPPolicyDN;
|
|
|
|
$turnOnPasswordChange = $this->access->connection->turnOnPasswordChange;
|
|
|
|
if (!empty($ldapDefaultPPolicyDN) && (intval($turnOnPasswordChange) === 1)) {
|
|
|
|
//remove last password expiry warning if any
|
|
|
|
$notification = $this->notificationManager->createNotification();
|
|
|
|
$notification->setApp('user_ldap')
|
|
|
|
->setUser($uid)
|
|
|
|
->setObject('pwd_exp_warn', $uid)
|
|
|
|
;
|
|
|
|
$this->notificationManager->markProcessed($notification);
|
|
|
|
}
|
|
|
|
return true;
|
2016-08-30 12:43:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-05-04 01:41:08 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Get a list of all users
|
2012-05-04 01:41:08 +04:00
|
|
|
*
|
2015-06-27 21:35:47 +03:00
|
|
|
* @param string $search
|
2016-01-15 15:54:26 +03:00
|
|
|
* @param integer $limit
|
|
|
|
* @param integer $offset
|
2015-06-27 21:35:47 +03:00
|
|
|
* @return string[] an array of all uids
|
2012-05-04 01:41:08 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function getUsers($search = '', $limit = 10, $offset = 0) {
|
2014-12-08 19:12:13 +03:00
|
|
|
$search = $this->access->escapeFilterPart($search, true);
|
2012-10-26 23:54:22 +04:00
|
|
|
$cachekey = 'getUsers-'.$search.'-'.$limit.'-'.$offset;
|
|
|
|
|
|
|
|
//check if users are cached, if so return
|
2013-09-10 19:11:02 +04:00
|
|
|
$ldap_users = $this->access->connection->getFromCache($cachekey);
|
2012-10-26 23:54:22 +04:00
|
|
|
if(!is_null($ldap_users)) {
|
|
|
|
return $ldap_users;
|
2012-08-14 16:14:20 +04:00
|
|
|
}
|
2012-10-26 23:54:22 +04:00
|
|
|
|
2013-02-15 01:16:48 +04:00
|
|
|
// if we'd pass -1 to LDAP search, we'd end up in a Protocol
|
|
|
|
// error. With a limit of 0, we get 0 results. So we pass null.
|
2012-10-27 19:32:55 +04:00
|
|
|
if($limit <= 0) {
|
|
|
|
$limit = null;
|
|
|
|
}
|
2013-09-10 19:11:02 +04:00
|
|
|
$filter = $this->access->combineFilterWithAnd(array(
|
|
|
|
$this->access->connection->ldapUserFilter,
|
2015-11-28 01:46:26 +03:00
|
|
|
$this->access->connection->ldapUserDisplayName . '=*',
|
2013-09-10 19:11:02 +04:00
|
|
|
$this->access->getFilterPartForUserSearch($search)
|
2012-10-26 23:54:22 +04:00
|
|
|
));
|
|
|
|
|
2016-11-29 19:05:55 +03:00
|
|
|
Util::writeLog('user_ldap',
|
2013-02-15 01:16:48 +04:00
|
|
|
'getUsers: Options: search '.$search.' limit '.$limit.' offset '.$offset.' Filter: '.$filter,
|
2016-11-29 19:05:55 +03:00
|
|
|
Util::DEBUG);
|
2017-10-31 21:42:17 +03:00
|
|
|
//do the search and translate results to Nextcloud names
|
2013-09-10 19:11:02 +04:00
|
|
|
$ldap_users = $this->access->fetchListOfUsers(
|
|
|
|
$filter,
|
2015-08-21 01:55:42 +03:00
|
|
|
$this->access->userManager->getAttributes(true),
|
2013-02-15 01:16:48 +04:00
|
|
|
$limit, $offset);
|
2017-04-12 07:21:04 +03:00
|
|
|
$ldap_users = $this->access->nextcloudUserNames($ldap_users);
|
2016-11-29 19:05:55 +03:00
|
|
|
Util::writeLog('user_ldap', 'getUsers: '.count($ldap_users). ' Users found', Util::DEBUG);
|
2012-08-14 16:14:20 +04:00
|
|
|
|
2013-09-10 19:11:02 +04:00
|
|
|
$this->access->connection->writeToCache($cachekey, $ldap_users);
|
2012-10-26 23:54:22 +04:00
|
|
|
return $ldap_users;
|
2011-11-30 02:11:42 +04:00
|
|
|
}
|
2011-06-24 01:41:02 +04:00
|
|
|
|
2014-08-21 19:59:13 +04:00
|
|
|
/**
|
|
|
|
* checks whether a user is still available on LDAP
|
2015-12-11 02:12:41 +03:00
|
|
|
*
|
2017-04-12 07:16:27 +03:00
|
|
|
* @param string|\OCA\User_LDAP\User\User $user either the Nextcloud user
|
2014-08-21 19:59:13 +04:00
|
|
|
* name or an instance of that user
|
|
|
|
* @return bool
|
2015-12-11 02:12:41 +03:00
|
|
|
* @throws \Exception
|
|
|
|
* @throws \OC\ServerNotAvailableException
|
2014-08-21 19:59:13 +04:00
|
|
|
*/
|
|
|
|
public function userExistsOnLDAP($user) {
|
|
|
|
if(is_string($user)) {
|
|
|
|
$user = $this->access->userManager->get($user);
|
|
|
|
}
|
2015-12-11 02:12:41 +03:00
|
|
|
if(is_null($user)) {
|
2014-08-21 19:59:13 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$dn = $user->getDN();
|
|
|
|
//check if user really still exists by reading its entry
|
2015-11-26 18:00:15 +03:00
|
|
|
if(!is_array($this->access->readAttribute($dn, '', $this->access->connection->ldapUserFilter))) {
|
2014-08-21 19:59:13 +04:00
|
|
|
$lcr = $this->access->connection->getConnectionResource();
|
|
|
|
if(is_null($lcr)) {
|
|
|
|
throw new \Exception('No LDAP Connection to server ' . $this->access->connection->ldapHost);
|
|
|
|
}
|
2015-12-11 03:56:53 +03:00
|
|
|
|
|
|
|
try {
|
|
|
|
$uuid = $this->access->getUserMapper()->getUUIDByDN($dn);
|
2018-01-26 14:47:19 +03:00
|
|
|
if (!$uuid) {
|
2015-12-11 03:56:53 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$newDn = $this->access->getUserDnByUuid($uuid);
|
2016-07-04 15:16:13 +03:00
|
|
|
//check if renamed user is still valid by reapplying the ldap filter
|
2018-01-26 14:47:19 +03:00
|
|
|
if (!is_array($this->access->readAttribute($newDn, '', $this->access->connection->ldapUserFilter))) {
|
2016-07-04 15:16:13 +03:00
|
|
|
return false;
|
|
|
|
}
|
2015-12-11 03:56:53 +03:00
|
|
|
$this->access->getUserMapper()->setDNbyUUID($newDn, $uuid);
|
|
|
|
return true;
|
2018-01-26 14:47:19 +03:00
|
|
|
} catch (ServerNotAvailableException $e) {
|
|
|
|
throw $e;
|
2015-12-11 03:56:53 +03:00
|
|
|
} catch (\Exception $e) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-08-21 19:59:13 +04:00
|
|
|
}
|
|
|
|
|
2015-12-11 02:12:41 +03:00
|
|
|
if($user instanceof OfflineUser) {
|
|
|
|
$user->unmark();
|
|
|
|
}
|
|
|
|
|
2014-08-21 19:59:13 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-04 01:44:12 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* check if a user exists
|
2012-05-04 01:44:12 +04:00
|
|
|
* @param string $uid the username
|
|
|
|
* @return boolean
|
2015-03-31 14:42:23 +03:00
|
|
|
* @throws \Exception when connection could not be established
|
2012-05-04 01:44:12 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function userExists($uid) {
|
2016-04-18 11:32:15 +03:00
|
|
|
$userExists = $this->access->connection->getFromCache('userExists'.$uid);
|
|
|
|
if(!is_null($userExists)) {
|
|
|
|
return (bool)$userExists;
|
2012-07-26 18:11:23 +04:00
|
|
|
}
|
2012-06-22 14:42:07 +04:00
|
|
|
//getting dn, if false the user does not exist. If dn, he may be mapped only, requires more checking.
|
2014-03-27 21:01:14 +04:00
|
|
|
$user = $this->access->userManager->get($uid);
|
2015-06-11 19:24:45 +03:00
|
|
|
|
2014-03-27 21:01:14 +04:00
|
|
|
if(is_null($user)) {
|
2016-11-29 19:05:55 +03:00
|
|
|
Util::writeLog('user_ldap', 'No DN found for '.$uid.' on '.
|
|
|
|
$this->access->connection->ldapHost, Util::DEBUG);
|
2013-09-10 19:11:02 +04:00
|
|
|
$this->access->connection->writeToCache('userExists'.$uid, false);
|
2012-06-22 14:42:07 +04:00
|
|
|
return false;
|
2014-08-21 19:59:13 +04:00
|
|
|
} else if($user instanceof OfflineUser) {
|
|
|
|
//express check for users marked as deleted. Returning true is
|
|
|
|
//necessary for cleanup
|
|
|
|
return true;
|
2012-06-22 14:42:07 +04:00
|
|
|
}
|
2014-08-21 19:59:13 +04:00
|
|
|
|
2015-03-31 14:42:23 +03:00
|
|
|
$result = $this->userExistsOnLDAP($user);
|
|
|
|
$this->access->connection->writeToCache('userExists'.$uid, $result);
|
|
|
|
if($result === true) {
|
|
|
|
$user->update();
|
2012-06-22 14:42:07 +04:00
|
|
|
}
|
2015-03-31 14:42:23 +03:00
|
|
|
return $result;
|
2012-05-04 01:44:12 +04:00
|
|
|
}
|
|
|
|
|
2012-07-20 18:28:20 +04:00
|
|
|
/**
|
2014-08-21 19:59:13 +04:00
|
|
|
* returns whether a user was deleted in LDAP
|
|
|
|
*
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string $uid The username of the user to delete
|
|
|
|
* @return bool
|
2012-07-20 18:28:20 +04:00
|
|
|
*/
|
|
|
|
public function deleteUser($uid) {
|
2017-11-02 15:40:38 +03:00
|
|
|
if ($this->userPluginManager->canDeleteUser()) {
|
|
|
|
return $this->userPluginManager->deleteUser($uid);
|
|
|
|
}
|
|
|
|
|
2015-01-07 01:28:49 +03:00
|
|
|
$marked = $this->ocConfig->getUserValue($uid, 'user_ldap', 'isDeleted', 0);
|
2014-08-21 19:59:13 +04:00
|
|
|
if(intval($marked) === 0) {
|
|
|
|
\OC::$server->getLogger()->notice(
|
|
|
|
'User '.$uid . ' is not marked as deleted, not cleaning up.',
|
|
|
|
array('app' => 'user_ldap'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
\OC::$server->getLogger()->info('Cleaning up after user ' . $uid,
|
|
|
|
array('app' => 'user_ldap'));
|
|
|
|
|
2014-12-20 18:09:04 +03:00
|
|
|
$this->access->getUserMapper()->unmap($uid);
|
2017-07-13 15:32:52 +03:00
|
|
|
$this->access->userManager->invalidate($uid);
|
2014-08-21 19:59:13 +04:00
|
|
|
return true;
|
2012-07-20 18:28:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-12-11 02:12:41 +03:00
|
|
|
* get the user's home directory
|
|
|
|
*
|
|
|
|
* @param string $uid the username
|
|
|
|
* @return bool|string
|
|
|
|
* @throws NoUserException
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2013-02-06 05:28:09 +04:00
|
|
|
public function getHome($uid) {
|
2015-06-11 19:24:45 +03:00
|
|
|
// user Exists check required as it is not done in user proxy!
|
|
|
|
if(!$this->userExists($uid)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-11-02 15:40:38 +03:00
|
|
|
if ($this->userPluginManager->implementsActions(Backend::GET_HOME)) {
|
|
|
|
return $this->userPluginManager->getHome($uid);
|
|
|
|
}
|
|
|
|
|
2013-02-06 05:28:09 +04:00
|
|
|
$cacheKey = 'getHome'.$uid;
|
2016-04-18 11:32:15 +03:00
|
|
|
$path = $this->access->connection->getFromCache($cacheKey);
|
|
|
|
if(!is_null($path)) {
|
|
|
|
return $path;
|
2013-02-06 05:28:09 +04:00
|
|
|
}
|
2012-08-28 16:24:31 +04:00
|
|
|
|
2017-07-11 23:43:47 +03:00
|
|
|
// early return path if it is a deleted user
|
2015-08-21 01:55:42 +03:00
|
|
|
$user = $this->access->userManager->get($uid);
|
2015-12-11 02:12:41 +03:00
|
|
|
if($user instanceof OfflineUser) {
|
2017-09-15 17:01:54 +03:00
|
|
|
if($this->currentUserInDeletionProcess !== null
|
|
|
|
&& $this->currentUserInDeletionProcess === $user->getOCName()
|
|
|
|
) {
|
2017-07-13 15:32:52 +03:00
|
|
|
return $user->getHomePath();
|
|
|
|
} else {
|
|
|
|
throw new NoUserException($uid . ' is not a valid user anymore');
|
|
|
|
}
|
2017-07-11 23:43:47 +03:00
|
|
|
} else if ($user === null) {
|
|
|
|
throw new NoUserException($uid . ' is not a valid user anymore');
|
2015-12-11 02:12:41 +03:00
|
|
|
}
|
2017-07-11 23:43:47 +03:00
|
|
|
|
2015-08-21 01:55:42 +03:00
|
|
|
$path = $user->getHomePath();
|
|
|
|
$this->access->cacheUserHome($uid, $path);
|
|
|
|
|
|
|
|
return $path;
|
2012-08-28 16:24:31 +04:00
|
|
|
}
|
|
|
|
|
2013-01-29 23:41:48 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* get display name of the user
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string $uid user ID of the user
|
2015-01-16 21:31:15 +03:00
|
|
|
* @return string|false display name
|
2013-01-29 23:41:48 +04:00
|
|
|
*/
|
|
|
|
public function getDisplayName($uid) {
|
2017-11-02 15:40:38 +03:00
|
|
|
if ($this->userPluginManager->implementsActions(Backend::GET_DISPLAYNAME)) {
|
|
|
|
return $this->userPluginManager->getDisplayName($uid);
|
|
|
|
}
|
|
|
|
|
2013-03-19 14:16:57 +04:00
|
|
|
if(!$this->userExists($uid)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-29 23:41:48 +04:00
|
|
|
$cacheKey = 'getDisplayName'.$uid;
|
2013-09-10 19:11:02 +04:00
|
|
|
if(!is_null($displayName = $this->access->connection->getFromCache($cacheKey))) {
|
2013-01-29 23:41:48 +04:00
|
|
|
return $displayName;
|
|
|
|
}
|
|
|
|
|
2016-02-03 15:16:55 +03:00
|
|
|
//Check whether the display name is configured to have a 2nd feature
|
|
|
|
$additionalAttribute = $this->access->connection->ldapUserDisplayName2;
|
|
|
|
$displayName2 = '';
|
2016-09-23 01:30:57 +03:00
|
|
|
if ($additionalAttribute !== '') {
|
2016-02-03 15:16:55 +03:00
|
|
|
$displayName2 = $this->access->readAttribute(
|
|
|
|
$this->access->username2dn($uid),
|
|
|
|
$additionalAttribute);
|
|
|
|
}
|
|
|
|
|
2013-09-10 19:11:02 +04:00
|
|
|
$displayName = $this->access->readAttribute(
|
|
|
|
$this->access->username2dn($uid),
|
|
|
|
$this->access->connection->ldapUserDisplayName);
|
2013-01-29 23:41:48 +04:00
|
|
|
|
|
|
|
if($displayName && (count($displayName) > 0)) {
|
2016-02-03 15:16:55 +03:00
|
|
|
$displayName = $displayName[0];
|
|
|
|
|
2016-09-23 01:30:57 +03:00
|
|
|
if (is_array($displayName2)){
|
|
|
|
$displayName2 = count($displayName2) > 0 ? $displayName2[0] : '';
|
2016-02-03 15:16:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$user = $this->access->userManager->get($uid);
|
2016-07-25 10:46:19 +03:00
|
|
|
if ($user instanceof User) {
|
|
|
|
$displayName = $user->composeAndStoreDisplayName($displayName, $displayName2);
|
|
|
|
$this->access->connection->writeToCache($cacheKey, $displayName);
|
|
|
|
}
|
|
|
|
if ($user instanceof OfflineUser) {
|
|
|
|
/** @var OfflineUser $user*/
|
|
|
|
$displayName = $user->getDisplayName();
|
|
|
|
}
|
2016-02-03 15:16:55 +03:00
|
|
|
return $displayName;
|
2013-01-29 23:41:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-11-02 15:40:38 +03:00
|
|
|
/**
|
|
|
|
* set display name of the user
|
|
|
|
* @param string $uid user ID of the user
|
|
|
|
* @param string $displayName new display name of the user
|
|
|
|
* @return string|false display name
|
|
|
|
*/
|
|
|
|
public function setDisplayName($uid, $displayName) {
|
|
|
|
if ($this->userPluginManager->implementsActions(Backend::SET_DISPLAYNAME)) {
|
|
|
|
return $this->userPluginManager->setDisplayName($uid, $displayName);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-29 23:41:48 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Get a list of all display names
|
2013-01-29 23:41:48 +04:00
|
|
|
*
|
2015-06-27 21:35:47 +03:00
|
|
|
* @param string $search
|
|
|
|
* @param string|null $limit
|
|
|
|
* @param string|null $offset
|
|
|
|
* @return array an array of all displayNames (value) and the corresponding uids (key)
|
2013-01-29 23:41:48 +04:00
|
|
|
*/
|
|
|
|
public function getDisplayNames($search = '', $limit = null, $offset = null) {
|
|
|
|
$cacheKey = 'getDisplayNames-'.$search.'-'.$limit.'-'.$offset;
|
2013-09-10 19:11:02 +04:00
|
|
|
if(!is_null($displayNames = $this->access->connection->getFromCache($cacheKey))) {
|
2013-01-29 23:41:48 +04:00
|
|
|
return $displayNames;
|
|
|
|
}
|
|
|
|
|
|
|
|
$displayNames = array();
|
|
|
|
$users = $this->getUsers($search, $limit, $offset);
|
|
|
|
foreach ($users as $user) {
|
|
|
|
$displayNames[$user] = $this->getDisplayName($user);
|
|
|
|
}
|
2013-09-10 19:11:02 +04:00
|
|
|
$this->access->connection->writeToCache($cacheKey, $displayNames);
|
2013-01-29 23:41:48 +04:00
|
|
|
return $displayNames;
|
|
|
|
}
|
|
|
|
|
2014-05-16 00:47:28 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Check if backend implements actions
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param int $actions bitwise-or'ed actions
|
|
|
|
* @return boolean
|
2012-07-20 18:28:20 +04:00
|
|
|
*
|
|
|
|
* Returns the supported actions as int to be
|
2017-07-25 09:57:58 +03:00
|
|
|
* compared with \OC\User\Backend::CREATE_USER etc.
|
2012-07-20 18:28:20 +04:00
|
|
|
*/
|
|
|
|
public function implementsActions($actions) {
|
2016-08-30 12:43:29 +03:00
|
|
|
return (bool)((Backend::CHECK_PASSWORD
|
|
|
|
| Backend::GET_HOME
|
|
|
|
| Backend::GET_DISPLAYNAME
|
|
|
|
| Backend::PROVIDE_AVATAR
|
|
|
|
| Backend::COUNT_USERS
|
2017-11-02 15:40:38 +03:00
|
|
|
| ((intval($this->access->connection->turnOnPasswordChange) === 1)?(Backend::SET_PASSWORD):0)
|
|
|
|
| $this->userPluginManager->getImplementedActions())
|
2013-02-16 05:06:45 +04:00
|
|
|
& $actions);
|
2012-07-20 18:28:20 +04:00
|
|
|
}
|
|
|
|
|
2013-02-12 01:01:52 +04:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function hasUserListings() {
|
|
|
|
return true;
|
|
|
|
}
|
2014-01-08 15:07:57 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* counts the users in LDAP
|
|
|
|
*
|
2014-05-16 00:47:28 +04:00
|
|
|
* @return int|bool
|
2014-01-08 15:07:57 +04:00
|
|
|
*/
|
|
|
|
public function countUsers() {
|
2017-11-02 15:40:38 +03:00
|
|
|
if ($this->userPluginManager->implementsActions(Backend::COUNT_USERS)) {
|
|
|
|
return $this->userPluginManager->countUsers();
|
|
|
|
}
|
|
|
|
|
2014-10-28 01:39:30 +03:00
|
|
|
$filter = $this->access->getFilterForUserCount();
|
2014-11-19 20:16:08 +03:00
|
|
|
$cacheKey = 'countUsers-'.$filter;
|
|
|
|
if(!is_null($entries = $this->access->connection->getFromCache($cacheKey))) {
|
|
|
|
return $entries;
|
|
|
|
}
|
2014-01-08 15:07:57 +04:00
|
|
|
$entries = $this->access->countUsers($filter);
|
2014-11-19 20:16:08 +03:00
|
|
|
$this->access->connection->writeToCache($cacheKey, $entries);
|
2014-01-08 15:07:57 +04:00
|
|
|
return $entries;
|
|
|
|
}
|
2014-12-12 19:25:03 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Backend name to be shown in user management
|
|
|
|
* @return string the name of the backend to be shown
|
|
|
|
*/
|
|
|
|
public function getBackendName(){
|
|
|
|
return 'LDAP';
|
|
|
|
}
|
2016-07-22 11:46:29 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return access for LDAP interaction.
|
|
|
|
* @param string $uid
|
|
|
|
* @return Access instance of Access for LDAP interaction
|
|
|
|
*/
|
|
|
|
public function getLDAPAccess($uid) {
|
|
|
|
return $this->access;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return LDAP connection resource from a cloned connection.
|
|
|
|
* The cloned connection needs to be closed manually.
|
|
|
|
* of the current access.
|
|
|
|
* @param string $uid
|
|
|
|
* @return resource of the LDAP connection
|
|
|
|
*/
|
|
|
|
public function getNewLDAPConnection($uid) {
|
|
|
|
$connection = clone $this->access->getConnection();
|
|
|
|
return $connection->getConnectionResource();
|
|
|
|
}
|
2017-11-02 15:40:38 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* create new user
|
|
|
|
* @param string $username username of the new user
|
|
|
|
* @param string $password password of the new user
|
|
|
|
* @return bool was the user created?
|
|
|
|
*/
|
|
|
|
public function createUser($username, $password) {
|
|
|
|
if ($this->userPluginManager->implementsActions(Backend::CREATE_USER)) {
|
|
|
|
return $this->userPluginManager->createUser($username, $password);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-02-15 01:16:48 +04:00
|
|
|
}
|