mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-18 05:58:18 +01:00
126 lines
3.4 KiB
PHP
126 lines
3.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Cachet\Http\Controllers;
|
|
|
|
use GrahamCampbell\Binput\Facades\Binput;
|
|
use Illuminate\Routing\Controller;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Redirect;
|
|
use Illuminate\Support\Facades\Request;
|
|
use Illuminate\Support\Facades\Session;
|
|
use Illuminate\Support\Facades\View;
|
|
use Illuminate\Support\Str;
|
|
use PragmaRX\Google2FA\Vendor\Laravel\Facade as Google2FA;
|
|
|
|
class AuthController extends Controller
|
|
{
|
|
/**
|
|
* Shows the login view.
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function showLogin()
|
|
{
|
|
return View::make('auth.login')
|
|
->withPageTitle(trans('dashboard.login.login'));
|
|
}
|
|
|
|
/**
|
|
* Logs the user in.
|
|
*
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function postLogin()
|
|
{
|
|
$loginData = Binput::only(['login', 'password']);
|
|
|
|
// Login with username or email.
|
|
$loginKey = Str::contains($loginData['login'], '@') ? 'email' : 'username';
|
|
$loginData[$loginKey] = array_pull($loginData, 'login');
|
|
|
|
// Validate login credentials.
|
|
if (Auth::validate($loginData)) {
|
|
// Log the user in for one request.
|
|
Auth::once($loginData);
|
|
// Do we have Two Factor Auth enabled?
|
|
if (Auth::user()->hasTwoFactor) {
|
|
// Temporarily store the user.
|
|
Session::put('2fa_id', Auth::user()->id);
|
|
|
|
return Redirect::route('auth.two-factor');
|
|
}
|
|
|
|
// We probably want to add support for "Remember me" here.
|
|
Auth::attempt($loginData);
|
|
|
|
return Redirect::intended('dashboard');
|
|
}
|
|
|
|
return Redirect::route('auth.login')
|
|
->withInput(Binput::except('password'))
|
|
->withError(trans('forms.login.invalid'));
|
|
}
|
|
|
|
/**
|
|
* Shows the two-factor-auth view.
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function showTwoFactorAuth()
|
|
{
|
|
return View::make('auth.two-factor-auth');
|
|
}
|
|
|
|
/**
|
|
* Validates the Two Factor token.
|
|
*
|
|
* This feels very hacky, but we have to juggle authentication and codes.
|
|
*
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function postTwoFactor()
|
|
{
|
|
// Check that we have a session.
|
|
if ($userId = Session::pull('2fa_id')) {
|
|
$code = Binput::get('code');
|
|
|
|
// Maybe a temp login here.
|
|
Auth::loginUsingId($userId);
|
|
|
|
$valid = Google2FA::verifyKey(Auth::user()->google_2fa_secret, $code);
|
|
|
|
if ($valid) {
|
|
return Redirect::intended('dashboard');
|
|
} else {
|
|
// Failed login, log back out.
|
|
Auth::logout();
|
|
|
|
return Redirect::route('auth.login')->withError(trans('forms.login.invalid-token'));
|
|
}
|
|
}
|
|
|
|
return Redirect::route('auth.login')->withError(trans('forms.login.invalid-token'));
|
|
}
|
|
|
|
/**
|
|
* Logs the user out, deleting their session etc.
|
|
*
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function logoutAction()
|
|
{
|
|
Auth::logout();
|
|
|
|
return Redirect::to('/');
|
|
}
|
|
}
|