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