2015-07-12 15:01:42 -04:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
namespace BookStack\Http\Middleware;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
use Closure;
|
|
|
|
use Illuminate\Contracts\Auth\Guard;
|
|
|
|
|
|
|
|
class Authenticate
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The Guard implementation.
|
|
|
|
* @var Guard
|
|
|
|
*/
|
|
|
|
protected $auth;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new filter instance.
|
2015-08-08 15:05:30 -04:00
|
|
|
* @param Guard $auth
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
|
|
|
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)
|
|
|
|
{
|
2017-11-11 13:09:48 -05:00
|
|
|
if ($this->auth->check()) {
|
|
|
|
$requireConfirmation = (setting('registration-confirmation') || setting('registration-restrict'));
|
|
|
|
if ($requireConfirmation && !$this->auth->user()->email_confirmed) {
|
|
|
|
return redirect('/register/confirm/awaiting');
|
|
|
|
}
|
2015-09-05 15:25:57 -04:00
|
|
|
}
|
2016-01-15 18:21:47 -05:00
|
|
|
|
2016-03-06 07:55:08 -05:00
|
|
|
if ($this->auth->guest() && !setting('app-public')) {
|
2015-07-12 15:01:42 -04:00
|
|
|
if ($request->ajax()) {
|
|
|
|
return response('Unauthorized.', 401);
|
|
|
|
} else {
|
2016-08-15 10:07:45 -04:00
|
|
|
return redirect()->guest(baseUrl('/login'));
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $next($request);
|
|
|
|
}
|
|
|
|
}
|