2011-06-24 00:51:25 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Dominik Schmidt
|
2012-05-04 15:25:52 +04:00
|
|
|
* @author Artuhr Schiwon
|
2011-06-24 00:51:25 +04:00
|
|
|
* @copyright 2011 Dominik Schmidt dev@dominik-schmidt.de
|
2012-05-04 15:25:52 +04:00
|
|
|
* @copyright 2012 Arthur Schiwon blizzz@owncloud.com
|
2011-06-24 00:51:25 +04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library 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 AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-07-20 19:43:44 +04:00
|
|
|
namespace OCA\user_ldap;
|
|
|
|
|
2013-09-10 19:11:02 +04:00
|
|
|
use OCA\user_ldap\lib\BackendUtility;
|
2015-01-07 01:28:49 +03:00
|
|
|
use OCA\user_ldap\lib\Access;
|
2014-08-21 19:59:13 +04:00
|
|
|
use OCA\user_ldap\lib\user\OfflineUser;
|
|
|
|
use OCA\User_LDAP\lib\User\User;
|
2015-01-07 01:28:49 +03:00
|
|
|
use OCP\IConfig;
|
2013-09-10 19:11:02 +04:00
|
|
|
|
2014-12-12 19:25:03 +03:00
|
|
|
class USER_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserInterface {
|
2015-01-07 01:28:49 +03:00
|
|
|
/** @var string[] $homesToKill */
|
|
|
|
protected $homesToKill = array();
|
|
|
|
|
|
|
|
/** @var \OCP\IConfig */
|
|
|
|
protected $ocConfig;
|
|
|
|
|
2014-08-21 19:59:13 +04:00
|
|
|
/**
|
2015-01-07 01:28:49 +03:00
|
|
|
* @param \OCA\user_ldap\lib\Access $access
|
|
|
|
* @param \OCP\IConfig $ocConfig
|
2014-08-21 19:59:13 +04:00
|
|
|
*/
|
2015-01-07 01:28:49 +03:00
|
|
|
public function __construct(Access $access, IConfig $ocConfig) {
|
|
|
|
parent::__construct($access);
|
|
|
|
$this->ocConfig = $ocConfig;
|
|
|
|
}
|
2014-08-21 19:59:13 +04:00
|
|
|
|
2013-11-21 20:02:37 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* checks whether the user is allowed to change his avatar in ownCloud
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string $uid the ownCloud user name
|
2013-11-21 20:02:37 +04:00
|
|
|
* @return boolean either the user can or cannot
|
|
|
|
*/
|
|
|
|
public function 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;
|
|
|
|
}
|
|
|
|
|
2012-05-04 15:02:20 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Check if the password is correct
|
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
|
|
|
*
|
|
|
|
* Check if the password is correct without logging in the user
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function checkPassword($uid, $password) {
|
2014-02-19 16:13:01 +04:00
|
|
|
$uid = $this->access->escapeFilterPart($uid);
|
|
|
|
|
2012-05-04 15:02:20 +04:00
|
|
|
//find out dn of the user name
|
2014-08-21 19:59:13 +04:00
|
|
|
$attrs = array($this->access->connection->ldapUserDisplayName, 'dn',
|
|
|
|
'uid', 'samaccountname');
|
2013-09-11 21:42:08 +04:00
|
|
|
$filter = \OCP\Util::mb_str_replace(
|
|
|
|
'%uid', $uid, $this->access->connection->ldapLoginFilter, 'UTF-8');
|
2014-08-21 19:59:13 +04:00
|
|
|
$users = $this->access->fetchListOfUsers($filter, $attrs);
|
|
|
|
if(count($users) < 1) {
|
2011-07-06 02:30:57 +04:00
|
|
|
return false;
|
|
|
|
}
|
2014-08-21 19:59:13 +04:00
|
|
|
$dn = $users[0]['dn'];
|
2014-03-27 21:01:14 +04:00
|
|
|
$user = $this->access->userManager->get($dn);
|
2014-08-21 19:59:13 +04:00
|
|
|
if(!$user instanceof User) {
|
2014-10-27 17:58:23 +03:00
|
|
|
\OCP\Util::writeLog('user_ldap',
|
|
|
|
'LDAP Login: Could not get user object for DN ' . $dn .
|
|
|
|
'. Maybe the LDAP entry has no set display name attribute?',
|
|
|
|
\OCP\Util::WARN);
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-03-27 21:01:14 +04:00
|
|
|
$user->markLogin();
|
2014-08-21 19:59:13 +04:00
|
|
|
if(isset($users[0][$this->access->connection->ldapUserDisplayName])) {
|
|
|
|
$dpn = $users[0][$this->access->connection->ldapUserDisplayName];
|
|
|
|
$user->storeDisplayName($dpn);
|
|
|
|
}
|
|
|
|
if(isset($users[0]['uid'])) {
|
|
|
|
$user->storeLDAPUserName($users[0]['uid']);
|
|
|
|
} else if(isset($users[0]['samaccountname'])) {
|
|
|
|
$user->storeLDAPUserName($users[0]['samaccountname']);
|
|
|
|
}
|
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
|
|
|
|
2012-05-04 01:41:08 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Get a list of all users
|
2014-05-15 16:12:17 +04:00
|
|
|
* @return string[] with all uids
|
2012-05-04 01:41:08 +04:00
|
|
|
*
|
|
|
|
* Get a list of all users.
|
|
|
|
*/
|
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,
|
|
|
|
$this->access->getFilterPartForUserSearch($search)
|
2012-10-26 23:54:22 +04:00
|
|
|
));
|
|
|
|
|
2013-02-15 01:16:48 +04:00
|
|
|
\OCP\Util::writeLog('user_ldap',
|
|
|
|
'getUsers: Options: search '.$search.' limit '.$limit.' offset '.$offset.' Filter: '.$filter,
|
|
|
|
\OCP\Util::DEBUG);
|
2012-10-26 23:54:22 +04:00
|
|
|
//do the search and translate results to owncloud names
|
2013-09-10 19:11:02 +04:00
|
|
|
$ldap_users = $this->access->fetchListOfUsers(
|
|
|
|
$filter,
|
|
|
|
array($this->access->connection->ldapUserDisplayName, 'dn'),
|
2013-02-15 01:16:48 +04:00
|
|
|
$limit, $offset);
|
2013-09-10 19:11:02 +04:00
|
|
|
$ldap_users = $this->access->ownCloudUserNames($ldap_users);
|
2012-10-27 14:18:50 +04:00
|
|
|
\OCP\Util::writeLog('user_ldap', 'getUsers: '.count($ldap_users). ' Users found', \OCP\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
|
|
|
|
* @param string|\OCA\User_LDAP\lib\user\User $user either the ownCloud user
|
|
|
|
* name or an instance of that user
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function userExistsOnLDAP($user) {
|
|
|
|
if(is_string($user)) {
|
|
|
|
$user = $this->access->userManager->get($user);
|
|
|
|
}
|
|
|
|
if(!$user instanceof User) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$dn = $user->getDN();
|
|
|
|
//check if user really still exists by reading its entry
|
|
|
|
if(!is_array($this->access->readAttribute($dn, ''))) {
|
|
|
|
$lcr = $this->access->connection->getConnectionResource();
|
|
|
|
if(is_null($lcr)) {
|
|
|
|
throw new \Exception('No LDAP Connection to server ' . $this->access->connection->ldapHost);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function userExists($uid) {
|
2013-09-10 19:11:02 +04:00
|
|
|
if($this->access->connection->isCached('userExists'.$uid)) {
|
|
|
|
return $this->access->connection->getFromCache('userExists'.$uid);
|
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);
|
|
|
|
if(is_null($user)) {
|
2013-09-11 21:42:08 +04:00
|
|
|
\OCP\Util::writeLog('user_ldap', 'No DN found for '.$uid.' on '.
|
|
|
|
$this->access->connection->ldapHost, \OCP\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
|
|
|
|
|
|
|
try {
|
|
|
|
$result = $this->userExistsOnLDAP($user);
|
|
|
|
$this->access->connection->writeToCache('userExists'.$uid, $result);
|
|
|
|
if($result === true) {
|
|
|
|
$user->update();
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
\OCP\Util::writeLog('user_ldap', $e->getMessage(), \OCP\Util::WARN);
|
2012-06-22 14:42:07 +04:00
|
|
|
return false;
|
|
|
|
}
|
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) {
|
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'));
|
|
|
|
|
|
|
|
//Get Home Directory out of user preferences so we can return it later,
|
|
|
|
//necessary for removing directories as done by OC_User.
|
2015-01-07 01:28:49 +03:00
|
|
|
$home = $this->ocConfig->getUserValue($uid, 'user_ldap', 'homePath', '');
|
2014-08-21 19:59:13 +04:00
|
|
|
$this->homesToKill[$uid] = $home;
|
2014-12-20 18:09:04 +03:00
|
|
|
$this->access->getUserMapper()->unmap($uid);
|
2014-08-21 19:59:13 +04:00
|
|
|
|
|
|
|
return true;
|
2012-07-20 18:28:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* get the user's home directory
|
2013-02-06 05:28:09 +04:00
|
|
|
* @param string $uid the username
|
2014-08-21 19:59:13 +04:00
|
|
|
* @return string|bool
|
2012-08-28 16:24:31 +04:00
|
|
|
*/
|
2013-02-06 05:28:09 +04:00
|
|
|
public function getHome($uid) {
|
2013-03-19 03:23:35 +04:00
|
|
|
// user Exists check required as it is not done in user proxy!
|
|
|
|
if(!$this->userExists($uid)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-08-21 19:59:13 +04:00
|
|
|
if(isset($this->homesToKill[$uid]) && !empty($this->homesToKill[$uid])) {
|
|
|
|
//a deleted user who needs some clean up
|
|
|
|
return $this->homesToKill[$uid];
|
|
|
|
}
|
|
|
|
|
2013-02-06 05:28:09 +04:00
|
|
|
$cacheKey = 'getHome'.$uid;
|
2013-09-10 19:11:02 +04:00
|
|
|
if($this->access->connection->isCached($cacheKey)) {
|
|
|
|
return $this->access->connection->getFromCache($cacheKey);
|
2013-02-06 05:28:09 +04:00
|
|
|
}
|
2013-09-10 19:11:02 +04:00
|
|
|
if(strpos($this->access->connection->homeFolderNamingRule, 'attr:') === 0) {
|
|
|
|
$attr = substr($this->access->connection->homeFolderNamingRule, strlen('attr:'));
|
|
|
|
$homedir = $this->access->readAttribute(
|
|
|
|
$this->access->username2dn($uid), $attr);
|
2013-02-06 05:28:09 +04:00
|
|
|
if($homedir && isset($homedir[0])) {
|
|
|
|
$path = $homedir[0];
|
|
|
|
//if attribute's value is an absolute path take this, otherwise append it to data dir
|
|
|
|
//check for / at the beginning or pattern c:\ resp. c:/
|
|
|
|
if(
|
2013-04-21 00:45:50 +04:00
|
|
|
'/' === $path[0]
|
2013-02-15 01:16:48 +04:00
|
|
|
|| (3 < strlen($path) && ctype_alpha($path[0])
|
2013-04-21 00:45:50 +04:00
|
|
|
&& $path[1] === ':' && ('\\' === $path[2] || '/' === $path[2]))
|
2013-02-06 05:28:09 +04:00
|
|
|
) {
|
|
|
|
$homedir = $path;
|
|
|
|
} else {
|
2015-01-07 01:28:49 +03:00
|
|
|
$homedir = $this->ocConfig->getSystemValue('datadirectory',
|
2013-02-15 01:16:48 +04:00
|
|
|
\OC::$SERVERROOT.'/data' ) . '/' . $homedir[0];
|
2013-02-06 05:28:09 +04:00
|
|
|
}
|
2013-09-10 19:11:02 +04:00
|
|
|
$this->access->connection->writeToCache($cacheKey, $homedir);
|
2014-08-21 19:59:13 +04:00
|
|
|
//we need it to store it in the DB as well in case a user gets
|
|
|
|
//deleted so we can clean up afterwards
|
2015-01-07 01:28:49 +03:00
|
|
|
$this->ocConfig->setUserValue(
|
|
|
|
$uid, 'user_ldap', 'homePath', $homedir
|
|
|
|
);
|
2014-08-21 19:59:13 +04:00
|
|
|
//TODO: if home directory changes, the old one needs to be removed.
|
2012-08-28 16:24:31 +04:00
|
|
|
return $homedir;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-06 05:28:09 +04:00
|
|
|
//false will apply default behaviour as defined and done by OC_User
|
2013-09-10 19:11:02 +04:00
|
|
|
$this->access->connection->writeToCache($cacheKey, false);
|
2015-01-07 01:28:49 +03:00
|
|
|
$this->ocConfig->setUserValue($uid, 'user_ldap', 'homePath', '');
|
2012-08-28 16:24:31 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
* @return string display name
|
2013-01-29 23:41:48 +04:00
|
|
|
*/
|
|
|
|
public function 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;
|
|
|
|
}
|
|
|
|
|
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)) {
|
2013-09-10 19:11:02 +04:00
|
|
|
$this->access->connection->writeToCache($cacheKey, $displayName[0]);
|
2013-01-29 23:41:48 +04:00
|
|
|
return $displayName[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Get a list of all display names
|
2014-05-16 00:42:02 +04:00
|
|
|
* @return array with all displayNames (value) and the correspondig uids (key)
|
2013-01-29 23:41:48 +04:00
|
|
|
*
|
|
|
|
* Get a list of all display names and user ids.
|
|
|
|
*/
|
|
|
|
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
|
|
|
|
* compared with OC_USER_BACKEND_CREATE_USER etc.
|
|
|
|
*/
|
|
|
|
public function implementsActions($actions) {
|
2013-02-16 05:06:45 +04:00
|
|
|
return (bool)((OC_USER_BACKEND_CHECK_PASSWORD
|
|
|
|
| OC_USER_BACKEND_GET_HOME
|
2013-11-21 20:02:37 +04:00
|
|
|
| OC_USER_BACKEND_GET_DISPLAYNAME
|
2014-01-08 15:07:57 +04:00
|
|
|
| OC_USER_BACKEND_PROVIDE_AVATAR
|
|
|
|
| OC_USER_BACKEND_COUNT_USERS)
|
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() {
|
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';
|
|
|
|
}
|
|
|
|
|
2013-02-15 01:16:48 +04:00
|
|
|
}
|