7b84bf5f0e
* Using camelCase for `$classType` property * Using `self` keyword instead of class name * Added spaces here and there
200 lines
4.1 KiB
PHP
Executable file
200 lines
4.1 KiB
PHP
Executable file
<?php
|
|
|
|
/**
|
|
* ownCloud
|
|
*
|
|
* @author Frank Karlitschek
|
|
* @copyright 2010 Frank Karlitschek karlitschek@kde.org
|
|
*
|
|
* 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 Lesser General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
|
|
|
|
if( !$CONFIG_INSTALLED ) {
|
|
$_SESSION['user_id'] = false;
|
|
$_SESSION['username'] = '';
|
|
$_SESSION['username_clean'] = '';
|
|
}
|
|
|
|
//cache the userid's an groupid's
|
|
if( !isset($_SESSION['user_id_cache']) ) {
|
|
$_SESSION['user_id_cache'] = array();
|
|
}
|
|
if( !isset($_SESSION['group_id_cache']) ) {
|
|
$_SESSION['group_id_cache'] = array();
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Class for usermanagement
|
|
*
|
|
*/
|
|
class OC_USER {
|
|
|
|
public static $classType;
|
|
|
|
/**
|
|
* check if the login button is pressed and logg the user in
|
|
*
|
|
*/
|
|
public static function loginLisener() {
|
|
return self::classType->loginLisener();
|
|
}
|
|
|
|
|
|
/**
|
|
* try to create a new user
|
|
*
|
|
*/
|
|
public static function createUser($username, $password) {
|
|
return self::classType->createUser($username, $password);
|
|
}
|
|
|
|
/**
|
|
* try to login a user
|
|
*
|
|
*/
|
|
public static function login($username, $password) {
|
|
return self::classType->login($username, $password);
|
|
}
|
|
|
|
/**
|
|
* check if the logout button is pressed and logout the user
|
|
*
|
|
*/
|
|
public static function logoutLisener() {
|
|
return self::classType->logoutLisener();
|
|
}
|
|
|
|
/**
|
|
* check if a user is logged in
|
|
*
|
|
*/
|
|
public static function isLoggedIn() {
|
|
return self::classType->isLoggedIn();
|
|
}
|
|
|
|
/**
|
|
* try to create a new group
|
|
*
|
|
*/
|
|
public static function createGroup($groupname) {
|
|
return self::classType->createGroup($groupname);
|
|
}
|
|
|
|
/**
|
|
* get the id of a user
|
|
*
|
|
*/
|
|
public static function getUserId($username, $nocache=false) {
|
|
return self::classType->getUserId($username, $nocache=false);
|
|
}
|
|
|
|
/**
|
|
* get the id of a group
|
|
*
|
|
*/
|
|
public static function getGroupId($groupname, $nocache=false) {
|
|
return self::classType->getGroupId($groupname, $nocache=false);
|
|
}
|
|
|
|
/**
|
|
* get the name of a group
|
|
*
|
|
*/
|
|
public static function getGroupName($groupid, $nocache=false) {
|
|
return self::classType->getGroupName($groupid, $nocache=false);
|
|
}
|
|
|
|
/**
|
|
* check if a user belongs to a group
|
|
*
|
|
*/
|
|
public static function inGroup($username, $groupname) {
|
|
return self::classType->inGroup($username, $groupname);
|
|
}
|
|
|
|
/**
|
|
* add a user to a group
|
|
*
|
|
*/
|
|
public static function addToGroup($username, $groupname) {
|
|
return self::classType->addToGroup($username, $groupname);
|
|
}
|
|
|
|
public static function generatePassword() {
|
|
return uniqid();
|
|
}
|
|
|
|
/**
|
|
* get all groups the user belongs to
|
|
*
|
|
*/
|
|
public static function getUserGroups($username) {
|
|
return self::classType->getUserGroups($username);
|
|
}
|
|
|
|
/**
|
|
* set the password of a user
|
|
*
|
|
*/
|
|
public static function setPassword($username, $password) {
|
|
return self::classType->setPassword($username, $password);
|
|
}
|
|
|
|
/**
|
|
* check the password of a user
|
|
*
|
|
*/
|
|
public static function checkPassword($username, $password) {
|
|
return self::classType->checkPassword($username, $password);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Funtion to set the User Authentication Module
|
|
*/
|
|
function set_OC_USER() {
|
|
global $CONFIG_BACKEND;
|
|
|
|
if ( isset($CONFIG_BACKEND) ) {
|
|
switch( $CONFIG_BACKEND ) {
|
|
case 'mysql':
|
|
case 'sqlite':
|
|
require_once 'User/database.php';
|
|
self::classType = new OC_USER_Database();
|
|
break;
|
|
case 'ldap':
|
|
require_once 'User/ldap.php';
|
|
self::classType = new OC_USER_LDAP();
|
|
break;
|
|
default:
|
|
require_once 'User/database.php';
|
|
self::classType = new OC_USER_Database();
|
|
break;
|
|
}
|
|
} else {
|
|
require_once 'User/database.php';
|
|
self::classType = new OC_USER_Database();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
set_OC_USER();
|