nextcloud/lib/private/user/user.php

368 lines
9.2 KiB
PHP
Raw Normal View History

2013-05-29 01:46:57 +04:00
<?php
/**
2015-03-26 13:44:34 +03:00
* @author Arthur Schiwon <blizzz@owncloud.com>
* @author Bart Visscher <bartv@thisnet.nl>
* @author Björn Schießle <schiessle@owncloud.com>
* @author Joas Schilling <nickvergessen@owncloud.com>
* @author Lukas Reschke <lukas@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <icewind@owncloud.com>
2016-01-12 17:02:16 +03:00
* @author Robin McCorkell <robin@mccorkell.me.uk>
2015-03-26 13:44:34 +03:00
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
2016-01-12 17:02:16 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
2015-03-26 13:44:34 +03:00
* @license AGPL-3.0
*
* 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.
*
* This program 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 Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
2013-05-29 01:46:57 +04:00
*/
2013-05-29 01:46:57 +04:00
namespace OC\User;
use OC\Hooks\Emitter;
use OCP\IAvatarManager;
use OCP\IImage;
2015-11-30 15:57:54 +03:00
use OCP\IURLGenerator;
use OCP\IUser;
2014-11-27 20:19:14 +03:00
use OCP\IConfig;
2013-05-29 01:46:57 +04:00
class User implements IUser {
2015-11-30 15:57:54 +03:00
/** @var string $uid */
2013-05-29 01:46:57 +04:00
private $uid;
2015-11-30 15:57:54 +03:00
/** @var string $displayName */
2013-05-29 01:46:57 +04:00
private $displayName;
2015-11-30 15:57:54 +03:00
/** @var \OC_User_Interface $backend */
2013-05-29 01:46:57 +04:00
private $backend;
2015-11-30 15:57:54 +03:00
/** @var bool $enabled */
2013-05-29 01:46:57 +04:00
private $enabled;
2015-11-30 15:57:54 +03:00
/** @var Emitter|Manager $emitter */
2013-05-29 01:46:57 +04:00
private $emitter;
2015-11-30 15:57:54 +03:00
/** @var string $home */
2013-12-11 19:22:26 +04:00
private $home;
2015-11-30 15:57:54 +03:00
/** @var int $lastLogin */
private $lastLogin;
2015-11-30 15:57:54 +03:00
/** @var \OCP\IConfig $config */
private $config;
/** @var IAvatarManager */
private $avatarManager;
2015-11-30 15:57:54 +03:00
/** @var IURLGenerator */
private $urlGenerator;
2013-05-29 01:46:57 +04:00
/**
* @param string $uid
* @param \OC_User_Interface $backend
* @param \OC\Hooks\Emitter $emitter
2015-12-02 16:25:07 +03:00
* @param IConfig|null $config
* @param IURLGenerator $urlGenerator
2013-05-29 01:46:57 +04:00
*/
2015-12-02 16:25:07 +03:00
public function __construct($uid, $backend, $emitter = null, IConfig $config = null, $urlGenerator = null) {
2013-05-29 01:46:57 +04:00
$this->uid = $uid;
$this->backend = $backend;
$this->emitter = $emitter;
$this->config = $config;
2015-12-01 16:50:13 +03:00
$this->urlGenerator = $urlGenerator;
if ($this->config) {
$enabled = $this->config->getUserValue($uid, 'core', 'enabled', 'true');
$this->enabled = ($enabled === 'true');
$this->lastLogin = $this->config->getUserValue($uid, 'login', 'lastLogin', 0);
} else {
$this->enabled = true;
$this->lastLogin = \OC::$server->getConfig()->getUserValue($uid, 'login', 'lastLogin', 0);
}
2015-11-30 15:57:54 +03:00
if (is_null($this->urlGenerator)) {
$this->urlGenerator = \OC::$server->getURLGenerator();
}
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;
}
/**
2015-12-02 16:25:07 +03:00
* get the display name for the user, if no specific display name is set it will fallback to the user id
2013-06-03 15:33:56 +04:00
*
2013-05-29 01:46:57 +04:00
* @return string
*/
public function getDisplayName() {
if (!isset($this->displayName)) {
$displayName = '';
if ($this->backend and $this->backend->implementsActions(\OC_User_Backend::GET_DISPLAYNAME)) {
// 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;
} 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) {
$displayName = trim($displayName);
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;
}
}
/**
* 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();
\OC::$server->getConfig()->setUserValue(
$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);
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
\OC::$server->getConfig()->deleteAllUserValues($this->uid);
// 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);
\OC::$server->getCommentsManager()->deleteReferencesOfActor('user', $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
*/
public function setPassword($password, $recoveryPassword = null) {
if ($this->emitter) {
$this->emitter->emit('\OC\User', 'preSetPassword', array($this, $password, $recoveryPassword));
}
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) {
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;
} elseif ($this->config) {
$this->home = $this->config->getSystemValue('datadirectory') . '/' . $this->uid;
} else {
$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
}
/**
* Get the name of the backend class the user is connected with
*
* @return string
*/
public function getBackendClassName() {
if($this->backend instanceof \OCP\IUserBackend) {
return $this->backend->getBackendName();
}
return get_class($this->backend);
}
/**
* check if the backend allows the user to change his avatar on Personal page
*
* @return bool
*/
public function canChangeAvatar() {
if ($this->backend->implementsActions(\OC_User_Backend::PROVIDE_AVATAR)) {
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-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() {
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;
if ($this->config) {
$enabled = ($enabled) ? 'true' : 'false';
$this->config->setUserValue($this->uid, 'core', 'enabled', $enabled);
}
2013-05-29 01:46:57 +04:00
}
/**
* get the users email address
*
* @return string|null
* @since 9.0.0
*/
public function getEMailAddress() {
return $this->config->getUserValue($this->uid, 'settings', 'email', null);
}
/**
* get the avatar image if it exists
*
* @param int $size
* @return IImage|null
* @since 9.0.0
*/
public function getAvatarImage($size) {
2015-12-02 16:25:07 +03:00
// delay the initialization
if (is_null($this->avatarManager)) {
$this->avatarManager = \OC::$server->getAvatarManager();
}
$avatar = $this->avatarManager->getAvatar($this->uid);
$image = $avatar->get(-1);
if ($image) {
return $image;
}
return null;
}
2015-11-30 15:57:54 +03:00
/**
* get the federation cloud id
*
* @return string
* @since 9.0.0
*/
public function getCloudId() {
$uid = $this->getUID();
$server = $this->urlGenerator->getAbsoluteURL('/');
return $uid . '@' . rtrim( $this->removeProtocolFromUrl($server), '/');
}
/**
* @param string $url
* @return string
*/
private function removeProtocolFromUrl($url) {
if (strpos($url, 'https://') === 0) {
return substr($url, strlen('https://'));
} else if (strpos($url, 'http://') === 0) {
return substr($url, strlen('http://'));
}
return $url;
}
2013-05-29 01:46:57 +04:00
}