2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
|
|
|
|
use Closure;
|
|
|
|
use Illuminate\Contracts\Auth\Guard;
|
2022-03-29 05:44:53 -07:00
|
|
|
use Auth;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2022-03-29 05:44:53 -07:00
|
|
|
class CheckUserIsActivated
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The Guard implementation.
|
|
|
|
*
|
|
|
|
* @var Guard
|
|
|
|
*/
|
|
|
|
protected $auth;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new filter instance.
|
|
|
|
*
|
|
|
|
* @param Guard $auth
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct(Guard $auth)
|
|
|
|
{
|
|
|
|
$this->auth = $auth;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle an incoming request.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @param \Closure $next
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle($request, Closure $next)
|
|
|
|
{
|
2022-03-29 05:44:53 -07:00
|
|
|
|
|
|
|
// If there is a user AND the user is NOT activated, send them to the login page
|
|
|
|
// This prevents people who still have active sessions logged in and their status gets toggled
|
|
|
|
// to inactive (aka unable to login)
|
|
|
|
if (($request->user()) && (!$request->user()->isActivated())) {
|
|
|
|
Auth::logout();
|
|
|
|
return redirect()->guest('login');
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return $next($request);
|
2022-03-29 05:44:53 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
}
|