2016-04-11 13:08:00 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2017-02-07 03:25:39 +03:00
|
|
|
* @copyright Copyright (c) 2017, Sandro Lutz <sandro.lutz@temparus.ch>
|
2016-09-19 16:33:30 +03:00
|
|
|
* @copyright Copyright (c) 2016 Joas Schilling <coding@schilljs.com>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2016-04-25 15:10:55 +03:00
|
|
|
* @author Christoph Wurst <christoph@owncloud.com>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
|
|
|
* @author justin-sleep <justin@quarterfull.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Sandro Lutz <sandro.lutz@temparus.ch>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Ujjwal Bhardwaj <ujjwalb1996@gmail.com>
|
2016-04-11 13:08:00 +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/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Core\Controller;
|
|
|
|
|
2018-04-06 20:58:37 +03:00
|
|
|
use OC\Authentication\Token\IToken;
|
2016-05-11 12:23:25 +03:00
|
|
|
use OC\Authentication\TwoFactorAuth\Manager;
|
2018-01-13 23:12:22 +03:00
|
|
|
use OC\Security\Bruteforce\Throttler;
|
2016-04-25 15:10:55 +03:00
|
|
|
use OC\User\Session;
|
|
|
|
use OC_App;
|
|
|
|
use OC_Util;
|
2016-04-11 13:08:00 +03:00
|
|
|
use OCP\AppFramework\Controller;
|
2016-09-19 16:33:30 +03:00
|
|
|
use OCP\AppFramework\Http;
|
|
|
|
use OCP\AppFramework\Http\DataResponse;
|
2016-04-11 13:08:00 +03:00
|
|
|
use OCP\AppFramework\Http\RedirectResponse;
|
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
2016-09-29 17:38:29 +03:00
|
|
|
use OCP\Authentication\TwoFactorAuth\IProvider;
|
2017-09-02 17:19:02 +03:00
|
|
|
use OCP\Defaults;
|
2016-04-11 13:08:00 +03:00
|
|
|
use OCP\IConfig;
|
2017-01-12 14:38:45 +03:00
|
|
|
use OCP\ILogger;
|
2016-04-11 13:08:00 +03:00
|
|
|
use OCP\IRequest;
|
|
|
|
use OCP\ISession;
|
2016-04-18 13:14:07 +03:00
|
|
|
use OCP\IURLGenerator;
|
2016-04-11 13:08:00 +03:00
|
|
|
use OCP\IUser;
|
|
|
|
use OCP\IUserManager;
|
2016-09-29 17:38:29 +03:00
|
|
|
use OCP\IUserSession;
|
2017-02-07 02:12:19 +03:00
|
|
|
use OC\Hooks\PublicEmitter;
|
2017-09-02 17:19:02 +03:00
|
|
|
use OCP\Util;
|
2016-04-11 13:08:00 +03:00
|
|
|
|
|
|
|
class LoginController extends Controller {
|
2018-07-21 14:05:13 +03:00
|
|
|
|
|
|
|
const LOGIN_MSG_INVALIDPASSWORD = 'invalidpassword';
|
|
|
|
const LOGIN_MSG_USERDISABLED = 'userdisabled';
|
|
|
|
|
2016-04-11 13:08:00 +03:00
|
|
|
/** @var IUserManager */
|
|
|
|
private $userManager;
|
|
|
|
/** @var IConfig */
|
|
|
|
private $config;
|
|
|
|
/** @var ISession */
|
|
|
|
private $session;
|
2016-09-29 17:38:29 +03:00
|
|
|
/** @var IUserSession|Session */
|
2016-04-11 13:08:00 +03:00
|
|
|
private $userSession;
|
2016-04-18 13:14:07 +03:00
|
|
|
/** @var IURLGenerator */
|
|
|
|
private $urlGenerator;
|
2017-01-12 14:38:45 +03:00
|
|
|
/** @var ILogger */
|
|
|
|
private $logger;
|
2016-05-11 12:23:25 +03:00
|
|
|
/** @var Manager */
|
|
|
|
private $twoFactorManager;
|
2017-09-02 17:19:02 +03:00
|
|
|
/** @var Defaults */
|
|
|
|
private $defaults;
|
2018-01-13 23:12:22 +03:00
|
|
|
/** @var Throttler */
|
|
|
|
private $throttler;
|
2016-05-11 12:23:25 +03:00
|
|
|
|
2016-04-11 13:08:00 +03:00
|
|
|
/**
|
|
|
|
* @param string $appName
|
|
|
|
* @param IRequest $request
|
|
|
|
* @param IUserManager $userManager
|
|
|
|
* @param IConfig $config
|
|
|
|
* @param ISession $session
|
2016-09-29 17:38:29 +03:00
|
|
|
* @param IUserSession $userSession
|
2016-04-18 13:14:07 +03:00
|
|
|
* @param IURLGenerator $urlGenerator
|
2017-01-12 14:38:45 +03:00
|
|
|
* @param ILogger $logger
|
2016-05-11 12:23:25 +03:00
|
|
|
* @param Manager $twoFactorManager
|
2017-09-04 15:17:03 +03:00
|
|
|
* @param Defaults $defaults
|
2018-01-13 23:12:22 +03:00
|
|
|
* @param Throttler $throttler
|
2016-04-11 13:08:00 +03:00
|
|
|
*/
|
2017-01-12 14:38:45 +03:00
|
|
|
public function __construct($appName,
|
2017-09-02 17:19:02 +03:00
|
|
|
IRequest $request,
|
|
|
|
IUserManager $userManager,
|
|
|
|
IConfig $config,
|
|
|
|
ISession $session,
|
|
|
|
IUserSession $userSession,
|
|
|
|
IURLGenerator $urlGenerator,
|
|
|
|
ILogger $logger,
|
|
|
|
Manager $twoFactorManager,
|
2018-01-13 23:12:22 +03:00
|
|
|
Defaults $defaults,
|
|
|
|
Throttler $throttler) {
|
2016-04-11 13:08:00 +03:00
|
|
|
parent::__construct($appName, $request);
|
|
|
|
$this->userManager = $userManager;
|
|
|
|
$this->config = $config;
|
|
|
|
$this->session = $session;
|
|
|
|
$this->userSession = $userSession;
|
2016-04-18 13:14:07 +03:00
|
|
|
$this->urlGenerator = $urlGenerator;
|
2017-01-12 14:38:45 +03:00
|
|
|
$this->logger = $logger;
|
2016-05-11 12:23:25 +03:00
|
|
|
$this->twoFactorManager = $twoFactorManager;
|
2017-09-02 17:19:02 +03:00
|
|
|
$this->defaults = $defaults;
|
2018-01-13 23:12:22 +03:00
|
|
|
$this->throttler = $throttler;
|
2016-04-18 13:14:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
* @UseSession
|
|
|
|
*
|
|
|
|
* @return RedirectResponse
|
|
|
|
*/
|
|
|
|
public function logout() {
|
2017-02-02 23:56:44 +03:00
|
|
|
$loginToken = $this->request->getCookie('nc_token');
|
2016-04-18 13:14:07 +03:00
|
|
|
if (!is_null($loginToken)) {
|
|
|
|
$this->config->deleteUserValue($this->userSession->getUser()->getUID(), 'login_token', $loginToken);
|
|
|
|
}
|
|
|
|
$this->userSession->logout();
|
|
|
|
|
2018-08-27 13:18:14 +03:00
|
|
|
$response = new RedirectResponse($this->urlGenerator->linkToRouteAbsolute(
|
|
|
|
'core.login.showLoginForm',
|
|
|
|
['clear' => true] // this param the the code in login.js may be removed when the "Clear-Site-Data" is working in the browsers
|
|
|
|
));
|
2018-11-22 01:21:28 +03:00
|
|
|
|
|
|
|
$this->session->set('clearingExecutionContexts', '1');
|
|
|
|
$this->session->close();
|
2018-10-15 15:25:08 +03:00
|
|
|
$response->addHeader('Clear-Site-Data', '"cache", "storage", "executionContexts"');
|
2017-06-20 20:46:10 +03:00
|
|
|
return $response;
|
2016-04-11 13:08:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @PublicPage
|
|
|
|
* @NoCSRFRequired
|
|
|
|
* @UseSession
|
|
|
|
*
|
|
|
|
* @param string $user
|
|
|
|
* @param string $redirect_url
|
|
|
|
*
|
2016-05-06 17:31:40 +03:00
|
|
|
* @return TemplateResponse|RedirectResponse
|
2016-04-11 13:08:00 +03:00
|
|
|
*/
|
2018-04-11 01:20:15 +03:00
|
|
|
public function showLoginForm(string $user = null, string $redirect_url = null): Http\Response {
|
2016-04-25 15:10:55 +03:00
|
|
|
if ($this->userSession->isLoggedIn()) {
|
|
|
|
return new RedirectResponse(OC_Util::getDefaultPageUrl());
|
2016-04-11 13:08:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$parameters = array();
|
|
|
|
$loginMessages = $this->session->get('loginMessages');
|
|
|
|
$errors = [];
|
|
|
|
$messages = [];
|
2016-04-25 15:10:55 +03:00
|
|
|
if (is_array($loginMessages)) {
|
2016-04-11 13:08:00 +03:00
|
|
|
list($errors, $messages) = $loginMessages;
|
|
|
|
}
|
|
|
|
$this->session->remove('loginMessages');
|
|
|
|
foreach ($errors as $value) {
|
|
|
|
$parameters[$value] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$parameters['messages'] = $messages;
|
2018-01-13 23:12:22 +03:00
|
|
|
if ($user !== null && $user !== '') {
|
2016-04-15 20:02:19 +03:00
|
|
|
$parameters['loginName'] = $user;
|
2016-04-11 13:08:00 +03:00
|
|
|
$parameters['user_autofocus'] = false;
|
|
|
|
} else {
|
2016-04-15 20:02:19 +03:00
|
|
|
$parameters['loginName'] = '';
|
2016-04-11 13:08:00 +03:00
|
|
|
$parameters['user_autofocus'] = true;
|
|
|
|
}
|
2018-10-28 08:28:54 +03:00
|
|
|
|
|
|
|
$autocomplete = $this->config->getSystemValue('login_form_autocomplete', true);
|
|
|
|
if ($autocomplete){
|
|
|
|
$parameters['login_form_autocomplete'] = 'on';
|
|
|
|
} else {
|
|
|
|
$parameters['login_form_autocomplete'] = 'off';
|
|
|
|
}
|
|
|
|
|
2016-04-11 13:08:00 +03:00
|
|
|
if (!empty($redirect_url)) {
|
|
|
|
$parameters['redirect_url'] = $redirect_url;
|
|
|
|
}
|
|
|
|
|
2018-07-21 14:05:13 +03:00
|
|
|
$parameters = $this->setPasswordResetParameters($user, $parameters);
|
2016-04-25 15:10:55 +03:00
|
|
|
$parameters['alt_login'] = OC_App::getAlternativeLogIns();
|
2016-04-11 13:08:00 +03:00
|
|
|
|
2018-01-13 23:12:22 +03:00
|
|
|
if ($user !== null && $user !== '') {
|
2016-04-15 20:02:19 +03:00
|
|
|
$parameters['loginName'] = $user;
|
2016-04-11 13:08:00 +03:00
|
|
|
$parameters['user_autofocus'] = false;
|
|
|
|
} else {
|
2016-04-15 20:02:19 +03:00
|
|
|
$parameters['loginName'] = '';
|
2016-04-11 13:08:00 +03:00
|
|
|
$parameters['user_autofocus'] = true;
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:12:22 +03:00
|
|
|
$parameters['throttle_delay'] = $this->throttler->getDelay($this->request->getRemoteAddress());
|
|
|
|
|
2017-09-02 17:19:02 +03:00
|
|
|
// OpenGraph Support: http://ogp.me/
|
2017-09-06 17:24:49 +03:00
|
|
|
Util::addHeader('meta', ['property' => 'og:title', 'content' => Util::sanitizeHTML($this->defaults->getName())]);
|
|
|
|
Util::addHeader('meta', ['property' => 'og:description', 'content' => Util::sanitizeHTML($this->defaults->getSlogan())]);
|
|
|
|
Util::addHeader('meta', ['property' => 'og:site_name', 'content' => Util::sanitizeHTML($this->defaults->getName())]);
|
|
|
|
Util::addHeader('meta', ['property' => 'og:url', 'content' => $this->urlGenerator->getAbsoluteURL('/')]);
|
|
|
|
Util::addHeader('meta', ['property' => 'og:type', 'content' => 'website']);
|
2018-08-28 16:58:27 +03:00
|
|
|
Util::addHeader('meta', ['property' => 'og:image', 'content' => $this->urlGenerator->getAbsoluteURL($this->urlGenerator->imagePath('core', 'favicon-touch.png'))]);
|
2017-09-02 17:19:02 +03:00
|
|
|
|
2016-04-11 13:08:00 +03:00
|
|
|
return new TemplateResponse(
|
2016-04-25 15:10:55 +03:00
|
|
|
$this->appName, 'login', $parameters, 'guest'
|
2016-04-11 13:08:00 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-07-21 14:05:13 +03:00
|
|
|
/**
|
|
|
|
* Sets the password reset params.
|
|
|
|
*
|
|
|
|
* Users may not change their passwords if:
|
|
|
|
* - The account is disabled
|
|
|
|
* - The backend doesn't support password resets
|
|
|
|
* - The password reset function is disabled
|
|
|
|
*
|
|
|
|
* @param string $user
|
|
|
|
* @param array $parameters
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private function setPasswordResetParameters(
|
|
|
|
string $user = null, array $parameters): array {
|
|
|
|
if ($user !== null && $user !== '') {
|
|
|
|
$userObj = $this->userManager->get($user);
|
|
|
|
} else {
|
|
|
|
$userObj = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$parameters['resetPasswordLink'] = $this->config
|
|
|
|
->getSystemValue('lost_password_link', '');
|
|
|
|
|
2018-11-20 15:28:40 +03:00
|
|
|
if ($parameters['resetPasswordLink'] === 'disabled') {
|
|
|
|
$parameters['canResetPassword'] = false;
|
|
|
|
} else if (!$parameters['resetPasswordLink'] && $userObj !== null) {
|
2018-07-21 14:05:13 +03:00
|
|
|
$parameters['canResetPassword'] = $userObj->canChangePassword();
|
|
|
|
} else if ($userObj !== null && $userObj->isEnabled() === false) {
|
|
|
|
$parameters['canResetPassword'] = false;
|
|
|
|
} else {
|
|
|
|
$parameters['canResetPassword'] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $parameters;
|
|
|
|
}
|
|
|
|
|
2016-08-09 20:01:50 +03:00
|
|
|
/**
|
|
|
|
* @param string $redirectUrl
|
|
|
|
* @return RedirectResponse
|
|
|
|
*/
|
|
|
|
private function generateRedirect($redirectUrl) {
|
|
|
|
if (!is_null($redirectUrl) && $this->userSession->isLoggedIn()) {
|
|
|
|
$location = $this->urlGenerator->getAbsoluteURL(urldecode($redirectUrl));
|
|
|
|
// Deny the redirect if the URL contains a @
|
|
|
|
// This prevents unvalidated redirects like ?redirect_url=:user@domain.com
|
|
|
|
if (strpos($location, '@') === false) {
|
|
|
|
return new RedirectResponse($location);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return new RedirectResponse(OC_Util::getDefaultPageUrl());
|
|
|
|
}
|
|
|
|
|
2016-04-25 15:10:55 +03:00
|
|
|
/**
|
|
|
|
* @PublicPage
|
|
|
|
* @UseSession
|
2016-08-09 20:01:50 +03:00
|
|
|
* @NoCSRFRequired
|
2017-04-13 23:50:44 +03:00
|
|
|
* @BruteForceProtection(action=login)
|
2016-04-25 15:10:55 +03:00
|
|
|
*
|
|
|
|
* @param string $user
|
|
|
|
* @param string $password
|
|
|
|
* @param string $redirect_url
|
2016-09-06 22:41:15 +03:00
|
|
|
* @param boolean $remember_login
|
2016-12-08 12:45:24 +03:00
|
|
|
* @param string $timezone
|
|
|
|
* @param string $timezone_offset
|
2016-04-25 15:10:55 +03:00
|
|
|
* @return RedirectResponse
|
|
|
|
*/
|
2018-04-06 16:44:28 +03:00
|
|
|
public function tryLogin($user, $password, $redirect_url, $remember_login = true, $timezone = '', $timezone_offset = '') {
|
2016-11-30 16:59:59 +03:00
|
|
|
if(!is_string($user)) {
|
|
|
|
throw new \InvalidArgumentException('Username must be string');
|
|
|
|
}
|
2016-07-20 19:36:15 +03:00
|
|
|
|
2016-08-09 20:01:50 +03:00
|
|
|
// If the user is already logged in and the CSRF check does not pass then
|
|
|
|
// simply redirect the user to the correct page as required. This is the
|
|
|
|
// case when an user has already logged-in, in another tab.
|
|
|
|
if(!$this->request->passesCSRFCheck()) {
|
|
|
|
return $this->generateRedirect($redirect_url);
|
|
|
|
}
|
|
|
|
|
2017-02-01 22:16:51 +03:00
|
|
|
if ($this->userManager instanceof PublicEmitter) {
|
2017-02-01 20:13:41 +03:00
|
|
|
$this->userManager->emit('\OC\User', 'preLogin', array($user, $password));
|
|
|
|
}
|
2017-01-31 22:21:58 +03:00
|
|
|
|
2016-06-09 17:44:31 +03:00
|
|
|
$originalUser = $user;
|
2018-07-21 14:05:13 +03:00
|
|
|
|
|
|
|
$userObj = $this->userManager->get($user);
|
|
|
|
|
|
|
|
if ($userObj !== null && $userObj->isEnabled() === false) {
|
|
|
|
$this->logger->warning('Login failed: \''. $user . '\' disabled' .
|
|
|
|
' (Remote IP: \''. $this->request->getRemoteAddress(). '\')',
|
|
|
|
['app' => 'core']);
|
|
|
|
return $this->createLoginFailedResponse($user, $originalUser,
|
|
|
|
$redirect_url, self::LOGIN_MSG_USERDISABLED);
|
|
|
|
}
|
|
|
|
|
2016-04-25 15:10:55 +03:00
|
|
|
// TODO: Add all the insane error handling
|
2016-05-11 12:23:25 +03:00
|
|
|
/* @var $loginResult IUser */
|
2017-01-12 14:38:45 +03:00
|
|
|
$loginResult = $this->userManager->checkPasswordNoLogging($user, $password);
|
2016-05-09 16:33:56 +03:00
|
|
|
if ($loginResult === false) {
|
2016-04-27 13:01:13 +03:00
|
|
|
$users = $this->userManager->getByEmail($user);
|
|
|
|
// we only allow login by email if unique
|
|
|
|
if (count($users) === 1) {
|
2018-02-22 14:46:06 +03:00
|
|
|
$previousUser = $user;
|
2016-05-09 12:04:18 +03:00
|
|
|
$user = $users[0]->getUID();
|
2018-02-22 14:46:06 +03:00
|
|
|
if($user !== $previousUser) {
|
|
|
|
$loginResult = $this->userManager->checkPassword($user, $password);
|
|
|
|
}
|
2016-04-27 13:01:13 +03:00
|
|
|
}
|
|
|
|
}
|
2018-07-21 14:05:13 +03:00
|
|
|
|
2016-05-09 16:33:56 +03:00
|
|
|
if ($loginResult === false) {
|
2018-07-21 14:05:13 +03:00
|
|
|
$this->logger->warning('Login failed: \''. $user .
|
|
|
|
'\' (Remote IP: \''. $this->request->getRemoteAddress(). '\')',
|
|
|
|
['app' => 'core']);
|
|
|
|
return $this->createLoginFailedResponse($user, $originalUser,
|
|
|
|
$redirect_url, self::LOGIN_MSG_INVALIDPASSWORD);
|
2016-04-25 15:10:55 +03:00
|
|
|
}
|
2018-07-21 14:05:13 +03:00
|
|
|
|
2016-05-20 18:54:46 +03:00
|
|
|
// TODO: remove password checks from above and let the user session handle failures
|
|
|
|
// requires https://github.com/owncloud/core/pull/24616
|
2016-11-30 15:28:36 +03:00
|
|
|
$this->userSession->completeLogin($loginResult, ['loginName' => $user, 'password' => $password]);
|
2019-01-22 18:16:55 +03:00
|
|
|
|
|
|
|
$tokenType = IToken::REMEMBER;
|
|
|
|
if ((int)$this->config->getSystemValue('remember_login_cookie_lifetime', 60*60*24*15) === 0) {
|
|
|
|
$remember_login = false;
|
|
|
|
$tokenType = IToken::DO_NOT_REMEMBER;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->userSession->createSessionToken($this->request, $loginResult->getUID(), $user, $password, $tokenType);
|
2018-09-26 14:36:04 +03:00
|
|
|
$this->userSession->updateTokens($loginResult->getUID(), $password);
|
2016-05-11 12:23:25 +03:00
|
|
|
|
2016-08-23 13:54:45 +03:00
|
|
|
// User has successfully logged in, now remove the password reset link, when it is available
|
2016-08-23 16:01:38 +03:00
|
|
|
$this->config->deleteUserValue($loginResult->getUID(), 'core', 'lostpassword');
|
2016-08-23 13:54:45 +03:00
|
|
|
|
2016-09-19 16:33:30 +03:00
|
|
|
$this->session->set('last-password-confirm', $loginResult->getLastLogin());
|
|
|
|
|
2016-12-08 12:45:24 +03:00
|
|
|
if ($timezone_offset !== '') {
|
|
|
|
$this->config->setUserValue($loginResult->getUID(), 'core', 'timezone', $timezone);
|
|
|
|
$this->session->set('timezone', $timezone_offset);
|
|
|
|
}
|
|
|
|
|
2016-05-11 12:23:25 +03:00
|
|
|
if ($this->twoFactorManager->isTwoFactorAuthenticated($loginResult)) {
|
2016-09-06 22:41:15 +03:00
|
|
|
$this->twoFactorManager->prepareTwoFactorLogin($loginResult, $remember_login);
|
2016-08-29 19:36:39 +03:00
|
|
|
|
2018-08-08 21:28:21 +03:00
|
|
|
$providers = $this->twoFactorManager->getProviderSet($loginResult)->getPrimaryProviders();
|
2016-08-29 19:36:39 +03:00
|
|
|
if (count($providers) === 1) {
|
|
|
|
// Single provider, hence we can redirect to that provider's challenge page directly
|
|
|
|
/* @var $provider IProvider */
|
|
|
|
$provider = array_pop($providers);
|
|
|
|
$url = 'core.TwoFactorChallenge.showChallenge';
|
|
|
|
$urlParams = [
|
|
|
|
'challengeProviderId' => $provider->getId(),
|
|
|
|
];
|
|
|
|
} else {
|
|
|
|
$url = 'core.TwoFactorChallenge.selectChallenge';
|
|
|
|
$urlParams = [];
|
|
|
|
}
|
|
|
|
|
2016-06-01 14:54:08 +03:00
|
|
|
if (!is_null($redirect_url)) {
|
2016-08-29 19:36:39 +03:00
|
|
|
$urlParams['redirect_url'] = $redirect_url;
|
2016-06-01 14:54:08 +03:00
|
|
|
}
|
2016-08-29 19:36:39 +03:00
|
|
|
|
|
|
|
return new RedirectResponse($this->urlGenerator->linkToRoute($url, $urlParams));
|
2016-05-11 12:23:25 +03:00
|
|
|
}
|
|
|
|
|
2016-09-06 22:41:15 +03:00
|
|
|
if ($remember_login) {
|
|
|
|
$this->userSession->createRememberMeToken($loginResult);
|
|
|
|
}
|
|
|
|
|
2016-08-09 20:01:50 +03:00
|
|
|
return $this->generateRedirect($redirect_url);
|
2016-04-25 15:10:55 +03:00
|
|
|
}
|
|
|
|
|
2018-07-21 14:05:13 +03:00
|
|
|
/**
|
|
|
|
* Creates a login failed response.
|
|
|
|
*
|
|
|
|
* @param string $user
|
|
|
|
* @param string $originalUser
|
|
|
|
* @param string $redirect_url
|
|
|
|
* @param string $loginMessage
|
|
|
|
* @return RedirectResponse
|
|
|
|
*/
|
|
|
|
private function createLoginFailedResponse(
|
|
|
|
$user, $originalUser, $redirect_url, string $loginMessage) {
|
|
|
|
// Read current user and append if possible we need to
|
|
|
|
// return the unmodified user otherwise we will leak the login name
|
|
|
|
$args = !is_null($user) ? ['user' => $originalUser] : [];
|
|
|
|
if (!is_null($redirect_url)) {
|
|
|
|
$args['redirect_url'] = $redirect_url;
|
|
|
|
}
|
|
|
|
$response = new RedirectResponse(
|
|
|
|
$this->urlGenerator->linkToRoute('core.login.showLoginForm', $args)
|
|
|
|
);
|
2018-08-13 16:52:09 +03:00
|
|
|
$response->throttle(['user' => substr($user, 0, 64)]);
|
2018-07-21 14:05:13 +03:00
|
|
|
$this->session->set('loginMessages', [
|
|
|
|
[$loginMessage], []
|
|
|
|
]);
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
|
2016-09-19 16:33:30 +03:00
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
* @UseSession
|
2017-04-13 23:50:44 +03:00
|
|
|
* @BruteForceProtection(action=sudo)
|
2016-09-19 16:33:30 +03:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* @param string $password
|
|
|
|
* @return DataResponse
|
|
|
|
*/
|
|
|
|
public function confirmPassword($password) {
|
2016-12-21 11:51:21 +03:00
|
|
|
$loginName = $this->userSession->getLoginName();
|
|
|
|
$loginResult = $this->userManager->checkPassword($loginName, $password);
|
2016-09-19 16:33:30 +03:00
|
|
|
if ($loginResult === false) {
|
2017-04-13 23:50:44 +03:00
|
|
|
$response = new DataResponse([], Http::STATUS_FORBIDDEN);
|
|
|
|
$response->throttle();
|
|
|
|
return $response;
|
2016-09-19 16:33:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$confirmTimestamp = time();
|
|
|
|
$this->session->set('last-password-confirm', $confirmTimestamp);
|
|
|
|
return new DataResponse(['lastLogin' => $confirmTimestamp], Http::STATUS_OK);
|
|
|
|
}
|
2016-04-11 13:08:00 +03:00
|
|
|
}
|