2010-07-15 08:09:22 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author adrien <adrien.waksberg@believedigital.com>
|
|
|
|
|
* @author Aldo "xoen" Giambelluca <xoen@xoen.org>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-07-21 11:07:57 -04:00
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author fabian <fabian@web2.0-apps.de>
|
2017-11-06 14:15:27 -05:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
2016-07-21 11:07:57 -04:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2017-11-06 09:56:42 -05:00
|
|
|
* @author Loki3000 <github@labcms.ru>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Michael Gapczynski <GapczynskiM@gmail.com>
|
2017-11-06 09:56:42 -05:00
|
|
|
* @author michag86 <micha_g@arcor.de>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
|
* @author nishiki <nishiki@yaegashi.fr>
|
2016-07-21 12:13:36 -04:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 09:02:16 -05:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2016-07-21 11:07:57 -04:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2017-11-06 09:56:42 -05:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2011-04-15 11:14:02 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @license AGPL-3.0
|
2011-04-15 11:14:02 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04: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 11:14:02 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2011-04-15 11:14:02 -04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 06:44:34 -04:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Affero General Public License for more details.
|
2015-02-26 05:37:37 -05:00
|
|
|
*
|
2015-03-26 06:44:34 -04: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 05:37:37 -05:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
/*
|
2011-04-15 11:14:02 -04:00
|
|
|
*
|
2015-02-26 05:37:37 -05:00
|
|
|
* The following SQL statement is just a help for developers and will not be
|
|
|
|
|
* executed!
|
2011-04-15 11:14:02 -04:00
|
|
|
*
|
2015-02-26 05:37:37 -05: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 02:34:39 -04:00
|
|
|
namespace OC\User;
|
|
|
|
|
|
2016-05-03 03:29:22 -04:00
|
|
|
use OC\Cache\CappedMemoryCache;
|
2016-08-11 03:52:02 -04:00
|
|
|
use OCP\IUserBackend;
|
|
|
|
|
use OCP\Util;
|
2016-08-14 13:41:00 -04:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcher;
|
|
|
|
|
use Symfony\Component\EventDispatcher\GenericEvent;
|
2016-05-03 03:29:22 -04:00
|
|
|
|
2015-02-26 05:37:37 -05:00
|
|
|
/**
|
|
|
|
|
* Class for user management in a SQL Database (e.g. MySQL, SQLite)
|
2010-07-15 08:09:22 -04:00
|
|
|
*/
|
2016-08-11 03:52:02 -04:00
|
|
|
class Database extends Backend implements IUserBackend {
|
2016-05-03 03:29:22 -04:00
|
|
|
/** @var CappedMemoryCache */
|
|
|
|
|
private $cache;
|
2016-08-11 03:52:02 -04:00
|
|
|
|
2016-06-27 05:30:13 -04:00
|
|
|
/** @var EventDispatcher */
|
|
|
|
|
private $eventDispatcher;
|
2016-08-11 03:52:02 -04:00
|
|
|
|
2016-05-03 03:29:22 -04:00
|
|
|
/**
|
2016-08-14 13:41:00 -04:00
|
|
|
* \OC\User\Database constructor.
|
|
|
|
|
*
|
|
|
|
|
* @param EventDispatcher $eventDispatcher
|
2016-05-03 03:29:22 -04:00
|
|
|
*/
|
2016-06-27 05:30:13 -04:00
|
|
|
public function __construct($eventDispatcher = null) {
|
2016-05-03 03:29:22 -04:00
|
|
|
$this->cache = new CappedMemoryCache();
|
2016-06-27 05:30:13 -04:00
|
|
|
$this->eventDispatcher = $eventDispatcher ? $eventDispatcher : \OC::$server->getEventDispatcher();
|
2016-05-03 03:29:22 -04:00
|
|
|
}
|
2012-08-29 02:38:33 -04:00
|
|
|
|
2010-07-15 08:09:22 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* Create a new user
|
2014-05-11 16: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-22 17:42:18 -04:00
|
|
|
*
|
2011-07-29 15:36:03 -04:00
|
|
|
* Creates a new user. Basic checking of username is done in OC_User
|
2011-04-18 05:39:29 -04:00
|
|
|
* itself, not in its subclasses.
|
2010-07-22 17:42:18 -04:00
|
|
|
*/
|
2013-12-11 10:22:26 -05:00
|
|
|
public function createUser($uid, $password) {
|
2014-03-06 16:34:43 -05:00
|
|
|
if (!$this->userExists($uid)) {
|
2016-08-03 05:52:15 -04:00
|
|
|
$event = new GenericEvent($password);
|
|
|
|
|
$this->eventDispatcher->dispatch('OCP\PasswordPolicy::validate', $event);
|
2016-05-04 02:34:39 -04:00
|
|
|
$query = \OC_DB::prepare('INSERT INTO `*PREFIX*users` ( `uid`, `password` ) VALUES( ?, ? )');
|
2017-08-17 06:08:40 -04:00
|
|
|
try {
|
|
|
|
|
$result = $query->execute(array($uid, \OC::$server->getHasher()->hash($password)));
|
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
|
$result = false;
|
|
|
|
|
}
|
2011-04-15 11:14:02 -04:00
|
|
|
|
2016-10-10 03:30:36 -04:00
|
|
|
// Clear cache
|
|
|
|
|
unset($this->cache[$uid]);
|
|
|
|
|
|
2010-07-22 17:42:18 -04:00
|
|
|
return $result ? true : false;
|
2010-07-15 13:56:13 -04:00
|
|
|
}
|
2014-03-06 16:34:43 -05:00
|
|
|
|
|
|
|
|
return false;
|
2010-07-21 11:53:51 -04:00
|
|
|
}
|
2010-07-22 17:42:18 -04:00
|
|
|
|
2011-04-16 19:04:23 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* delete a user
|
2014-05-11 16:51:30 -04:00
|
|
|
* @param string $uid The username of the user to delete
|
|
|
|
|
* @return bool
|
2011-04-16 19:04:23 -04:00
|
|
|
*
|
2011-04-18 04:41:01 -04:00
|
|
|
* Deletes a user
|
2011-04-16 19:04:23 -04:00
|
|
|
*/
|
2013-12-11 10:22:26 -05:00
|
|
|
public function deleteUser($uid) {
|
2011-04-18 04:41:01 -04:00
|
|
|
// Delete user-group-relation
|
2016-05-04 02:34:39 -04:00
|
|
|
$query = \OC_DB::prepare('DELETE FROM `*PREFIX*users` WHERE `uid` = ?');
|
2014-03-09 07:22:47 -04:00
|
|
|
$result = $query->execute(array($uid));
|
|
|
|
|
|
2014-03-11 11:58:10 -04:00
|
|
|
if (isset($this->cache[$uid])) {
|
|
|
|
|
unset($this->cache[$uid]);
|
2014-03-10 12:27:51 -04:00
|
|
|
}
|
|
|
|
|
|
2014-03-11 11:58:10 -04:00
|
|
|
return $result ? true : false;
|
2011-04-16 19:04:23 -04:00
|
|
|
}
|
|
|
|
|
|
2010-07-15 08:09:22 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* Set password
|
2014-05-11 16:51:30 -04:00
|
|
|
* @param string $uid The username
|
|
|
|
|
* @param string $password The new password
|
|
|
|
|
* @return bool
|
2010-07-22 17:42:18 -04:00
|
|
|
*
|
2011-04-18 04:41:01 -04:00
|
|
|
* Change the password of a user
|
2010-07-22 17:42:18 -04:00
|
|
|
*/
|
2013-12-11 10:22:26 -05:00
|
|
|
public function setPassword($uid, $password) {
|
|
|
|
|
if ($this->userExists($uid)) {
|
2016-06-27 05:30:13 -04:00
|
|
|
$event = new GenericEvent($password);
|
|
|
|
|
$this->eventDispatcher->dispatch('OCP\PasswordPolicy::validate', $event);
|
2016-05-04 02:34:39 -04:00
|
|
|
$query = \OC_DB::prepare('UPDATE `*PREFIX*users` SET `password` = ? WHERE `uid` = ?');
|
2014-11-06 09:42:06 -05:00
|
|
|
$result = $query->execute(array(\OC::$server->getHasher()->hash($password), $uid));
|
2011-04-18 04:41:01 -04:00
|
|
|
|
2014-03-09 07:22:47 -04:00
|
|
|
return $result ? true : false;
|
2011-04-18 09:07:14 -04:00
|
|
|
}
|
2014-03-07 02:46:34 -05:00
|
|
|
|
|
|
|
|
return false;
|
2010-07-15 08:09:22 -04:00
|
|
|
}
|
2013-02-22 11:21:57 -05:00
|
|
|
|
2013-02-11 16:01:52 -05:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* Set display name
|
2014-05-11 16:51:30 -04:00
|
|
|
* @param string $uid The username
|
|
|
|
|
* @param string $displayName The new display name
|
|
|
|
|
* @return bool
|
2013-02-11 16:01:52 -05:00
|
|
|
*
|
|
|
|
|
* Change the display name of a user
|
2013-01-28 08:23:15 -05:00
|
|
|
*/
|
2013-12-11 10:22:26 -05:00
|
|
|
public function setDisplayName($uid, $displayName) {
|
|
|
|
|
if ($this->userExists($uid)) {
|
2016-05-04 02:34:39 -04:00
|
|
|
$query = \OC_DB::prepare('UPDATE `*PREFIX*users` SET `displayname` = ? WHERE LOWER(`uid`) = LOWER(?)');
|
2013-12-11 10:22:26 -05:00
|
|
|
$query->execute(array($displayName, $uid));
|
2014-03-11 06:56:46 -04:00
|
|
|
$this->cache[$uid]['displayname'] = $displayName;
|
|
|
|
|
|
2013-02-11 16:01:52 -05:00
|
|
|
return true;
|
|
|
|
|
}
|
2014-03-06 16:34:43 -05:00
|
|
|
|
|
|
|
|
return false;
|
2013-01-28 08:23:15 -05:00
|
|
|
}
|
2010-07-19 12:52:49 -04:00
|
|
|
|
2013-02-11 16:01:52 -05:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* get display name of the user
|
2014-05-11 16:51:30 -04:00
|
|
|
* @param string $uid user ID of the user
|
2013-12-11 10:22:26 -05:00
|
|
|
* @return string display name
|
2013-02-11 16:01:52 -05:00
|
|
|
*/
|
|
|
|
|
public function getDisplayName($uid) {
|
2014-03-06 11:57:09 -05:00
|
|
|
$this->loadUser($uid);
|
2014-03-11 06:56:46 -04:00
|
|
|
return empty($this->cache[$uid]['displayname']) ? $uid : $this->cache[$uid]['displayname'];
|
2013-01-28 09:07:31 -05:00
|
|
|
}
|
2013-02-22 11:21:57 -05:00
|
|
|
|
2013-02-11 16:01:52 -05:00
|
|
|
/**
|
|
|
|
|
* Get a list of all display names and user ids.
|
2015-06-27 14:35:47 -04: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-11 16:01:52 -05:00
|
|
|
*/
|
2013-01-28 09:07:31 -05:00
|
|
|
public function getDisplayNames($search = '', $limit = null, $offset = null) {
|
2015-05-18 10:38:56 -04:00
|
|
|
$parameters = [];
|
|
|
|
|
$searchLike = '';
|
|
|
|
|
if ($search !== '') {
|
2017-03-16 16:59:47 -04:00
|
|
|
$parameters[] = '%' . \OC::$server->getDatabaseConnection()->escapeLikeParameter($search) . '%';
|
|
|
|
|
$parameters[] = '%' . \OC::$server->getDatabaseConnection()->escapeLikeParameter($search) . '%';
|
2015-05-18 10:38:56 -04:00
|
|
|
$searchLike = ' WHERE LOWER(`displayname`) LIKE LOWER(?) OR '
|
|
|
|
|
. 'LOWER(`uid`) LIKE LOWER(?)';
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-28 09:07:31 -05:00
|
|
|
$displayNames = array();
|
2016-05-04 02:34:39 -04:00
|
|
|
$query = \OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users`'
|
2017-03-22 19:11:09 -04:00
|
|
|
. $searchLike .' ORDER BY LOWER(`displayname`), LOWER(`uid`) ASC', $limit, $offset);
|
2015-05-18 10:38:56 -04:00
|
|
|
$result = $query->execute($parameters);
|
2013-02-11 16:01:52 -05:00
|
|
|
while ($row = $result->fetchRow()) {
|
|
|
|
|
$displayNames[$row['uid']] = $row['displayname'];
|
2013-01-31 06:09:42 -05:00
|
|
|
}
|
2013-02-22 11:21:57 -05:00
|
|
|
|
2013-02-11 16:01:52 -05:00
|
|
|
return $displayNames;
|
2013-01-28 09:07:31 -05:00
|
|
|
}
|
2013-02-22 11:21:57 -05:00
|
|
|
|
2010-07-15 08:09:22 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* Check if the password is correct
|
2014-05-11 16:51:30 -04:00
|
|
|
* @param string $uid The username
|
|
|
|
|
* @param string $password The password
|
2014-05-11 13:05:28 -04:00
|
|
|
* @return string
|
2010-07-22 17:42:18 -04:00
|
|
|
*
|
2011-04-18 04:41:01 -04:00
|
|
|
* Check if the password is correct without logging in the user
|
2012-05-16 18:57:43 -04:00
|
|
|
* returns the user id or false
|
2010-07-22 17:42:18 -04:00
|
|
|
*/
|
2013-12-11 10:22:26 -05:00
|
|
|
public function checkPassword($uid, $password) {
|
2016-05-04 02:34:39 -04:00
|
|
|
$query = \OC_DB::prepare('SELECT `uid`, `password` FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)');
|
2013-12-11 10:22:26 -05:00
|
|
|
$result = $query->execute(array($uid));
|
2010-07-15 08:09:22 -04:00
|
|
|
|
2013-12-11 10:22:26 -05:00
|
|
|
$row = $result->fetchRow();
|
|
|
|
|
if ($row) {
|
|
|
|
|
$storedHash = $row['password'];
|
2014-11-06 09:42:06 -05:00
|
|
|
$newHash = '';
|
|
|
|
|
if(\OC::$server->getHasher()->verify($password, $storedHash, $newHash)) {
|
|
|
|
|
if(!empty($newHash)) {
|
|
|
|
|
$this->setPassword($uid, $password);
|
2012-02-26 07:49:51 -05:00
|
|
|
}
|
2014-03-06 11:57:09 -05:00
|
|
|
return $row['uid'];
|
2012-02-26 07:49:51 -05:00
|
|
|
}
|
2014-11-06 09:42:06 -05:00
|
|
|
|
2010-07-15 08:09:22 -04:00
|
|
|
}
|
2014-03-06 11:57:09 -05:00
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* Load an user in the cache
|
2014-03-06 16:23:17 -05:00
|
|
|
* @param string $uid the username
|
2017-02-15 12:14:29 -05:00
|
|
|
* @return boolean true if user was found, false otherwise
|
2014-03-06 11:57:09 -05:00
|
|
|
*/
|
2014-03-11 06:56:46 -04:00
|
|
|
private function loadUser($uid) {
|
2017-03-30 06:24:46 -04:00
|
|
|
$uid = (string) $uid;
|
2016-10-10 03:30:36 -04:00
|
|
|
if (!isset($this->cache[$uid])) {
|
2017-01-10 05:09:33 -05:00
|
|
|
//guests $uid could be NULL or ''
|
2017-03-30 06:24:46 -04:00
|
|
|
if ($uid === '') {
|
2017-01-10 05:09:33 -05:00
|
|
|
$this->cache[$uid]=false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-04 02:34:39 -04:00
|
|
|
$query = \OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)');
|
2014-03-06 11:57:09 -05:00
|
|
|
$result = $query->execute(array($uid));
|
|
|
|
|
|
2016-01-07 04:14:05 -05:00
|
|
|
if ($result === false) {
|
2016-08-11 03:52:02 -04:00
|
|
|
Util::writeLog('core', \OC_DB::getErrorMessage(), Util::ERROR);
|
2014-03-06 11:57:09 -05:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-10 03:30:36 -04:00
|
|
|
$this->cache[$uid] = false;
|
|
|
|
|
|
2017-02-15 12:14:29 -05:00
|
|
|
// "uid" is primary key, so there can only be a single result
|
2017-02-01 04:49:07 -05:00
|
|
|
if ($row = $result->fetchRow()) {
|
2014-03-11 06:56:46 -04:00
|
|
|
$this->cache[$uid]['uid'] = $row['uid'];
|
|
|
|
|
$this->cache[$uid]['displayname'] = $row['displayname'];
|
2017-02-15 12:14:29 -05:00
|
|
|
$result->closeCursor();
|
|
|
|
|
} else {
|
|
|
|
|
$result->closeCursor();
|
|
|
|
|
return false;
|
2012-02-26 07:49:51 -05:00
|
|
|
}
|
2010-07-15 08:09:22 -04:00
|
|
|
}
|
2014-03-06 11:57:09 -05:00
|
|
|
|
|
|
|
|
return true;
|
2010-07-15 08:09:22 -04:00
|
|
|
}
|
|
|
|
|
|
2010-09-12 11:04:52 -04:00
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* Get a list of all users
|
2010-09-12 11:04:52 -04:00
|
|
|
*
|
2015-06-27 14:35:47 -04:00
|
|
|
* @param string $search
|
|
|
|
|
* @param null|int $limit
|
|
|
|
|
* @param null|int $offset
|
|
|
|
|
* @return string[] an array of all uids
|
2010-09-12 11:04:52 -04:00
|
|
|
*/
|
2012-08-24 18:05:07 -04:00
|
|
|
public function getUsers($search = '', $limit = null, $offset = null) {
|
2015-05-18 10:38:56 -04:00
|
|
|
$parameters = [];
|
|
|
|
|
$searchLike = '';
|
|
|
|
|
if ($search !== '') {
|
2017-03-16 16:59:47 -04:00
|
|
|
$parameters[] = '%' . \OC::$server->getDatabaseConnection()->escapeLikeParameter($search) . '%';
|
2015-05-18 10:38:56 -04:00
|
|
|
$searchLike = ' WHERE LOWER(`uid`) LIKE LOWER(?)';
|
2017-11-14 11:32:03 -05:00
|
|
|
$parameters[] = '%' . \OC::$server->getDatabaseConnection()->escapeLikeParameter($search) . '%';
|
|
|
|
|
$searchLike .= ' OR LOWER(`displayname`) LIKE LOWER(?)';
|
2015-05-18 10:38:56 -04:00
|
|
|
}
|
|
|
|
|
|
2017-03-22 19:11:09 -04:00
|
|
|
$query = \OC_DB::prepare('SELECT `uid` FROM `*PREFIX*users`' . $searchLike . ' ORDER BY LOWER(`uid`) ASC', $limit, $offset);
|
2015-05-18 10:38:56 -04:00
|
|
|
$result = $query->execute($parameters);
|
2012-07-30 20:20:46 -04:00
|
|
|
$users = array();
|
|
|
|
|
while ($row = $result->fetchRow()) {
|
|
|
|
|
$users[] = $row['uid'];
|
2010-09-12 11:04:52 -04:00
|
|
|
}
|
|
|
|
|
return $users;
|
|
|
|
|
}
|
2011-06-21 13:28:46 -04:00
|
|
|
|
|
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* check if a user exists
|
2011-06-21 13:28:46 -04:00
|
|
|
* @param string $uid the username
|
|
|
|
|
* @return boolean
|
|
|
|
|
*/
|
2012-09-07 09:22:01 -04:00
|
|
|
public function userExists($uid) {
|
2014-03-06 11:57:09 -05:00
|
|
|
$this->loadUser($uid);
|
2016-10-10 03:30:36 -04:00
|
|
|
return $this->cache[$uid] !== false;
|
2011-06-21 13:28:46 -04:00
|
|
|
}
|
2012-08-26 10:24:25 -04:00
|
|
|
|
|
|
|
|
/**
|
2014-05-19 11:50:53 -04:00
|
|
|
* get the user's home directory
|
2013-12-11 10:22:26 -05:00
|
|
|
* @param string $uid the username
|
2014-02-06 10:30:58 -05:00
|
|
|
* @return string|false
|
2013-12-11 10:22:26 -05:00
|
|
|
*/
|
2012-09-07 09:22:01 -04:00
|
|
|
public function getHome($uid) {
|
2013-12-11 10:22:26 -05:00
|
|
|
if ($this->userExists($uid)) {
|
2016-05-04 02:34:39 -04:00
|
|
|
return \OC::$server->getConfig()->getSystemValue("datadirectory", \OC::$SERVERROOT . "/data") . '/' . $uid;
|
2012-08-26 10:24:25 -04:00
|
|
|
}
|
2014-03-06 11:57:09 -05:00
|
|
|
|
|
|
|
|
return false;
|
2012-08-26 10:24:25 -04:00
|
|
|
}
|
2013-02-11 16:01:52 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function hasUserListings() {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-07 17:05:37 -05:00
|
|
|
/**
|
|
|
|
|
* counts the users in the database
|
|
|
|
|
*
|
2014-05-11 13:28:45 -04:00
|
|
|
* @return int|bool
|
2014-01-07 17:05:37 -05:00
|
|
|
*/
|
|
|
|
|
public function countUsers() {
|
2016-05-04 02:34:39 -04:00
|
|
|
$query = \OC_DB::prepare('SELECT COUNT(*) FROM `*PREFIX*users`');
|
2014-01-07 17:05:37 -05:00
|
|
|
$result = $query->execute();
|
2016-01-07 04:14:05 -05:00
|
|
|
if ($result === false) {
|
2016-08-11 03:52:02 -04:00
|
|
|
Util::writeLog('core', \OC_DB::getErrorMessage(), Util::ERROR);
|
2014-01-07 17:05:37 -05:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return $result->fetchOne();
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-05 05:50:36 -04: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 11:25:03 -05:00
|
|
|
/**
|
|
|
|
|
* Backend name to be shown in user management
|
|
|
|
|
* @return string the name of the backend to be shown
|
|
|
|
|
*/
|
|
|
|
|
public function getBackendName(){
|
|
|
|
|
return 'Database';
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-05 05:50:36 -04:00
|
|
|
public static function preLoginNameUsedAsUserName($param) {
|
|
|
|
|
if(!isset($param['uid'])) {
|
|
|
|
|
throw new \Exception('key uid is expected to be set in $param');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$backends = \OC::$server->getUserManager()->getBackends();
|
|
|
|
|
foreach ($backends as $backend) {
|
2016-08-11 03:52:02 -04:00
|
|
|
if ($backend instanceof Database) {
|
2016-05-04 02:34:39 -04:00
|
|
|
/** @var \OC\User\Database $backend */
|
2015-10-05 05:50:36 -04:00
|
|
|
$uid = $backend->loginName2UserName($param['uid']);
|
|
|
|
|
if ($uid !== false) {
|
|
|
|
|
$param['uid'] = $uid;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2010-07-15 13:56:13 -04:00
|
|
|
}
|