111 lines
3.8 KiB
PHP
111 lines
3.8 KiB
PHP
<?php
|
|
/**
|
|
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
*
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* 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
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OC\Authentication\Login;
|
|
|
|
class Chain {
|
|
|
|
/** @var PreLoginHookCommand */
|
|
private $preLoginHookCommand;
|
|
|
|
/** @var UserDisabledCheckCommand */
|
|
private $userDisabledCheckCommand;
|
|
|
|
/** @var UidLoginCommand */
|
|
private $uidLoginCommand;
|
|
|
|
/** @var EmailLoginCommand */
|
|
private $emailLoginCommand;
|
|
|
|
/** @var LoggedInCheckCommand */
|
|
private $loggedInCheckCommand;
|
|
|
|
/** @var CompleteLoginCommand */
|
|
private $completeLoginCommand;
|
|
|
|
/** @var CreateSessionTokenCommand */
|
|
private $createSessionTokenCommand;
|
|
|
|
/** @var ClearLostPasswordTokensCommand */
|
|
private $clearLostPasswordTokensCommand;
|
|
|
|
/** @var UpdateLastPasswordConfirmCommand */
|
|
private $updateLastPasswordConfirmCommand;
|
|
|
|
/** @var SetUserTimezoneCommand */
|
|
private $setUserTimezoneCommand;
|
|
|
|
/** @var TwoFactorCommand */
|
|
private $twoFactorCommand;
|
|
|
|
/** @var FinishRememberedLoginCommand */
|
|
private $finishRememberedLoginCommand;
|
|
|
|
public function __construct(PreLoginHookCommand $preLoginHookCommand,
|
|
UserDisabledCheckCommand $userDisabledCheckCommand,
|
|
UidLoginCommand $uidLoginCommand,
|
|
EmailLoginCommand $emailLoginCommand,
|
|
LoggedInCheckCommand $loggedInCheckCommand,
|
|
CompleteLoginCommand $completeLoginCommand,
|
|
CreateSessionTokenCommand $createSessionTokenCommand,
|
|
ClearLostPasswordTokensCommand $clearLostPasswordTokensCommand,
|
|
UpdateLastPasswordConfirmCommand $updateLastPasswordConfirmCommand,
|
|
SetUserTimezoneCommand $setUserTimezoneCommand,
|
|
TwoFactorCommand $twoFactorCommand,
|
|
FinishRememberedLoginCommand $finishRememberedLoginCommand
|
|
) {
|
|
$this->preLoginHookCommand = $preLoginHookCommand;
|
|
$this->userDisabledCheckCommand = $userDisabledCheckCommand;
|
|
$this->uidLoginCommand = $uidLoginCommand;
|
|
$this->emailLoginCommand = $emailLoginCommand;
|
|
$this->loggedInCheckCommand = $loggedInCheckCommand;
|
|
$this->completeLoginCommand = $completeLoginCommand;
|
|
$this->createSessionTokenCommand = $createSessionTokenCommand;
|
|
$this->clearLostPasswordTokensCommand = $clearLostPasswordTokensCommand;
|
|
$this->updateLastPasswordConfirmCommand = $updateLastPasswordConfirmCommand;
|
|
$this->setUserTimezoneCommand = $setUserTimezoneCommand;
|
|
$this->twoFactorCommand = $twoFactorCommand;
|
|
$this->finishRememberedLoginCommand = $finishRememberedLoginCommand;
|
|
}
|
|
|
|
public function process(LoginData $loginData): LoginResult {
|
|
$chain = $this->preLoginHookCommand;
|
|
$chain
|
|
->setNext($this->userDisabledCheckCommand)
|
|
->setNext($this->uidLoginCommand)
|
|
->setNext($this->emailLoginCommand)
|
|
->setNext($this->loggedInCheckCommand)
|
|
->setNext($this->completeLoginCommand)
|
|
->setNext($this->createSessionTokenCommand)
|
|
->setNext($this->clearLostPasswordTokensCommand)
|
|
->setNext($this->updateLastPasswordConfirmCommand)
|
|
->setNext($this->setUserTimezoneCommand)
|
|
->setNext($this->twoFactorCommand)
|
|
->setNext($this->finishRememberedLoginCommand);
|
|
|
|
return $chain->process($loginData);
|
|
}
|
|
}
|