BookStack/app/Http/Middleware/Authenticate.php

52 lines
1.1 KiB
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
<?php
namespace Oxbow\Http\Middleware;
use Closure;
use Illuminate\Contracts\Auth\Guard;
use Oxbow\Exceptions\UserRegistrationException;
use Setting;
2015-07-12 19:01:42 +00:00
class Authenticate
{
/**
* The Guard implementation.
*
* @var Guard
*/
protected $auth;
/**
* Create a new filter instance.
*
2015-08-08 19:05:30 +00:00
* @param Guard $auth
2015-07-12 19:01:42 +00: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)
{
if(auth()->check() && auth()->user()->email_confirmed == false) {
return redirect()->guest('/register/confirm/awaiting');
}
2015-09-05 16:42:05 +00:00
if ($this->auth->guest() && !Setting::get('app-public')) {
2015-07-12 19:01:42 +00:00
if ($request->ajax()) {
return response('Unauthorized.', 401);
} else {
2015-08-05 20:16:10 +00:00
return redirect()->guest('/login');
2015-07-12 19:01:42 +00:00
}
}
return $next($request);
}
}