2013-05-29 01:46:57 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@owncloud.com>
|
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @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>
|
|
|
|
* @author Roeland Jago Douma <rullzer@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
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
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-05-29 01:46:57 +04:00
|
|
|
namespace OC\User;
|
|
|
|
|
|
|
|
use OC\Hooks\Emitter;
|
2014-07-09 17:32:33 +04:00
|
|
|
use OCP\IUserSession;
|
2013-05-29 01:46:57 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Session
|
|
|
|
*
|
|
|
|
* Hooks available in scope \OC\User:
|
|
|
|
* - preSetPassword(\OC\User\User $user, string $password, string $recoverPassword)
|
|
|
|
* - postSetPassword(\OC\User\User $user, string $password, string $recoverPassword)
|
|
|
|
* - preDelete(\OC\User\User $user)
|
|
|
|
* - postDelete(\OC\User\User $user)
|
|
|
|
* - preCreateUser(string $uid, string $password)
|
|
|
|
* - postCreateUser(\OC\User\User $user)
|
|
|
|
* - preLogin(string $user, string $password)
|
2014-05-26 15:53:26 +04:00
|
|
|
* - postLogin(\OC\User\User $user, string $password)
|
|
|
|
* - preRememberedLogin(string $uid)
|
|
|
|
* - postRememberedLogin(\OC\User\User $user)
|
2013-05-29 01:46:57 +04:00
|
|
|
* - logout()
|
|
|
|
*
|
|
|
|
* @package OC\User
|
|
|
|
*/
|
2014-07-09 17:32:33 +04:00
|
|
|
class Session implements IUserSession, Emitter {
|
2013-05-29 01:46:57 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\User\Manager $manager
|
|
|
|
*/
|
|
|
|
private $manager;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OC\Session\Session $session
|
|
|
|
*/
|
|
|
|
private $session;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OC\User\User $activeUser
|
|
|
|
*/
|
|
|
|
protected $activeUser;
|
|
|
|
|
|
|
|
/**
|
2014-07-16 21:40:22 +04:00
|
|
|
* @param \OCP\IUserManager $manager
|
|
|
|
* @param \OCP\ISession $session
|
2013-05-29 01:46:57 +04:00
|
|
|
*/
|
2014-07-16 21:40:22 +04:00
|
|
|
public function __construct(\OCP\IUserManager $manager, \OCP\ISession $session) {
|
2013-05-29 01:46:57 +04:00
|
|
|
$this->manager = $manager;
|
|
|
|
$this->session = $session;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $scope
|
|
|
|
* @param string $method
|
|
|
|
* @param callable $callback
|
|
|
|
*/
|
2015-05-08 15:27:22 +03:00
|
|
|
public function listen($scope, $method, callable $callback) {
|
2013-05-29 01:46:57 +04:00
|
|
|
$this->manager->listen($scope, $method, $callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $scope optional
|
|
|
|
* @param string $method optional
|
|
|
|
* @param callable $callback optional
|
|
|
|
*/
|
2015-05-08 15:27:22 +03:00
|
|
|
public function removeListener($scope = null, $method = null, callable $callback = null) {
|
2013-05-29 01:46:57 +04:00
|
|
|
$this->manager->removeListener($scope, $method, $callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-06-03 15:33:56 +04:00
|
|
|
* get the manager object
|
|
|
|
*
|
2013-05-29 01:46:57 +04:00
|
|
|
* @return \OC\User\Manager
|
|
|
|
*/
|
|
|
|
public function getManager() {
|
|
|
|
return $this->manager;
|
|
|
|
}
|
|
|
|
|
2014-07-16 21:40:22 +04:00
|
|
|
/**
|
|
|
|
* get the session object
|
|
|
|
*
|
|
|
|
* @return \OCP\ISession
|
|
|
|
*/
|
|
|
|
public function getSession() {
|
|
|
|
return $this->session;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* set the session object
|
|
|
|
*
|
|
|
|
* @param \OCP\ISession $session
|
|
|
|
*/
|
|
|
|
public function setSession(\OCP\ISession $session) {
|
|
|
|
if ($this->session instanceof \OCP\ISession) {
|
|
|
|
$this->session->close();
|
|
|
|
}
|
|
|
|
$this->session = $session;
|
2014-10-13 15:11:48 +04:00
|
|
|
$this->activeUser = null;
|
2014-07-16 21:40:22 +04:00
|
|
|
}
|
|
|
|
|
2013-05-29 01:46:57 +04:00
|
|
|
/**
|
|
|
|
* set the currently active user
|
|
|
|
*
|
2014-05-13 02:27:36 +04:00
|
|
|
* @param \OC\User\User|null $user
|
2013-05-29 01:46:57 +04:00
|
|
|
*/
|
|
|
|
public function setUser($user) {
|
|
|
|
if (is_null($user)) {
|
|
|
|
$this->session->remove('user_id');
|
|
|
|
} else {
|
|
|
|
$this->session->set('user_id', $user->getUID());
|
|
|
|
}
|
|
|
|
$this->activeUser = $user;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the current active user
|
|
|
|
*
|
2014-12-19 16:14:38 +03:00
|
|
|
* @return \OCP\IUser|null Current user, otherwise null
|
2013-05-29 01:46:57 +04:00
|
|
|
*/
|
|
|
|
public function getUser() {
|
2014-12-17 23:53:43 +03:00
|
|
|
// FIXME: This is a quick'n dirty work-around for the incognito mode as
|
|
|
|
// described at https://github.com/owncloud/core/pull/12912#issuecomment-67391155
|
|
|
|
if (\OC_User::isIncognitoMode()) {
|
|
|
|
return null;
|
|
|
|
}
|
2013-05-29 01:46:57 +04:00
|
|
|
if ($this->activeUser) {
|
|
|
|
return $this->activeUser;
|
|
|
|
} else {
|
|
|
|
$uid = $this->session->get('user_id');
|
2014-08-04 16:47:14 +04:00
|
|
|
if ($uid !== null) {
|
2013-05-29 01:46:57 +04:00
|
|
|
$this->activeUser = $this->manager->get($uid);
|
|
|
|
return $this->activeUser;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-16 21:07:14 +03:00
|
|
|
/**
|
2014-12-19 16:36:00 +03:00
|
|
|
* Checks whether the user is logged in
|
2014-12-16 21:07:14 +03:00
|
|
|
*
|
|
|
|
* @return bool if logged in
|
|
|
|
*/
|
|
|
|
public function isLoggedIn() {
|
|
|
|
return $this->getUser() !== null;
|
|
|
|
}
|
|
|
|
|
2013-12-11 16:56:45 +04:00
|
|
|
/**
|
|
|
|
* set the login name
|
|
|
|
*
|
2014-05-13 02:27:36 +04:00
|
|
|
* @param string|null $loginName for the logged in user
|
2013-12-11 16:56:45 +04:00
|
|
|
*/
|
2014-01-09 13:27:47 +04:00
|
|
|
public function setLoginName($loginName) {
|
|
|
|
if (is_null($loginName)) {
|
2013-12-11 16:56:45 +04:00
|
|
|
$this->session->remove('loginname');
|
|
|
|
} else {
|
2014-01-09 13:27:47 +04:00
|
|
|
$this->session->set('loginname', $loginName);
|
2013-12-11 16:56:45 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the login name of the current user
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-01-09 13:27:47 +04:00
|
|
|
public function getLoginName() {
|
2013-12-11 16:56:45 +04:00
|
|
|
if ($this->activeUser) {
|
|
|
|
return $this->session->get('loginname');
|
|
|
|
} else {
|
|
|
|
$uid = $this->session->get('user_id');
|
|
|
|
if ($uid) {
|
|
|
|
$this->activeUser = $this->manager->get($uid);
|
|
|
|
return $this->session->get('loginname');
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-03 15:33:56 +04:00
|
|
|
/**
|
|
|
|
* try to login with the provided credentials
|
|
|
|
*
|
|
|
|
* @param string $uid
|
|
|
|
* @param string $password
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return boolean|null
|
2015-01-22 16:13:17 +03:00
|
|
|
* @throws LoginException
|
2013-06-03 15:33:56 +04:00
|
|
|
*/
|
2013-05-29 01:46:57 +04:00
|
|
|
public function login($uid, $password) {
|
2016-01-04 17:00:58 +03:00
|
|
|
$this->session->regenerateId();
|
2013-05-29 01:46:57 +04:00
|
|
|
$this->manager->emit('\OC\User', 'preLogin', array($uid, $password));
|
2013-09-16 16:15:35 +04:00
|
|
|
$user = $this->manager->checkPassword($uid, $password);
|
2014-10-13 15:11:48 +04:00
|
|
|
if ($user !== false) {
|
2013-09-16 16:15:35 +04:00
|
|
|
if (!is_null($user)) {
|
|
|
|
if ($user->isEnabled()) {
|
|
|
|
$this->setUser($user);
|
2014-01-09 13:27:47 +04:00
|
|
|
$this->setLoginName($uid);
|
2013-09-16 16:15:35 +04:00
|
|
|
$this->manager->emit('\OC\User', 'postLogin', array($user, $password));
|
2015-01-22 16:13:17 +03:00
|
|
|
if ($this->isLoggedIn()) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
throw new LoginException('Login canceled by app');
|
|
|
|
}
|
2013-09-16 16:15:35 +04:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2013-05-29 01:46:57 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-21 20:03:37 +04:00
|
|
|
/**
|
|
|
|
* perform login using the magic cookie (remember login)
|
|
|
|
*
|
|
|
|
* @param string $uid the username
|
|
|
|
* @param string $currentToken
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function loginWithCookie($uid, $currentToken) {
|
2016-01-04 17:00:58 +03:00
|
|
|
$this->session->regenerateId();
|
2014-05-26 15:53:26 +04:00
|
|
|
$this->manager->emit('\OC\User', 'preRememberedLogin', array($uid));
|
2014-05-21 20:03:37 +04:00
|
|
|
$user = $this->manager->get($uid);
|
2014-10-13 15:11:48 +04:00
|
|
|
if (is_null($user)) {
|
2014-05-21 20:03:37 +04:00
|
|
|
// user does not exist
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get stored tokens
|
2014-12-04 18:48:07 +03:00
|
|
|
$tokens = \OC::$server->getConfig()->getUserKeys($uid, 'login_token');
|
2014-05-21 20:03:37 +04:00
|
|
|
// test cookies token against stored tokens
|
2014-10-13 15:11:48 +04:00
|
|
|
if (!in_array($currentToken, $tokens, true)) {
|
2014-05-21 20:03:37 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// replace successfully used token with a new one
|
2014-12-04 18:48:07 +03:00
|
|
|
\OC::$server->getConfig()->deleteUserValue($uid, 'login_token', $currentToken);
|
2016-01-11 22:05:30 +03:00
|
|
|
$newToken = \OC::$server->getSecureRandom()->generate(32);
|
2014-12-04 18:48:07 +03:00
|
|
|
\OC::$server->getConfig()->setUserValue($uid, 'login_token', $newToken, time());
|
2014-05-21 20:03:37 +04:00
|
|
|
$this->setMagicInCookie($user->getUID(), $newToken);
|
|
|
|
|
|
|
|
//login
|
|
|
|
$this->setUser($user);
|
|
|
|
$this->manager->emit('\OC\User', 'postRememberedLogin', array($user));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-06-03 15:33:56 +04:00
|
|
|
/**
|
|
|
|
* logout the user from the session
|
|
|
|
*/
|
2013-05-29 01:46:57 +04:00
|
|
|
public function logout() {
|
|
|
|
$this->manager->emit('\OC\User', 'logout');
|
|
|
|
$this->setUser(null);
|
2014-01-09 13:27:47 +04:00
|
|
|
$this->setLoginName(null);
|
2013-05-29 01:46:57 +04:00
|
|
|
$this->unsetMagicInCookie();
|
2014-10-30 14:10:39 +03:00
|
|
|
$this->session->clear();
|
2013-05-29 01:46:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set cookie value to use in next page load
|
|
|
|
*
|
|
|
|
* @param string $username username to be set
|
|
|
|
* @param string $token
|
|
|
|
*/
|
|
|
|
public function setMagicInCookie($username, $token) {
|
2015-01-19 13:56:04 +03:00
|
|
|
$secureCookie = \OC::$server->getRequest()->getServerProtocol() === 'https';
|
2015-12-03 18:41:23 +03:00
|
|
|
$expires = time() + \OC::$server->getConfig()->getSystemValue('remember_login_cookie_lifetime', 60 * 60 * 24 * 15);
|
2015-01-14 13:20:53 +03:00
|
|
|
setcookie("oc_username", $username, $expires, \OC::$WEBROOT, '', $secureCookie, true);
|
|
|
|
setcookie("oc_token", $token, $expires, \OC::$WEBROOT, '', $secureCookie, true);
|
|
|
|
setcookie("oc_remember_login", "1", $expires, \OC::$WEBROOT, '', $secureCookie, true);
|
2013-05-29 01:46:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-06-03 15:33:56 +04:00
|
|
|
* Remove cookie for "remember username"
|
2013-05-29 01:46:57 +04:00
|
|
|
*/
|
|
|
|
public function unsetMagicInCookie() {
|
2015-08-26 15:29:36 +03:00
|
|
|
//TODO: DI for cookies and IRequest
|
|
|
|
$secureCookie = \OC::$server->getRequest()->getServerProtocol() === 'https';
|
2015-01-14 13:20:53 +03:00
|
|
|
|
2013-05-29 01:46:57 +04:00
|
|
|
unset($_COOKIE["oc_username"]); //TODO: DI
|
|
|
|
unset($_COOKIE["oc_token"]);
|
|
|
|
unset($_COOKIE["oc_remember_login"]);
|
2015-01-14 13:20:53 +03:00
|
|
|
setcookie('oc_username', '', time() - 3600, \OC::$WEBROOT, '',$secureCookie, true);
|
|
|
|
setcookie('oc_token', '', time() - 3600, \OC::$WEBROOT, '', $secureCookie, true);
|
|
|
|
setcookie('oc_remember_login', '', time() - 3600, \OC::$WEBROOT, '', $secureCookie, true);
|
2013-11-07 21:40:15 +04:00
|
|
|
// old cookies might be stored under /webroot/ instead of /webroot
|
|
|
|
// and Firefox doesn't like it!
|
2015-01-14 13:20:53 +03:00
|
|
|
setcookie('oc_username', '', time() - 3600, \OC::$WEBROOT . '/', '', $secureCookie, true);
|
|
|
|
setcookie('oc_token', '', time() - 3600, \OC::$WEBROOT . '/', '', $secureCookie, true);
|
|
|
|
setcookie('oc_remember_login', '', time() - 3600, \OC::$WEBROOT . '/', '', $secureCookie, true);
|
2013-05-29 01:46:57 +04:00
|
|
|
}
|
|
|
|
}
|