mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
The response is returned directly to the route so this is not needed, it was likely added as an artefact of a previous implementation Refs #3773 Refs #3746
232 lines
6.2 KiB
PHP
232 lines
6.2 KiB
PHP
<?php namespace Backend\Controllers;
|
|
|
|
use Mail;
|
|
use Flash;
|
|
use Backend;
|
|
use Validator;
|
|
use BackendAuth;
|
|
use Backend\Models\AccessLog;
|
|
use Backend\Classes\Controller;
|
|
use System\Classes\UpdateManager;
|
|
use ApplicationException;
|
|
use ValidationException;
|
|
use Exception;
|
|
|
|
/**
|
|
* Authentication controller
|
|
*
|
|
* @package october\backend
|
|
* @author Alexey Bobkov, Samuel Georges
|
|
*
|
|
*/
|
|
class Auth extends Controller
|
|
{
|
|
/**
|
|
* @var array Public controller actions
|
|
*/
|
|
protected $publicActions = ['index', 'signin', 'signout', 'restore', 'reset'];
|
|
|
|
/**
|
|
* Constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->middleware(function ($request, $response) {
|
|
// Clear Cache and any previous data to fix Invalid security token issue, see github: #3707
|
|
$response->headers->set('Cache-Control', 'no-cache, no-store, must-revalidate');
|
|
})->only('signin');
|
|
|
|
// Only run on HTTPS connections
|
|
if (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] === "on") {
|
|
$this->middleware(function ($request, $response) {
|
|
// Add HTTP Header 'Clear Site Data' to remove all Sensitive Data when signout, see github issue: #3707
|
|
$response->headers->set('Clear-Site-Data', 'cache, cookies, storage, executionContexts');
|
|
})->only('signout');
|
|
}
|
|
|
|
// Add JS File to un-install SW to avoid Cookie Cache Issues when Signin, see github issue: #3707
|
|
$this->addJs(url("/modules/backend/assets/js/auth/uninstall-sw.js"));
|
|
$this->layout = 'auth';
|
|
}
|
|
|
|
/**
|
|
* Default route, redirects to signin.
|
|
*/
|
|
public function index()
|
|
{
|
|
return Backend::redirect('backend/auth/signin');
|
|
}
|
|
|
|
/**
|
|
* Displays the log in page.
|
|
*/
|
|
public function signin()
|
|
{
|
|
$this->bodyClass = 'signin';
|
|
|
|
try {
|
|
if (post('postback')) {
|
|
return $this->signin_onSubmit();
|
|
}
|
|
|
|
$this->bodyClass .= ' preload';
|
|
}
|
|
catch (Exception $ex) {
|
|
Flash::error($ex->getMessage());
|
|
}
|
|
}
|
|
|
|
public function signin_onSubmit()
|
|
{
|
|
$rules = [
|
|
'login' => 'required|between:2,255',
|
|
'password' => 'required|between:4,255'
|
|
];
|
|
|
|
$validation = Validator::make(post(), $rules);
|
|
if ($validation->fails()) {
|
|
throw new ValidationException($validation);
|
|
}
|
|
|
|
if (($remember = config('cms.backendForceRemember', true)) === null) {
|
|
$remember = (bool) post('remember');
|
|
}
|
|
|
|
// Authenticate user
|
|
$user = BackendAuth::authenticate([
|
|
'login' => post('login'),
|
|
'password' => post('password')
|
|
], $remember);
|
|
|
|
try {
|
|
// Load version updates
|
|
UpdateManager::instance()->update();
|
|
}
|
|
catch (Exception $ex) {
|
|
Flash::error($ex->getMessage());
|
|
}
|
|
|
|
// Log the sign in event
|
|
AccessLog::add($user);
|
|
|
|
// Redirect to the intended page after successful sign in
|
|
return Backend::redirectIntended('backend');
|
|
}
|
|
|
|
/**
|
|
* Logs out a backend user.
|
|
*/
|
|
public function signout()
|
|
{
|
|
BackendAuth::logout();
|
|
return Backend::redirect('backend');
|
|
}
|
|
|
|
/**
|
|
* Request a password reset verification code.
|
|
*/
|
|
public function restore()
|
|
{
|
|
try {
|
|
if (post('postback')) {
|
|
return $this->restore_onSubmit();
|
|
}
|
|
}
|
|
catch (Exception $ex) {
|
|
Flash::error($ex->getMessage());
|
|
}
|
|
}
|
|
|
|
public function restore_onSubmit()
|
|
{
|
|
$rules = [
|
|
'login' => 'required|between:2,255'
|
|
];
|
|
|
|
$validation = Validator::make(post(), $rules);
|
|
if ($validation->fails()) {
|
|
throw new ValidationException($validation);
|
|
}
|
|
|
|
$user = BackendAuth::findUserByLogin(post('login'));
|
|
if (!$user) {
|
|
throw new ValidationException([
|
|
'login' => trans('backend::lang.account.restore_error', ['login' => post('login')])
|
|
]);
|
|
}
|
|
|
|
Flash::success(trans('backend::lang.account.restore_success'));
|
|
|
|
$code = $user->getResetPasswordCode();
|
|
$link = Backend::url('backend/auth/reset/'.$user->id.'/'.$code);
|
|
|
|
$data = [
|
|
'name' => $user->full_name,
|
|
'link' => $link,
|
|
];
|
|
|
|
Mail::send('backend::mail.restore', $data, function ($message) use ($user) {
|
|
$message->to($user->email, $user->full_name)->subject(trans('backend::lang.account.password_reset'));
|
|
});
|
|
|
|
return Backend::redirect('backend/auth/signin');
|
|
}
|
|
|
|
/**
|
|
* Reset backend user password using verification code.
|
|
*/
|
|
public function reset($userId = null, $code = null)
|
|
{
|
|
try {
|
|
if (post('postback')) {
|
|
return $this->reset_onSubmit();
|
|
}
|
|
|
|
if (!$userId || !$code) {
|
|
throw new ApplicationException(trans('backend::lang.account.reset_error'));
|
|
}
|
|
}
|
|
catch (Exception $ex) {
|
|
Flash::error($ex->getMessage());
|
|
}
|
|
|
|
$this->vars['code'] = $code;
|
|
$this->vars['id'] = $userId;
|
|
}
|
|
|
|
public function reset_onSubmit()
|
|
{
|
|
if (!post('id') || !post('code')) {
|
|
throw new ApplicationException(trans('backend::lang.account.reset_error'));
|
|
}
|
|
|
|
$rules = [
|
|
'password' => 'required|between:4,255'
|
|
];
|
|
|
|
$validation = Validator::make(post(), $rules);
|
|
if ($validation->fails()) {
|
|
throw new ValidationException($validation);
|
|
}
|
|
|
|
$code = post('code');
|
|
$user = BackendAuth::findUserById(post('id'));
|
|
|
|
if (!$user->checkResetPasswordCode($code)) {
|
|
throw new ApplicationException(trans('backend::lang.account.reset_error'));
|
|
}
|
|
|
|
if (!$user->attemptResetPassword($code, post('password'))) {
|
|
throw new ApplicationException(trans('backend::lang.account.reset_fail'));
|
|
}
|
|
|
|
$user->clearResetPassword();
|
|
|
|
Flash::success(trans('backend::lang.account.reset_success'));
|
|
|
|
return Backend::redirect('backend/auth/signin');
|
|
}
|
|
}
|