mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-24 22:48:18 +00:00
56 lines
1.4 KiB
PHP
56 lines
1.4 KiB
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* IsNotConfirmed.php
|
||
|
* Copyright (C) 2016 Sander Dorigo
|
||
|
*
|
||
|
* This software may be modified and distributed under the terms
|
||
|
* of the MIT license. See the LICENSE file for details.
|
||
|
*/
|
||
|
|
||
|
declare(strict_types = 1);
|
||
|
|
||
|
namespace FireflyIII\Http\Middleware;
|
||
|
|
||
|
use Closure;
|
||
|
use Illuminate\Http\Request;
|
||
|
use Illuminate\Support\Facades\Auth;
|
||
|
use Preferences;
|
||
|
|
||
|
/**
|
||
|
* Class IsNotConfirmed
|
||
|
*
|
||
|
* @package FireflyIII\Http\Middleware
|
||
|
*/
|
||
|
class IsNotConfirmed
|
||
|
{
|
||
|
/**
|
||
|
* Handle an incoming request. User account must be confirmed for this routine to let
|
||
|
* the user pass.
|
||
|
*
|
||
|
* @param \Illuminate\Http\Request $request
|
||
|
* @param \Closure $next
|
||
|
* @param string|null $guard
|
||
|
*
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function handle(Request $request, Closure $next, $guard = null)
|
||
|
{
|
||
|
if (Auth::guard($guard)->guest()) {
|
||
|
if ($request->ajax()) {
|
||
|
return response('Unauthorized.', 401);
|
||
|
} else {
|
||
|
return redirect()->guest('login');
|
||
|
}
|
||
|
} else {
|
||
|
// user must be logged in, then continue:
|
||
|
$isConfirmed = Preferences::get('user_confirmed', false)->data;
|
||
|
if ($isConfirmed) {
|
||
|
// user account is confirmed, simply send them home.
|
||
|
return redirect(route('home'));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return $next($request);
|
||
|
}
|
||
|
}
|