2010-04-22 21:03:54 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
2011-03-02 01:20:16 +03:00
|
|
|
* @author Frank Karlitschek
|
|
|
|
* @copyright 2010 Frank Karlitschek karlitschek@kde.org
|
|
|
|
*
|
2010-04-22 21:03:54 +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
|
2011-03-02 01:20:16 +03:00
|
|
|
* License as published by the Free Software Foundation; either
|
2010-04-22 21:03:54 +04:00
|
|
|
* version 3 of the License, or any later version.
|
2011-03-02 01:20:16 +03:00
|
|
|
*
|
2010-04-22 21:03:54 +04:00
|
|
|
* 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.
|
2011-03-02 01:20:16 +03:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
2010-04-22 21:03:54 +04:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2011-03-02 01:20:16 +03:00
|
|
|
*
|
2010-04-22 21:03:54 +04:00
|
|
|
*/
|
|
|
|
|
2010-07-21 19:53:51 +04:00
|
|
|
|
2010-07-15 21:10:20 +04:00
|
|
|
|
|
|
|
|
2010-07-15 22:57:14 +04:00
|
|
|
if ( !$CONFIG_INSTALLED ) {
|
2010-07-15 21:10:20 +04:00
|
|
|
$_SESSION['user_id'] = false;
|
|
|
|
$_SESSION['username'] = '';
|
|
|
|
$_SESSION['username_clean'] = '';
|
2010-04-24 14:40:20 +04:00
|
|
|
}
|
|
|
|
|
2010-07-21 19:53:51 +04:00
|
|
|
//cache the userid's an groupid's
|
2010-07-15 22:57:14 +04:00
|
|
|
if ( !isset($_SESSION['user_id_cache']) ) {
|
2010-07-15 21:10:20 +04:00
|
|
|
$_SESSION['user_id_cache'] = array();
|
2010-06-22 03:27:44 +04:00
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
if ( !isset($_SESSION['group_id_cache']) ) {
|
2010-07-15 21:10:20 +04:00
|
|
|
$_SESSION['group_id_cache'] = array();
|
2010-06-22 03:27:44 +04:00
|
|
|
}
|
|
|
|
|
2010-07-21 19:53:51 +04:00
|
|
|
|
2010-07-15 21:10:20 +04:00
|
|
|
|
|
|
|
|
2010-04-22 21:03:54 +04:00
|
|
|
/**
|
2010-07-21 19:53:51 +04:00
|
|
|
* Class for User Management
|
2010-04-22 21:03:54 +04:00
|
|
|
*
|
|
|
|
*/
|
2010-07-21 19:53:51 +04:00
|
|
|
class OC_USER {
|
|
|
|
|
|
|
|
// The backend used for user management
|
|
|
|
private static $_backend;
|
|
|
|
|
|
|
|
/**
|
2010-07-23 01:42:18 +04:00
|
|
|
* Set the User Authentication Module
|
|
|
|
*
|
|
|
|
* @param string $backend The backend to use for user managment
|
|
|
|
*/
|
2010-07-21 19:53:51 +04:00
|
|
|
public static function setBackend($backend='database') {
|
|
|
|
if ( (null === $backend) OR (!is_string($backend)) ) {
|
|
|
|
$backend = 'database';
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ( $backend ) {
|
2010-07-23 02:48:45 +04:00
|
|
|
case 'database':
|
2010-07-21 19:53:51 +04:00
|
|
|
case 'mysql':
|
|
|
|
case 'sqlite':
|
2011-03-02 01:20:16 +03:00
|
|
|
oc_require_once('User/database.php');
|
2010-07-21 19:53:51 +04:00
|
|
|
self::$_backend = new OC_USER_DATABASE();
|
|
|
|
break;
|
|
|
|
default:
|
2010-07-23 02:48:45 +04:00
|
|
|
$className = 'OC_USER_' . strToUpper($backend);
|
|
|
|
self::$_backend = new $className();
|
2010-07-21 19:53:51 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
|
2010-04-22 21:03:54 +04:00
|
|
|
/**
|
2010-07-23 01:42:18 +04:00
|
|
|
* Check if the login button is pressed and log the user in
|
|
|
|
*
|
|
|
|
*/
|
2011-01-01 03:01:57 +03:00
|
|
|
public static function loginListener() {
|
|
|
|
return self::$_backend->loginListener();
|
2010-07-21 19:53:51 +04:00
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
|
2010-04-22 21:03:54 +04:00
|
|
|
/**
|
2010-07-23 01:42:18 +04:00
|
|
|
* Try to create a new user
|
|
|
|
*
|
|
|
|
* @param string $username The username of the user to create
|
|
|
|
* @param string $password The password of the new user
|
|
|
|
*/
|
2010-07-21 19:53:51 +04:00
|
|
|
public static function createUser($username, $password) {
|
|
|
|
return self::$_backend->createUser($username, $password);
|
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
|
2010-04-22 21:03:54 +04:00
|
|
|
/**
|
2010-07-23 01:42:18 +04:00
|
|
|
* Try to login a user
|
|
|
|
*
|
|
|
|
* @param string $username The username of the user to log in
|
|
|
|
* @param string $password The password of the user
|
|
|
|
*/
|
2010-07-21 19:53:51 +04:00
|
|
|
public static function login($username, $password) {
|
|
|
|
return self::$_backend->login($username, $password);
|
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
|
2010-04-22 21:03:54 +04:00
|
|
|
/**
|
2010-07-23 01:42:18 +04:00
|
|
|
* Check if the logout button is pressed and logout the user
|
|
|
|
*
|
|
|
|
*/
|
2011-01-01 03:01:57 +03:00
|
|
|
public static function logoutListener() {
|
|
|
|
return self::$_backend->logoutListener();
|
2010-07-21 19:53:51 +04:00
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
|
2011-03-02 01:20:16 +03:00
|
|
|
/**
|
|
|
|
* Kick the user
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public static function logout() {
|
|
|
|
return self::$_backend->logout();
|
|
|
|
}
|
|
|
|
|
2010-04-22 21:03:54 +04:00
|
|
|
/**
|
2010-07-23 01:42:18 +04:00
|
|
|
* Check if the user is logged in
|
|
|
|
*
|
|
|
|
*/
|
2010-07-21 19:53:51 +04:00
|
|
|
public static function isLoggedIn() {
|
|
|
|
return self::$_backend->isLoggedIn();
|
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
|
2010-04-22 21:03:54 +04:00
|
|
|
/**
|
2010-07-23 01:42:18 +04:00
|
|
|
* Try to create a new group
|
|
|
|
*
|
|
|
|
* @param string $groupName The name of the group to create
|
|
|
|
*/
|
2010-07-21 19:53:51 +04:00
|
|
|
public static function createGroup($groupName) {
|
|
|
|
return self::$_backend->createGroup($groupName);
|
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
|
2010-04-22 21:03:54 +04:00
|
|
|
/**
|
2010-07-23 01:42:18 +04:00
|
|
|
* Get the ID of a user
|
|
|
|
*
|
|
|
|
* @param string $username Name of the user to find the ID
|
|
|
|
* @param boolean $noCache If false the cache is used to find the ID
|
|
|
|
*/
|
2010-07-21 19:53:51 +04:00
|
|
|
public static function getUserId($username, $noCache=false) {
|
2010-08-12 19:10:05 +04:00
|
|
|
return self::$_backend->getUserId($username, $noCache);
|
2010-07-21 19:53:51 +04:00
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
|
2010-04-22 21:03:54 +04:00
|
|
|
/**
|
2010-07-23 01:42:18 +04:00
|
|
|
* Get the ID of a group
|
|
|
|
*
|
|
|
|
* @param string $groupName Name of the group to find the ID
|
|
|
|
* @param boolean $noCache If false the cache is used to find the ID
|
|
|
|
*/
|
2010-07-21 19:53:51 +04:00
|
|
|
public static function getGroupId($groupName, $noCache=false) {
|
2010-08-12 19:10:05 +04:00
|
|
|
return self::$_backend->getGroupId($groupName, $noCache);
|
2010-07-21 19:53:51 +04:00
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
|
2010-04-23 02:05:04 +04:00
|
|
|
/**
|
2010-07-23 01:42:18 +04:00
|
|
|
* Get the name of a group
|
|
|
|
*
|
|
|
|
* @param string $groupId ID of the group
|
|
|
|
* @param boolean $noCache If false the cache is used to find the name of the group
|
|
|
|
*/
|
2010-07-21 19:53:51 +04:00
|
|
|
public static function getGroupName($groupId, $noCache=false) {
|
2010-08-12 19:10:05 +04:00
|
|
|
return self::$_backend->getGroupName($groupId, $noCache);
|
2010-07-21 19:53:51 +04:00
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
|
2010-04-22 21:03:54 +04:00
|
|
|
/**
|
2010-07-23 01:42:18 +04:00
|
|
|
* Check if a user belongs to a group
|
|
|
|
*
|
|
|
|
* @param string $username Name of the user to check
|
|
|
|
* @param string $groupName Name of the group
|
|
|
|
*/
|
2010-07-21 19:53:51 +04:00
|
|
|
public static function inGroup($username, $groupName) {
|
|
|
|
return self::$_backend->inGroup($username, $groupName);
|
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
|
2010-04-22 21:03:54 +04:00
|
|
|
/**
|
2010-07-23 01:42:18 +04:00
|
|
|
* Add a user to a group
|
|
|
|
*
|
|
|
|
* @param string $username Name of the user to add to group
|
|
|
|
* @param string $groupName Name of the group in which add the user
|
|
|
|
*/
|
2010-07-21 19:53:51 +04:00
|
|
|
public static function addToGroup($username, $groupName) {
|
|
|
|
return self::$_backend->addToGroup($username, $groupName);
|
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
|
2010-09-20 22:27:43 +04:00
|
|
|
/**
|
|
|
|
* Remove a user from a group
|
|
|
|
*
|
|
|
|
* @param string $username Name of the user to remove from group
|
|
|
|
* @param string $groupName Name of the group from which remove the user
|
|
|
|
*/
|
|
|
|
public static function removeFromGroup($username,$groupName){
|
|
|
|
return self::$_backend->removeFromGroup($username, $groupName);
|
|
|
|
}
|
|
|
|
|
2010-07-23 01:42:18 +04:00
|
|
|
/**
|
|
|
|
* Generate a random password
|
|
|
|
*/
|
2010-07-21 19:53:51 +04:00
|
|
|
public static function generatePassword() {
|
2010-09-20 22:27:43 +04:00
|
|
|
return substr(md5(uniqId().time()),0,10);
|
2010-07-21 19:53:51 +04:00
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
|
2010-04-23 02:05:04 +04:00
|
|
|
/**
|
2010-07-23 01:42:18 +04:00
|
|
|
* Get all groups the user belongs to
|
|
|
|
*
|
|
|
|
* @param string $username Name of the user
|
|
|
|
*/
|
2010-07-21 19:53:51 +04:00
|
|
|
public static function getUserGroups($username) {
|
|
|
|
return self::$_backend->getUserGroups($username);
|
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
|
2010-04-23 02:05:04 +04:00
|
|
|
/**
|
2010-07-23 01:42:18 +04:00
|
|
|
* Set the password of a user
|
|
|
|
*
|
|
|
|
* @param string $username User who password will be changed
|
|
|
|
* @param string $password The new password for the user
|
|
|
|
*/
|
2010-07-21 19:53:51 +04:00
|
|
|
public static function setPassword($username, $password) {
|
|
|
|
return self::$_backend->setPassword($username, $password);
|
|
|
|
}
|
2010-07-19 20:52:49 +04:00
|
|
|
|
2010-04-23 02:05:04 +04:00
|
|
|
/**
|
2010-07-23 01:42:18 +04:00
|
|
|
* Check if the password of the user is correct
|
|
|
|
*
|
|
|
|
* @param string $username Name of the user
|
|
|
|
* @param string $password Password of the user
|
|
|
|
*/
|
2010-07-21 19:53:51 +04:00
|
|
|
public static function checkPassword($username, $password) {
|
|
|
|
return self::$_backend->checkPassword($username, $password);
|
|
|
|
}
|
2010-07-15 21:10:20 +04:00
|
|
|
|
2010-09-15 20:24:14 +04:00
|
|
|
/**
|
|
|
|
* get a list of all users
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public static function getUsers() {
|
|
|
|
return self::$_backend->getUsers();
|
|
|
|
}
|
2011-03-02 01:20:16 +03:00
|
|
|
|
2010-09-15 20:24:14 +04:00
|
|
|
/**
|
|
|
|
* get a list of all groups
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public static function getGroups() {
|
|
|
|
return self::$_backend->getGroups();
|
|
|
|
}
|
2010-04-22 21:03:54 +04:00
|
|
|
}
|