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;
|
|
|
|
|
|
|
|
class User {
|
|
|
|
/**
|
|
|
|
* @var string $uid
|
|
|
|
*/
|
|
|
|
private $uid;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string $displayName
|
|
|
|
*/
|
|
|
|
private $displayName;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OC_User_Backend $backend
|
|
|
|
*/
|
|
|
|
private $backend;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool $enabled
|
|
|
|
*/
|
|
|
|
private $enabled;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Emitter | Manager $emitter
|
|
|
|
*/
|
|
|
|
private $emitter;
|
|
|
|
|
2013-12-11 19:22:26 +04:00
|
|
|
/**
|
|
|
|
* @var string $home
|
|
|
|
*/
|
|
|
|
private $home;
|
|
|
|
|
2013-12-16 17:22:25 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\AllConfig $config
|
|
|
|
*/
|
|
|
|
private $config;
|
|
|
|
|
2013-05-29 01:46:57 +04:00
|
|
|
/**
|
|
|
|
* @param string $uid
|
|
|
|
* @param \OC_User_Backend $backend
|
2013-12-16 17:22:25 +04:00
|
|
|
* @param \OC\Hooks\Emitter $emitter
|
|
|
|
* @param \OC\AllConfig $config
|
2013-05-29 01:46:57 +04:00
|
|
|
*/
|
2013-12-16 17:22:25 +04:00
|
|
|
public function __construct($uid, $backend, $emitter = null, $config = null) {
|
2013-05-29 01:46:57 +04:00
|
|
|
$this->uid = $uid;
|
2013-07-10 02:06:22 +04:00
|
|
|
if ($backend and $backend->implementsActions(OC_USER_BACKEND_GET_DISPLAYNAME)) {
|
2013-05-29 01:46:57 +04:00
|
|
|
$this->displayName = $backend->getDisplayName($uid);
|
|
|
|
} else {
|
|
|
|
$this->displayName = $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');
|
|
|
|
} else {
|
|
|
|
$this->enabled = true;
|
|
|
|
}
|
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() {
|
|
|
|
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) {
|
|
|
|
if ($this->canChangeDisplayName()) {
|
|
|
|
$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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
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);
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
public function setPassword($password, $recoveryPassword) {
|
2013-06-06 15:30:18 +04:00
|
|
|
if ($this->emitter) {
|
|
|
|
$this->emitter->emit('\OC\User', 'preSetPassword', array($this, $password, $recoveryPassword));
|
|
|
|
}
|
2013-05-29 01:46:57 +04:00
|
|
|
if ($this->backend->implementsActions(\OC_USER_BACKEND_SET_PASSWORD)) {
|
|
|
|
$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) {
|
|
|
|
if ($this->backend->implementsActions(\OC_USER_BACKEND_GET_HOME) and $home = $this->backend->getHome($this->uid)) {
|
|
|
|
$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
|
|
|
}
|
|
|
|
|
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() {
|
2013-12-11 19:22:26 +04: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() {
|
|
|
|
return $this->backend->implementsActions(\OC_USER_BACKEND_SET_PASSWORD);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
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 {
|
|
|
|
return $this->backend->implementsActions(\OC_USER_BACKEND_SET_DISPLAYNAME);
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|