2013-05-29 01:46:57 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\User;
|
|
|
|
|
|
|
|
use OC\Hooks\Emitter;
|
2014-07-09 17:32:33 +04:00
|
|
|
use OCP\IUser;
|
2014-11-27 20:19:14 +03:00
|
|
|
use OCP\IConfig;
|
2013-05-29 01:46:57 +04:00
|
|
|
|
2014-07-09 17:32:33 +04:00
|
|
|
class User implements IUser {
|
2013-05-29 01:46:57 +04:00
|
|
|
/**
|
|
|
|
* @var string $uid
|
|
|
|
*/
|
|
|
|
private $uid;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string $displayName
|
|
|
|
*/
|
|
|
|
private $displayName;
|
|
|
|
|
|
|
|
/**
|
2014-05-12 16:10:09 +04:00
|
|
|
* @var \OC_User_Interface $backend
|
2013-05-29 01:46:57 +04:00
|
|
|
*/
|
|
|
|
private $backend;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool $enabled
|
|
|
|
*/
|
|
|
|
private $enabled;
|
|
|
|
|
|
|
|
/**
|
2014-05-11 21:28:45 +04:00
|
|
|
* @var Emitter|Manager $emitter
|
2013-05-29 01:46:57 +04:00
|
|
|
*/
|
|
|
|
private $emitter;
|
|
|
|
|
2013-12-11 19:22:26 +04:00
|
|
|
/**
|
|
|
|
* @var string $home
|
|
|
|
*/
|
|
|
|
private $home;
|
|
|
|
|
2014-05-21 20:03:37 +04:00
|
|
|
/**
|
|
|
|
* @var int $lastLogin
|
|
|
|
*/
|
|
|
|
private $lastLogin;
|
|
|
|
|
2013-12-16 17:22:25 +04:00
|
|
|
/**
|
2014-11-27 20:19:14 +03:00
|
|
|
* @var \OCP\IConfig $config
|
2013-12-16 17:22:25 +04:00
|
|
|
*/
|
|
|
|
private $config;
|
|
|
|
|
2013-05-29 01:46:57 +04:00
|
|
|
/**
|
|
|
|
* @param string $uid
|
2014-05-12 16:10:09 +04:00
|
|
|
* @param \OC_User_Interface $backend
|
2013-12-16 17:22:25 +04:00
|
|
|
* @param \OC\Hooks\Emitter $emitter
|
2014-11-27 20:19:14 +03:00
|
|
|
* @param \OCP\IConfig $config
|
2013-05-29 01:46:57 +04:00
|
|
|
*/
|
2014-11-27 20:19:14 +03:00
|
|
|
public function __construct($uid, $backend, $emitter = null, IConfig $config = null) {
|
2013-05-29 01:46:57 +04:00
|
|
|
$this->uid = $uid;
|
|
|
|
$this->backend = $backend;
|
|
|
|
$this->emitter = $emitter;
|
2013-12-16 17:22:25 +04:00
|
|
|
$this->config = $config;
|
2013-12-16 19:02:03 +04:00
|
|
|
if ($this->config) {
|
|
|
|
$enabled = $this->config->getUserValue($uid, 'core', 'enabled', 'true');
|
|
|
|
$this->enabled = ($enabled === 'true');
|
2014-12-04 18:48:07 +03:00
|
|
|
$this->lastLogin = $this->config->getUserValue($uid, 'login', 'lastLogin', 0);
|
2013-12-16 19:02:03 +04:00
|
|
|
} else {
|
|
|
|
$this->enabled = true;
|
2014-12-04 18:48:07 +03:00
|
|
|
$this->lastLogin = \OC::$server->getConfig()->getUserValue($uid, 'login', 'lastLogin', 0);
|
2013-12-16 19:02:03 +04:00
|
|
|
}
|
2013-05-29 01:46:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-06-03 15:33:56 +04:00
|
|
|
* get the user id
|
|
|
|
*
|
2013-05-29 01:46:57 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getUID() {
|
|
|
|
return $this->uid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-06-03 15:33:56 +04:00
|
|
|
* get the displayname for the user, if no specific displayname is set it will fallback to the user id
|
|
|
|
*
|
2013-05-29 01:46:57 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getDisplayName() {
|
2014-02-22 01:53:31 +04:00
|
|
|
if (!isset($this->displayName)) {
|
2014-10-15 16:05:18 +04:00
|
|
|
$displayName = '';
|
2014-11-26 14:17:28 +03:00
|
|
|
if ($this->backend and $this->backend->implementsActions(\OC_User_Backend::GET_DISPLAYNAME)) {
|
2014-10-15 16:05:18 +04:00
|
|
|
// get display name and strip whitespace from the beginning and end of it
|
|
|
|
$backendDisplayName = $this->backend->getDisplayName($this->uid);
|
|
|
|
if (is_string($backendDisplayName)) {
|
|
|
|
$displayName = trim($backendDisplayName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($displayName)) {
|
|
|
|
$this->displayName = $displayName;
|
2014-02-22 01:53:31 +04:00
|
|
|
} else {
|
|
|
|
$this->displayName = $this->uid;
|
|
|
|
}
|
|
|
|
}
|
2013-05-29 01:46:57 +04:00
|
|
|
return $this->displayName;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-06-03 15:33:56 +04:00
|
|
|
* set the displayname for the user
|
|
|
|
*
|
2013-05-29 01:46:57 +04:00
|
|
|
* @param string $displayName
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function setDisplayName($displayName) {
|
2014-10-15 16:05:18 +04:00
|
|
|
$displayName = trim($displayName);
|
2014-11-26 14:17:28 +03:00
|
|
|
if ($this->backend->implementsActions(\OC_User_Backend::SET_DISPLAYNAME) && !empty($displayName)) {
|
2013-05-29 01:46:57 +04:00
|
|
|
$this->displayName = $displayName;
|
2013-06-03 15:39:34 +04:00
|
|
|
$result = $this->backend->setDisplayName($this->uid, $displayName);
|
|
|
|
return $result !== false;
|
2013-05-29 01:46:57 +04:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-21 20:03:37 +04:00
|
|
|
/**
|
|
|
|
* returns the timestamp of the user's last login or 0 if the user did never
|
|
|
|
* login
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getLastLogin() {
|
|
|
|
return $this->lastLogin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* updates the timestamp of the most recent login of this user
|
|
|
|
*/
|
|
|
|
public function updateLastLoginTimestamp() {
|
|
|
|
$this->lastLogin = time();
|
2014-12-04 18:48:07 +03:00
|
|
|
\OC::$server->getConfig()->setUserValue(
|
2014-05-21 20:03:37 +04:00
|
|
|
$this->uid, 'login', 'lastLogin', $this->lastLogin);
|
|
|
|
}
|
|
|
|
|
2013-05-29 01:46:57 +04:00
|
|
|
/**
|
2013-06-03 15:33:56 +04:00
|
|
|
* Delete the user
|
|
|
|
*
|
2013-05-29 01:46:57 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function delete() {
|
|
|
|
if ($this->emitter) {
|
|
|
|
$this->emitter->emit('\OC\User', 'preDelete', array($this));
|
|
|
|
}
|
|
|
|
$result = $this->backend->deleteUser($this->uid);
|
2014-12-04 16:15:55 +03:00
|
|
|
if ($result) {
|
|
|
|
|
|
|
|
// FIXME: Feels like an hack - suggestions?
|
|
|
|
|
|
|
|
// We have to delete the user from all groups
|
|
|
|
foreach (\OC_Group::getUserGroups($this->uid) as $i) {
|
|
|
|
\OC_Group::removeFromGroup($this->uid, $i);
|
|
|
|
}
|
|
|
|
// Delete the user's keys in preferences
|
2014-12-04 18:48:07 +03:00
|
|
|
\OC::$server->getConfig()->deleteAllUserValues($this->uid);
|
2014-12-04 16:15:55 +03:00
|
|
|
|
|
|
|
// Delete user files in /data/
|
|
|
|
\OC_Helper::rmdirr(\OC_User::getHome($this->uid));
|
|
|
|
|
|
|
|
// Delete the users entry in the storage table
|
|
|
|
\OC\Files\Cache\Storage::remove('home::' . $this->uid);
|
|
|
|
}
|
|
|
|
|
2013-05-29 01:46:57 +04:00
|
|
|
if ($this->emitter) {
|
|
|
|
$this->emitter->emit('\OC\User', 'postDelete', array($this));
|
|
|
|
}
|
|
|
|
return !($result === false);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-06-03 15:33:56 +04:00
|
|
|
* Set the password of the user
|
|
|
|
*
|
2013-05-29 01:46:57 +04:00
|
|
|
* @param string $password
|
|
|
|
* @param string $recoveryPassword for the encryption app to reset encryption keys
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-07-24 14:50:39 +04:00
|
|
|
public function setPassword($password, $recoveryPassword = null) {
|
2013-06-06 15:30:18 +04:00
|
|
|
if ($this->emitter) {
|
|
|
|
$this->emitter->emit('\OC\User', 'preSetPassword', array($this, $password, $recoveryPassword));
|
|
|
|
}
|
2014-11-26 14:17:28 +03:00
|
|
|
if ($this->backend->implementsActions(\OC_User_Backend::SET_PASSWORD)) {
|
2013-05-29 01:46:57 +04:00
|
|
|
$result = $this->backend->setPassword($this->uid, $password);
|
|
|
|
if ($this->emitter) {
|
|
|
|
$this->emitter->emit('\OC\User', 'postSetPassword', array($this, $password, $recoveryPassword));
|
|
|
|
}
|
|
|
|
return !($result === false);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the users home folder to mount
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getHome() {
|
2013-12-11 19:22:26 +04:00
|
|
|
if (!$this->home) {
|
2014-11-26 14:17:28 +03:00
|
|
|
if ($this->backend->implementsActions(\OC_User_Backend::GET_HOME) and $home = $this->backend->getHome($this->uid)) {
|
2013-12-11 19:22:26 +04:00
|
|
|
$this->home = $home;
|
2013-12-16 19:02:03 +04:00
|
|
|
} elseif ($this->config) {
|
|
|
|
$this->home = $this->config->getSystemValue('datadirectory') . '/' . $this->uid;
|
2013-12-12 15:57:25 +04:00
|
|
|
} else {
|
2013-12-16 19:02:03 +04:00
|
|
|
$this->home = \OC::$SERVERROOT . '/data/' . $this->uid;
|
2013-12-11 19:22:26 +04:00
|
|
|
}
|
2013-05-29 01:46:57 +04:00
|
|
|
}
|
2013-12-11 19:22:26 +04:00
|
|
|
return $this->home;
|
2013-05-29 01:46:57 +04:00
|
|
|
}
|
|
|
|
|
Expose backend type via REST API
This change will expose the user backend via the REST API which is a pre-requisite for https://github.com/owncloud/core/issues/12620.
For example:
````json
[{"name":"9707A09E-CA9A-4ABE-A66A-3F632F16C409","displayname":"Document Conversion User Account","groups":[],"subadmin":[],"quota":"default","storageLocation":"\/Users\/lreschke\/Programming\/core\/data\/9707A09E-CA9A-4ABE-A66A-3F632F16C409","lastLogin":0,"backend":"OCA\\user_ldap\\USER_LDAP"},{"name":"ED86733E-745C-4E4D-90CB-278A9737DB3C","displayname":"Hacker","groups":[],"subadmin":[],"quota":"default","storageLocation":"\/Users\/lreschke\/Programming\/core\/data\/ED86733E-745C-4E4D-90CB-278A9737DB3C","lastLogin":0,"backend":"OCA\\user_ldap\\USER_LDAP"},{"name":"71CDF45B-E125-450D-983C-D9192F36EC88","displayname":"admin","groups":[],"subadmin":[],"quota":"default","storageLocation":"\/Users\/lreschke\/Programming\/core\/data\/71CDF45B-E125-450D-983C-D9192F36EC88","lastLogin":0,"backend":"OCA\\user_ldap\\USER_LDAP"},{"name":"admin","displayname":"admin","groups":["admin"],"subadmin":[],"quota":"default","storageLocation":"\/Users\/lreschke\/Programming\/core\/data\/admin","lastLogin":"1418057287","backend":"OC_User_Database"},{"name":"test","displayname":"test","groups":[],"subadmin":[],"quota":"default","storageLocation":"\/Users\/lreschke\/Programming\/core\/data\/test","lastLogin":0,"backend":"OC_User_Database"}]
```
2014-12-09 00:38:54 +03:00
|
|
|
/**
|
|
|
|
* Get the name of the backend class the user is connected with
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getBackendClassName() {
|
|
|
|
return get_class($this->backend);
|
|
|
|
}
|
|
|
|
|
2013-11-22 16:24:11 +04:00
|
|
|
/**
|
|
|
|
* check if the backend allows the user to change his avatar on Personal page
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function canChangeAvatar() {
|
2014-11-26 14:17:28 +03:00
|
|
|
if ($this->backend->implementsActions(\OC_User_Backend::PROVIDE_AVATAR)) {
|
2013-11-22 16:24:11 +04:00
|
|
|
return $this->backend->canChangeAvatar($this->uid);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-05-29 01:46:57 +04:00
|
|
|
/**
|
2013-06-03 15:33:56 +04:00
|
|
|
* check if the backend supports changing passwords
|
|
|
|
*
|
2013-05-29 01:46:57 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function canChangePassword() {
|
2014-11-26 14:17:28 +03:00
|
|
|
return $this->backend->implementsActions(\OC_User_Backend::SET_PASSWORD);
|
2013-05-29 01:46:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-06-03 15:33:56 +04:00
|
|
|
* check if the backend supports changing display names
|
|
|
|
*
|
2013-05-29 01:46:57 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function canChangeDisplayName() {
|
2013-12-16 17:22:25 +04:00
|
|
|
if ($this->config and $this->config->getSystemValue('allow_user_to_change_display_name') === false) {
|
|
|
|
return false;
|
|
|
|
} else {
|
2014-11-26 14:17:28 +03:00
|
|
|
return $this->backend->implementsActions(\OC_User_Backend::SET_DISPLAYNAME);
|
2013-12-16 17:22:25 +04:00
|
|
|
}
|
2013-05-29 01:46:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-06-03 15:33:56 +04:00
|
|
|
* check if the user is enabled
|
|
|
|
*
|
2013-05-29 01:46:57 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isEnabled() {
|
|
|
|
return $this->enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-06-03 15:33:56 +04:00
|
|
|
* set the enabled status for the user
|
|
|
|
*
|
2013-05-29 01:46:57 +04:00
|
|
|
* @param bool $enabled
|
|
|
|
*/
|
|
|
|
public function setEnabled($enabled) {
|
|
|
|
$this->enabled = $enabled;
|
2013-12-16 19:02:03 +04:00
|
|
|
if ($this->config) {
|
|
|
|
$enabled = ($enabled) ? 'true' : 'false';
|
|
|
|
$this->config->setUserValue($this->uid, 'core', 'enabled', $enabled);
|
|
|
|
}
|
2013-05-29 01:46:57 +04:00
|
|
|
}
|
|
|
|
}
|