2010-07-15 16:09:22 +04:00
|
|
|
<?php
|
2018-03-22 14:19:26 +03:00
|
|
|
declare(strict_types=1);
|
2010-07-15 16:09:22 +04:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author adrien <adrien.waksberg@believedigital.com>
|
|
|
|
* @author Aldo "xoen" Giambelluca <xoen@xoen.org>
|
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>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author fabian <fabian@web2.0-apps.de>
|
2017-11-06 22:15:27 +03:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Loki3000 <github@labcms.ru>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Michael Gapczynski <GapczynskiM@gmail.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author michag86 <micha_g@arcor.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author nishiki <nishiki@yaegashi.fr>
|
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>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2011-04-15 19:14:02 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2011-04-15 19:14:02 +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-04-15 19:14:02 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2011-04-15 19:14:02 +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.
|
2015-02-26 13:37:37 +03: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/>
|
2015-02-26 13:37:37 +03:00
|
|
|
*
|
|
|
|
*/
|
2017-12-20 17:51:37 +03:00
|
|
|
|
2015-02-26 13:37:37 +03:00
|
|
|
/*
|
2011-04-15 19:14:02 +04:00
|
|
|
*
|
2015-02-26 13:37:37 +03:00
|
|
|
* The following SQL statement is just a help for developers and will not be
|
|
|
|
* executed!
|
2011-04-15 19:14:02 +04:00
|
|
|
*
|
2015-02-26 13:37:37 +03:00
|
|
|
* CREATE TABLE `users` (
|
|
|
|
* `uid` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
|
|
|
|
* `password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
|
|
|
|
* PRIMARY KEY (`uid`)
|
|
|
|
* ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-05-04 09:34:39 +03:00
|
|
|
namespace OC\User;
|
|
|
|
|
2016-05-03 10:29:22 +03:00
|
|
|
use OC\Cache\CappedMemoryCache;
|
2018-04-04 17:45:56 +03:00
|
|
|
use OCP\IDBConnection;
|
2018-03-22 17:49:07 +03:00
|
|
|
use OCP\User\Backend\ABackend;
|
2018-03-22 14:19:26 +03:00
|
|
|
use OCP\User\Backend\ICheckPasswordBackend;
|
|
|
|
use OCP\User\Backend\ICountUsersBackend;
|
|
|
|
use OCP\User\Backend\ICreateUserBackend;
|
|
|
|
use OCP\User\Backend\IGetDisplayNameBackend;
|
|
|
|
use OCP\User\Backend\IGetHomeBackend;
|
2019-08-13 10:33:46 +03:00
|
|
|
use OCP\User\Backend\IGetRealUIDBackend;
|
2018-03-22 14:19:26 +03:00
|
|
|
use OCP\User\Backend\ISetDisplayNameBackend;
|
|
|
|
use OCP\User\Backend\ISetPasswordBackend;
|
2019-05-28 20:46:36 +03:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
2016-08-14 20:41:00 +03:00
|
|
|
use Symfony\Component\EventDispatcher\GenericEvent;
|
2016-05-03 10:29:22 +03:00
|
|
|
|
2015-02-26 13:37:37 +03:00
|
|
|
/**
|
|
|
|
* Class for user management in a SQL Database (e.g. MySQL, SQLite)
|
2010-07-15 16:09:22 +04:00
|
|
|
*/
|
2018-03-22 17:49:07 +03:00
|
|
|
class Database extends ABackend
|
2018-03-22 14:19:26 +03:00
|
|
|
implements ICreateUserBackend,
|
|
|
|
ISetPasswordBackend,
|
|
|
|
ISetDisplayNameBackend,
|
|
|
|
IGetDisplayNameBackend,
|
|
|
|
ICheckPasswordBackend,
|
|
|
|
IGetHomeBackend,
|
2019-08-13 10:33:46 +03:00
|
|
|
ICountUsersBackend,
|
|
|
|
IGetRealUIDBackend {
|
2016-05-03 10:29:22 +03:00
|
|
|
/** @var CappedMemoryCache */
|
|
|
|
private $cache;
|
2016-08-11 10:52:02 +03:00
|
|
|
|
2019-05-28 20:46:36 +03:00
|
|
|
/** @var EventDispatcherInterface */
|
2016-06-27 12:30:13 +03:00
|
|
|
private $eventDispatcher;
|
2016-08-11 10:52:02 +03:00
|
|
|
|
2018-04-04 17:45:56 +03:00
|
|
|
/** @var IDBConnection */
|
|
|
|
private $dbConn;
|
|
|
|
|
2018-06-14 15:34:19 +03:00
|
|
|
/** @var string */
|
|
|
|
private $table;
|
|
|
|
|
2016-05-03 10:29:22 +03:00
|
|
|
/**
|
2016-08-14 20:41:00 +03:00
|
|
|
* \OC\User\Database constructor.
|
|
|
|
*
|
2019-05-28 20:46:36 +03:00
|
|
|
* @param EventDispatcherInterface $eventDispatcher
|
2018-06-14 15:34:19 +03:00
|
|
|
* @param string $table
|
2016-05-03 10:29:22 +03:00
|
|
|
*/
|
2018-06-14 15:34:19 +03:00
|
|
|
public function __construct($eventDispatcher = null, $table = 'users') {
|
2016-05-03 10:29:22 +03:00
|
|
|
$this->cache = new CappedMemoryCache();
|
2018-06-14 15:34:19 +03:00
|
|
|
$this->table = $table;
|
2016-06-27 12:30:13 +03:00
|
|
|
$this->eventDispatcher = $eventDispatcher ? $eventDispatcher : \OC::$server->getEventDispatcher();
|
2016-05-03 10:29:22 +03:00
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2018-04-04 17:45:56 +03:00
|
|
|
/**
|
|
|
|
* FIXME: This function should not be required!
|
|
|
|
*/
|
|
|
|
private function fixDI() {
|
|
|
|
if ($this->dbConn === null) {
|
|
|
|
$this->dbConn = \OC::$server->getDatabaseConnection();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-15 16:09:22 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Create a new user
|
2017-12-20 17:51:37 +03:00
|
|
|
*
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $uid The username of the user to create
|
|
|
|
* @param string $password The password of the new user
|
|
|
|
* @return bool
|
2010-07-23 01:42:18 +04:00
|
|
|
*
|
2011-07-29 23:36:03 +04:00
|
|
|
* Creates a new user. Basic checking of username is done in OC_User
|
2011-04-18 13:39:29 +04:00
|
|
|
* itself, not in its subclasses.
|
2010-07-23 01:42:18 +04:00
|
|
|
*/
|
2018-03-22 14:19:26 +03:00
|
|
|
public function createUser(string $uid, string $password): bool {
|
2018-04-04 17:45:56 +03:00
|
|
|
$this->fixDI();
|
|
|
|
|
2014-03-07 01:34:43 +04:00
|
|
|
if (!$this->userExists($uid)) {
|
2016-08-03 12:52:15 +03:00
|
|
|
$event = new GenericEvent($password);
|
|
|
|
$this->eventDispatcher->dispatch('OCP\PasswordPolicy::validate', $event);
|
2018-04-04 17:45:56 +03:00
|
|
|
|
|
|
|
$qb = $this->dbConn->getQueryBuilder();
|
2018-06-14 15:34:19 +03:00
|
|
|
$qb->insert($this->table)
|
2018-04-04 17:45:56 +03:00
|
|
|
->values([
|
|
|
|
'uid' => $qb->createNamedParameter($uid),
|
|
|
|
'password' => $qb->createNamedParameter(\OC::$server->getHasher()->hash($password)),
|
|
|
|
'uid_lower' => $qb->createNamedParameter(mb_strtolower($uid)),
|
|
|
|
]);
|
|
|
|
|
|
|
|
$result = $qb->execute();
|
2011-04-15 19:14:02 +04:00
|
|
|
|
2016-10-10 10:30:36 +03:00
|
|
|
// Clear cache
|
|
|
|
unset($this->cache[$uid]);
|
|
|
|
|
2010-07-23 01:42:18 +04:00
|
|
|
return $result ? true : false;
|
2010-07-15 21:56:13 +04:00
|
|
|
}
|
2014-03-07 01:34:43 +04:00
|
|
|
|
|
|
|
return false;
|
2010-07-21 19:53:51 +04:00
|
|
|
}
|
2010-07-23 01:42:18 +04:00
|
|
|
|
2011-04-17 03:04:23 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* delete a user
|
2017-12-20 17:51:37 +03:00
|
|
|
*
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $uid The username of the user to delete
|
|
|
|
* @return bool
|
2011-04-17 03:04:23 +04:00
|
|
|
*
|
2011-04-18 12:41:01 +04:00
|
|
|
* Deletes a user
|
2011-04-17 03:04:23 +04:00
|
|
|
*/
|
2013-12-11 19:22:26 +04:00
|
|
|
public function deleteUser($uid) {
|
2018-04-04 17:45:56 +03:00
|
|
|
$this->fixDI();
|
|
|
|
|
2011-04-18 12:41:01 +04:00
|
|
|
// Delete user-group-relation
|
2018-06-14 15:34:19 +03:00
|
|
|
$query = $this->dbConn->getQueryBuilder();
|
2018-06-14 15:34:19 +03:00
|
|
|
$query->delete($this->table)
|
2018-06-14 15:34:19 +03:00
|
|
|
->where($query->expr()->eq('uid_lower', $query->createNamedParameter(mb_strtolower($uid))));
|
|
|
|
$result = $query->execute();
|
2014-03-09 15:22:47 +04:00
|
|
|
|
2014-03-11 19:58:10 +04:00
|
|
|
if (isset($this->cache[$uid])) {
|
|
|
|
unset($this->cache[$uid]);
|
2014-03-10 20:27:51 +04:00
|
|
|
}
|
|
|
|
|
2014-03-11 19:58:10 +04:00
|
|
|
return $result ? true : false;
|
2011-04-17 03:04:23 +04:00
|
|
|
}
|
|
|
|
|
2018-10-03 00:31:55 +03:00
|
|
|
private function updatePassword(string $uid, string $passwordHash): bool {
|
|
|
|
$query = $this->dbConn->getQueryBuilder();
|
|
|
|
$query->update($this->table)
|
|
|
|
->set('password', $query->createNamedParameter($passwordHash))
|
|
|
|
->where($query->expr()->eq('uid_lower', $query->createNamedParameter(mb_strtolower($uid))));
|
|
|
|
$result = $query->execute();
|
|
|
|
|
|
|
|
return $result ? true : false;
|
|
|
|
}
|
|
|
|
|
2010-07-15 16:09:22 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Set password
|
2017-12-20 17:51:37 +03:00
|
|
|
*
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $uid The username
|
|
|
|
* @param string $password The new password
|
|
|
|
* @return bool
|
2010-07-23 01:42:18 +04:00
|
|
|
*
|
2011-04-18 12:41:01 +04:00
|
|
|
* Change the password of a user
|
2010-07-23 01:42:18 +04:00
|
|
|
*/
|
2018-03-22 14:19:26 +03:00
|
|
|
public function setPassword(string $uid, string $password): bool {
|
2018-04-04 17:45:56 +03:00
|
|
|
$this->fixDI();
|
|
|
|
|
2013-12-11 19:22:26 +04:00
|
|
|
if ($this->userExists($uid)) {
|
2016-06-27 12:30:13 +03:00
|
|
|
$event = new GenericEvent($password);
|
|
|
|
$this->eventDispatcher->dispatch('OCP\PasswordPolicy::validate', $event);
|
2018-06-14 15:34:19 +03:00
|
|
|
|
|
|
|
$hasher = \OC::$server->getHasher();
|
|
|
|
$hashedPassword = $hasher->hash($password);
|
|
|
|
|
2018-10-03 00:31:55 +03:00
|
|
|
return $this->updatePassword($uid, $hashedPassword);
|
2011-04-18 17:07:14 +04:00
|
|
|
}
|
2014-03-07 11:46:34 +04:00
|
|
|
|
|
|
|
return false;
|
2010-07-15 16:09:22 +04:00
|
|
|
}
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2013-02-12 01:01:52 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Set display name
|
2017-12-20 17:51:37 +03:00
|
|
|
*
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $uid The username
|
|
|
|
* @param string $displayName The new display name
|
|
|
|
* @return bool
|
2013-02-12 01:01:52 +04:00
|
|
|
*
|
|
|
|
* Change the display name of a user
|
2013-01-28 17:23:15 +04:00
|
|
|
*/
|
2018-03-22 14:19:26 +03:00
|
|
|
public function setDisplayName(string $uid, string $displayName): bool {
|
2018-04-04 17:45:56 +03:00
|
|
|
$this->fixDI();
|
|
|
|
|
2013-12-11 19:22:26 +04:00
|
|
|
if ($this->userExists($uid)) {
|
2018-06-14 15:34:19 +03:00
|
|
|
$query = $this->dbConn->getQueryBuilder();
|
2018-06-14 15:34:19 +03:00
|
|
|
$query->update($this->table)
|
2018-06-14 15:34:19 +03:00
|
|
|
->set('displayname', $query->createNamedParameter($displayName))
|
|
|
|
->where($query->expr()->eq('uid_lower', $query->createNamedParameter(mb_strtolower($uid))));
|
|
|
|
$query->execute();
|
|
|
|
|
2014-03-11 14:56:46 +04:00
|
|
|
$this->cache[$uid]['displayname'] = $displayName;
|
|
|
|
|
2013-02-12 01:01:52 +04:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-07 01:34:43 +04:00
|
|
|
|
|
|
|
return false;
|
2013-01-28 17:23:15 +04:00
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
|
2013-02-12 01:01:52 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* get display name of the user
|
2017-12-20 17:51:37 +03:00
|
|
|
*
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $uid user ID of the user
|
2013-12-11 19:22:26 +04:00
|
|
|
* @return string display name
|
2013-02-12 01:01:52 +04:00
|
|
|
*/
|
2018-03-22 14:19:26 +03:00
|
|
|
public function getDisplayName($uid): string {
|
2018-04-24 15:23:50 +03:00
|
|
|
$uid = (string)$uid;
|
2014-03-06 20:57:09 +04:00
|
|
|
$this->loadUser($uid);
|
2014-03-11 14:56:46 +04:00
|
|
|
return empty($this->cache[$uid]['displayname']) ? $uid : $this->cache[$uid]['displayname'];
|
2013-01-28 18:07:31 +04:00
|
|
|
}
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2013-02-12 01:01:52 +04:00
|
|
|
/**
|
|
|
|
* Get a list of all display names and user ids.
|
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-02-12 01:01:52 +04:00
|
|
|
*/
|
2013-01-28 18:07:31 +04:00
|
|
|
public function getDisplayNames($search = '', $limit = null, $offset = null) {
|
2019-10-28 15:07:43 +03:00
|
|
|
$limit = $this->fixLimit($limit);
|
|
|
|
|
2018-04-04 17:45:56 +03:00
|
|
|
$this->fixDI();
|
2017-12-20 17:51:37 +03:00
|
|
|
|
2018-04-04 17:45:56 +03:00
|
|
|
$query = $this->dbConn->getQueryBuilder();
|
2017-12-20 17:51:37 +03:00
|
|
|
|
|
|
|
$query->select('uid', 'displayname')
|
2018-06-14 15:34:19 +03:00
|
|
|
->from($this->table, 'u')
|
2017-12-20 17:51:37 +03:00
|
|
|
->leftJoin('u', 'preferences', 'p', $query->expr()->andX(
|
2018-03-14 23:53:14 +03:00
|
|
|
$query->expr()->eq('userid', 'uid'),
|
|
|
|
$query->expr()->eq('appid', $query->expr()->literal('settings')),
|
|
|
|
$query->expr()->eq('configkey', $query->expr()->literal('email')))
|
2017-12-20 17:51:37 +03:00
|
|
|
)
|
|
|
|
// sqlite doesn't like re-using a single named parameter here
|
2018-04-04 17:45:56 +03:00
|
|
|
->where($query->expr()->iLike('uid', $query->createPositionalParameter('%' . $this->dbConn->escapeLikeParameter($search) . '%')))
|
|
|
|
->orWhere($query->expr()->iLike('displayname', $query->createPositionalParameter('%' . $this->dbConn->escapeLikeParameter($search) . '%')))
|
|
|
|
->orWhere($query->expr()->iLike('configvalue', $query->createPositionalParameter('%' . $this->dbConn->escapeLikeParameter($search) . '%')))
|
2017-12-20 17:51:37 +03:00
|
|
|
->orderBy($query->func()->lower('displayname'), 'ASC')
|
2018-06-14 15:34:19 +03:00
|
|
|
->orderBy('uid_lower', 'ASC')
|
2017-12-20 17:51:37 +03:00
|
|
|
->setMaxResults($limit)
|
|
|
|
->setFirstResult($offset);
|
2015-05-18 17:38:56 +03:00
|
|
|
|
2017-12-20 17:51:37 +03:00
|
|
|
$result = $query->execute();
|
|
|
|
$displayNames = [];
|
|
|
|
while ($row = $result->fetch()) {
|
2018-04-24 13:48:52 +03:00
|
|
|
$displayNames[(string)$row['uid']] = (string)$row['displayname'];
|
2013-01-31 15:09:42 +04:00
|
|
|
}
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2013-02-12 01:01:52 +04:00
|
|
|
return $displayNames;
|
2013-01-28 18:07:31 +04:00
|
|
|
}
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2010-07-15 16:09:22 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Check if the password is correct
|
2017-12-20 17:51:37 +03:00
|
|
|
*
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $uid The username
|
|
|
|
* @param string $password The password
|
2014-05-11 21:05:28 +04:00
|
|
|
* @return string
|
2010-07-23 01:42:18 +04:00
|
|
|
*
|
2011-04-18 12:41:01 +04:00
|
|
|
* Check if the password is correct without logging in the user
|
2012-05-17 02:57:43 +04:00
|
|
|
* returns the user id or false
|
2010-07-23 01:42:18 +04:00
|
|
|
*/
|
2018-03-22 14:19:26 +03:00
|
|
|
public function checkPassword(string $uid, string $password) {
|
2018-04-04 17:45:56 +03:00
|
|
|
$this->fixDI();
|
|
|
|
|
|
|
|
$qb = $this->dbConn->getQueryBuilder();
|
|
|
|
$qb->select('uid', 'password')
|
2018-06-14 15:34:19 +03:00
|
|
|
->from($this->table)
|
2018-04-04 17:45:56 +03:00
|
|
|
->where(
|
|
|
|
$qb->expr()->eq(
|
|
|
|
'uid_lower', $qb->createNamedParameter(mb_strtolower($uid))
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$result = $qb->execute();
|
|
|
|
$row = $result->fetch();
|
|
|
|
$result->closeCursor();
|
2010-07-15 16:09:22 +04:00
|
|
|
|
2013-12-11 19:22:26 +04:00
|
|
|
if ($row) {
|
|
|
|
$storedHash = $row['password'];
|
2014-11-06 17:42:06 +03:00
|
|
|
$newHash = '';
|
2017-12-20 17:51:37 +03:00
|
|
|
if (\OC::$server->getHasher()->verify($password, $storedHash, $newHash)) {
|
|
|
|
if (!empty($newHash)) {
|
2018-10-03 00:31:55 +03:00
|
|
|
$this->updatePassword($uid, $newHash);
|
2012-02-26 16:49:51 +04:00
|
|
|
}
|
2018-04-24 13:48:52 +03:00
|
|
|
return (string)$row['uid'];
|
2012-02-26 16:49:51 +04:00
|
|
|
}
|
2014-11-06 17:42:06 +03:00
|
|
|
|
2010-07-15 16:09:22 +04:00
|
|
|
}
|
2014-03-06 20:57:09 +04:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Load an user in the cache
|
2017-12-20 17:51:37 +03:00
|
|
|
*
|
2014-03-07 01:23:17 +04:00
|
|
|
* @param string $uid the username
|
2017-02-15 20:14:29 +03:00
|
|
|
* @return boolean true if user was found, false otherwise
|
2014-03-06 20:57:09 +04:00
|
|
|
*/
|
2014-03-11 14:56:46 +04:00
|
|
|
private function loadUser($uid) {
|
2018-04-04 17:45:56 +03:00
|
|
|
$this->fixDI();
|
|
|
|
|
2017-12-20 17:51:37 +03:00
|
|
|
$uid = (string)$uid;
|
2016-10-10 10:30:36 +03:00
|
|
|
if (!isset($this->cache[$uid])) {
|
2017-01-10 13:09:33 +03:00
|
|
|
//guests $uid could be NULL or ''
|
2017-03-30 13:24:46 +03:00
|
|
|
if ($uid === '') {
|
2017-12-20 17:51:37 +03:00
|
|
|
$this->cache[$uid] = false;
|
2017-01-10 13:09:33 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-04 17:45:56 +03:00
|
|
|
$qb = $this->dbConn->getQueryBuilder();
|
|
|
|
$qb->select('uid', 'displayname')
|
2018-06-14 15:34:19 +03:00
|
|
|
->from($this->table)
|
2018-04-04 17:45:56 +03:00
|
|
|
->where(
|
|
|
|
$qb->expr()->eq(
|
|
|
|
'uid_lower', $qb->createNamedParameter(mb_strtolower($uid))
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$result = $qb->execute();
|
|
|
|
$row = $result->fetch();
|
|
|
|
$result->closeCursor();
|
2014-03-06 20:57:09 +04:00
|
|
|
|
2016-10-10 10:30:36 +03:00
|
|
|
$this->cache[$uid] = false;
|
|
|
|
|
2017-02-15 20:14:29 +03:00
|
|
|
// "uid" is primary key, so there can only be a single result
|
2018-04-04 17:45:56 +03:00
|
|
|
if ($row !== false) {
|
2018-04-24 13:48:52 +03:00
|
|
|
$this->cache[$uid]['uid'] = (string)$row['uid'];
|
|
|
|
$this->cache[$uid]['displayname'] = (string)$row['displayname'];
|
2017-02-15 20:14:29 +03:00
|
|
|
} else {
|
|
|
|
return false;
|
2012-02-26 16:49:51 +04:00
|
|
|
}
|
2010-07-15 16:09:22 +04:00
|
|
|
}
|
2014-03-06 20:57:09 +04:00
|
|
|
|
|
|
|
return true;
|
2010-07-15 16:09:22 +04:00
|
|
|
}
|
|
|
|
|
2010-09-12 19:04:52 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Get a list of all users
|
2010-09-12 19:04:52 +04:00
|
|
|
*
|
2015-06-27 21:35:47 +03:00
|
|
|
* @param string $search
|
|
|
|
* @param null|int $limit
|
|
|
|
* @param null|int $offset
|
|
|
|
* @return string[] an array of all uids
|
2010-09-12 19:04:52 +04:00
|
|
|
*/
|
2012-08-25 02:05:07 +04:00
|
|
|
public function getUsers($search = '', $limit = null, $offset = null) {
|
2019-10-28 15:07:43 +03:00
|
|
|
$limit = $this->fixLimit($limit);
|
|
|
|
|
2017-12-20 17:51:37 +03:00
|
|
|
$users = $this->getDisplayNames($search, $limit, $offset);
|
2018-04-24 15:23:50 +03:00
|
|
|
$userIds = array_map(function ($uid) {
|
|
|
|
return (string)$uid;
|
|
|
|
}, array_keys($users));
|
2017-12-20 17:51:37 +03:00
|
|
|
sort($userIds, SORT_STRING | SORT_FLAG_CASE);
|
|
|
|
return $userIds;
|
2010-09-12 19:04:52 +04:00
|
|
|
}
|
2011-06-21 21:28:46 +04:00
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* check if a user exists
|
2017-12-20 17:51:37 +03:00
|
|
|
*
|
2011-06-21 21:28:46 +04:00
|
|
|
* @param string $uid the username
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function userExists($uid) {
|
2014-03-06 20:57:09 +04:00
|
|
|
$this->loadUser($uid);
|
2016-10-10 10:30:36 +03:00
|
|
|
return $this->cache[$uid] !== false;
|
2011-06-21 21:28:46 +04:00
|
|
|
}
|
2012-08-26 18:24:25 +04:00
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* get the user's home directory
|
2017-12-20 17:51:37 +03:00
|
|
|
*
|
2013-12-11 19:22:26 +04:00
|
|
|
* @param string $uid the username
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return string|false
|
2013-12-11 19:22:26 +04:00
|
|
|
*/
|
2018-03-22 14:19:26 +03:00
|
|
|
public function getHome(string $uid) {
|
2013-12-11 19:22:26 +04:00
|
|
|
if ($this->userExists($uid)) {
|
2018-03-22 14:19:26 +03:00
|
|
|
return \OC::$server->getConfig()->getSystemValue('datadirectory', \OC::$SERVERROOT . '/data') . '/' . $uid;
|
2012-08-26 18:24:25 +04:00
|
|
|
}
|
2014-03-06 20:57:09 +04:00
|
|
|
|
|
|
|
return false;
|
2012-08-26 18:24:25 +04:00
|
|
|
}
|
2013-02-12 01:01:52 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function hasUserListings() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-01-08 02:05:37 +04:00
|
|
|
/**
|
|
|
|
* counts the users in the database
|
|
|
|
*
|
2014-05-11 21:28:45 +04:00
|
|
|
* @return int|bool
|
2014-01-08 02:05:37 +04:00
|
|
|
*/
|
|
|
|
public function countUsers() {
|
2018-04-04 17:45:56 +03:00
|
|
|
$this->fixDI();
|
|
|
|
|
2018-06-14 15:34:19 +03:00
|
|
|
$query = $this->dbConn->getQueryBuilder();
|
|
|
|
$query->select($query->func()->count('uid'))
|
2018-06-14 15:34:19 +03:00
|
|
|
->from($this->table);
|
2014-01-08 02:05:37 +04:00
|
|
|
$result = $query->execute();
|
2018-06-14 15:34:19 +03:00
|
|
|
|
|
|
|
return $result->fetchColumn();
|
2014-01-08 02:05:37 +04:00
|
|
|
}
|
|
|
|
|
2015-10-05 12:50:36 +03:00
|
|
|
/**
|
|
|
|
* returns the username for the given login name in the correct casing
|
|
|
|
*
|
|
|
|
* @param string $loginName
|
|
|
|
* @return string|false
|
|
|
|
*/
|
|
|
|
public function loginName2UserName($loginName) {
|
|
|
|
if ($this->userExists($loginName)) {
|
|
|
|
return $this->cache[$loginName]['uid'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-12-12 19:25:03 +03:00
|
|
|
/**
|
|
|
|
* Backend name to be shown in user management
|
2017-12-20 17:51:37 +03:00
|
|
|
*
|
2014-12-12 19:25:03 +03:00
|
|
|
* @return string the name of the backend to be shown
|
|
|
|
*/
|
2017-12-20 17:51:37 +03:00
|
|
|
public function getBackendName() {
|
2014-12-12 19:25:03 +03:00
|
|
|
return 'Database';
|
|
|
|
}
|
|
|
|
|
2015-10-05 12:50:36 +03:00
|
|
|
public static function preLoginNameUsedAsUserName($param) {
|
2017-12-20 17:51:37 +03:00
|
|
|
if (!isset($param['uid'])) {
|
2015-10-05 12:50:36 +03:00
|
|
|
throw new \Exception('key uid is expected to be set in $param');
|
|
|
|
}
|
|
|
|
|
|
|
|
$backends = \OC::$server->getUserManager()->getBackends();
|
|
|
|
foreach ($backends as $backend) {
|
2016-08-11 10:52:02 +03:00
|
|
|
if ($backend instanceof Database) {
|
2016-05-04 09:34:39 +03:00
|
|
|
/** @var \OC\User\Database $backend */
|
2015-10-05 12:50:36 +03:00
|
|
|
$uid = $backend->loginName2UserName($param['uid']);
|
|
|
|
if ($uid !== false) {
|
|
|
|
$param['uid'] = $uid;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-13 10:33:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getRealUID(string $uid): string {
|
|
|
|
if (!$this->userExists($uid)) {
|
|
|
|
throw new \RuntimeException($uid . ' does not exist');
|
|
|
|
}
|
2015-10-05 12:50:36 +03:00
|
|
|
|
2019-08-13 10:33:46 +03:00
|
|
|
return $this->cache[$uid]['uid'];
|
2015-10-05 12:50:36 +03:00
|
|
|
}
|
2019-08-13 10:33:46 +03:00
|
|
|
|
2019-10-28 15:07:43 +03:00
|
|
|
private function fixLimit($limit) {
|
|
|
|
if (is_int($limit) && $limit >= 0) {
|
|
|
|
return $limit;
|
|
|
|
}
|
2019-08-13 10:33:46 +03:00
|
|
|
|
2019-10-28 15:07:43 +03:00
|
|
|
return null;
|
|
|
|
}
|
2010-07-15 21:56:13 +04:00
|
|
|
}
|