2010-07-21 19:53:51 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Aldo "xoen" Giambelluca <xoen@xoen.org>
|
|
|
|
* @author Arthur Schiwon <blizzz@owncloud.com>
|
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
|
|
|
* @author Dominik Schmidt <dev@dominik-schmidt.de>
|
|
|
|
* @author Georg Ehrke <georg@owncloud.com>
|
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2015-10-05 21:54:56 +03:00
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Sam Tuke <mail@samtuke.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Tigran Mkrtchyan <tigran.mkrtchyan@desy.de>
|
2011-04-15 19:14:02 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @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.
|
2011-04-15 19:14:02 +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-04-15 19:14:02 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* error code for functions not provided by the user backend
|
|
|
|
* @deprecated Use \OC_User_Backend::NOT_IMPLEMENTED instead
|
|
|
|
*/
|
2011-06-23 16:33:39 +04:00
|
|
|
define('OC_USER_BACKEND_NOT_IMPLEMENTED', -501);
|
2010-07-21 19:53:51 +04:00
|
|
|
|
|
|
|
/**
|
2011-06-23 16:33:39 +04:00
|
|
|
* actions that user backends can define
|
2010-07-21 19:53:51 +04:00
|
|
|
*/
|
2014-11-26 14:17:28 +03:00
|
|
|
/** @deprecated Use \OC_User_Backend::CREATE_USER instead */
|
2014-09-22 18:45:11 +04:00
|
|
|
define('OC_USER_BACKEND_CREATE_USER', 1 << 0);
|
2014-11-26 14:17:28 +03:00
|
|
|
/** @deprecated Use \OC_User_Backend::SET_PASSWORD instead */
|
2014-09-22 18:45:11 +04:00
|
|
|
define('OC_USER_BACKEND_SET_PASSWORD', 1 << 4);
|
2014-11-26 14:17:28 +03:00
|
|
|
/** @deprecated Use \OC_User_Backend::CHECK_PASSWORD instead */
|
2014-09-22 18:45:11 +04:00
|
|
|
define('OC_USER_BACKEND_CHECK_PASSWORD', 1 << 8);
|
2014-11-26 14:17:28 +03:00
|
|
|
/** @deprecated Use \OC_User_Backend::GET_HOME instead */
|
2014-09-22 18:45:11 +04:00
|
|
|
define('OC_USER_BACKEND_GET_HOME', 1 << 12);
|
2014-11-26 14:17:28 +03:00
|
|
|
/** @deprecated Use \OC_User_Backend::GET_DISPLAYNAME instead */
|
2014-09-22 18:45:11 +04:00
|
|
|
define('OC_USER_BACKEND_GET_DISPLAYNAME', 1 << 16);
|
2014-11-26 14:17:28 +03:00
|
|
|
/** @deprecated Use \OC_User_Backend::SET_DISPLAYNAME instead */
|
2014-09-22 18:45:11 +04:00
|
|
|
define('OC_USER_BACKEND_SET_DISPLAYNAME', 1 << 20);
|
2014-11-26 14:17:28 +03:00
|
|
|
/** @deprecated Use \OC_User_Backend::PROVIDE_AVATAR instead */
|
2014-09-22 18:45:11 +04:00
|
|
|
define('OC_USER_BACKEND_PROVIDE_AVATAR', 1 << 24);
|
2014-11-26 14:17:28 +03:00
|
|
|
/** @deprecated Use \OC_User_Backend::COUNT_USERS instead */
|
2014-09-22 18:45:11 +04:00
|
|
|
define('OC_USER_BACKEND_COUNT_USERS', 1 << 28);
|
2010-07-21 19:53:51 +04:00
|
|
|
|
2011-06-23 16:33:39 +04:00
|
|
|
/**
|
2012-06-01 19:46:18 +04:00
|
|
|
* Abstract base class for user management. Provides methods for querying backend
|
|
|
|
* capabilities.
|
2011-06-23 16:33:39 +04:00
|
|
|
*/
|
2012-07-20 15:09:09 +04:00
|
|
|
abstract class OC_User_Backend implements OC_User_Interface {
|
2014-11-26 14:17:28 +03:00
|
|
|
/**
|
|
|
|
* error code for functions not provided by the user backend
|
|
|
|
*/
|
|
|
|
const NOT_IMPLEMENTED = -501;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* actions that user backends can define
|
|
|
|
*/
|
|
|
|
const CREATE_USER = 1; // 1 << 0
|
|
|
|
const SET_PASSWORD = 16; // 1 << 4
|
|
|
|
const CHECK_PASSWORD = 256; // 1 << 8
|
|
|
|
const GET_HOME = 4096; // 1 << 12
|
|
|
|
const GET_DISPLAYNAME = 65536; // 1 << 16
|
|
|
|
const SET_DISPLAYNAME = 1048576; // 1 << 20
|
|
|
|
const PROVIDE_AVATAR = 16777216; // 1 << 24
|
|
|
|
const COUNT_USERS = 268435456; // 1 << 28
|
2010-07-21 19:53:51 +04:00
|
|
|
|
2011-06-23 16:33:39 +04:00
|
|
|
protected $possibleActions = array(
|
2014-11-26 14:17:28 +03:00
|
|
|
self::CREATE_USER => 'createUser',
|
|
|
|
self::SET_PASSWORD => 'setPassword',
|
|
|
|
self::CHECK_PASSWORD => 'checkPassword',
|
|
|
|
self::GET_HOME => 'getHome',
|
|
|
|
self::GET_DISPLAYNAME => 'getDisplayName',
|
|
|
|
self::SET_DISPLAYNAME => 'setDisplayName',
|
|
|
|
self::PROVIDE_AVATAR => 'canChangeAvatar',
|
|
|
|
self::COUNT_USERS => 'countUsers',
|
2011-06-23 16:33:39 +04:00
|
|
|
);
|
2010-07-21 19:53:51 +04:00
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Get all supported actions
|
2013-05-29 01:46:57 +04:00
|
|
|
* @return int bitwise-or'ed actions
|
2011-06-23 16:33:39 +04:00
|
|
|
*
|
|
|
|
* Returns the supported actions as int to be
|
2014-11-26 14:17:28 +03:00
|
|
|
* compared with self::CREATE_USER etc.
|
2011-06-23 16:33:39 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function getSupportedActions() {
|
2011-06-23 16:33:39 +04:00
|
|
|
$actions = 0;
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($this->possibleActions AS $action => $methodName) {
|
2011-06-23 16:33:39 +04:00
|
|
|
if(method_exists($this, $methodName)) {
|
|
|
|
$actions |= $action;
|
|
|
|
}
|
|
|
|
}
|
2010-09-15 20:24:14 +04:00
|
|
|
|
2011-06-23 16:33:39 +04:00
|
|
|
return $actions;
|
2011-06-21 21:28:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Check if backend implements actions
|
2013-05-29 01:46:57 +04:00
|
|
|
* @param int $actions bitwise-or'ed actions
|
|
|
|
* @return boolean
|
2011-06-23 16:33:39 +04:00
|
|
|
*
|
|
|
|
* Returns the supported actions as int to be
|
2014-11-26 14:17:28 +03:00
|
|
|
* compared with self::CREATE_USER etc.
|
2011-06-23 16:33:39 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function implementsActions($actions) {
|
2011-06-23 16:33:39 +04:00
|
|
|
return (bool)($this->getSupportedActions() & $actions);
|
2011-06-21 21:28:46 +04:00
|
|
|
}
|
2012-05-08 11:07:11 +04:00
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* delete a user
|
2013-05-29 01:46:57 +04:00
|
|
|
* @param string $uid The username of the user to delete
|
|
|
|
* @return bool
|
|
|
|
*
|
|
|
|
* Deletes a user
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function deleteUser( $uid ) {
|
2012-05-08 11:07:11 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-06-27 21:35:47 +03:00
|
|
|
* Get a list of all users
|
|
|
|
*
|
|
|
|
* @param string $search
|
|
|
|
* @param null|int $limit
|
|
|
|
* @param null|int $offset
|
|
|
|
* @return string[] an array of all uids
|
|
|
|
*/
|
2012-09-01 22:49:50 +04:00
|
|
|
public function getUsers($search = '', $limit = null, $offset = null) {
|
2012-05-08 11:07:11 +04:00
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* check if a user exists
|
2012-05-08 11:07:11 +04:00
|
|
|
* @param string $uid the username
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function userExists($uid) {
|
2012-05-08 11:07:11 +04:00
|
|
|
return false;
|
|
|
|
}
|
2012-08-26 18:24:25 +04:00
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* get the user's home directory
|
2012-08-26 18:24:25 +04:00
|
|
|
* @param string $uid the username
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function getHome($uid) {
|
2012-08-26 18:24:25 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2013-01-24 16:07:59 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* get display name of the user
|
2013-05-29 01:46:57 +04:00
|
|
|
* @param string $uid user ID of the user
|
|
|
|
* @return string display name
|
2013-01-24 16:07:59 +04:00
|
|
|
*/
|
|
|
|
public function getDisplayName($uid) {
|
|
|
|
return $uid;
|
|
|
|
}
|
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
|
|
|
*/
|
|
|
|
public function getDisplayNames($search = '', $limit = null, $offset = null) {
|
2013-01-25 14:05:00 +04:00
|
|
|
$displayNames = array();
|
|
|
|
$users = $this->getUsers($search, $limit, $offset);
|
|
|
|
foreach ( $users as $user) {
|
2013-01-30 00:01:59 +04:00
|
|
|
$displayNames[$user] = $user;
|
2013-01-25 14:05:00 +04:00
|
|
|
}
|
2013-02-12 01:01:52 +04:00
|
|
|
return $displayNames;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Check if a user list is available or not
|
2013-02-12 01:01:52 +04:00
|
|
|
* @return boolean if users can be listed or not
|
|
|
|
*/
|
|
|
|
public function hasUserListings() {
|
|
|
|
return false;
|
2013-01-25 14:05:00 +04:00
|
|
|
}
|
2010-07-21 19:53:51 +04:00
|
|
|
}
|