BookStack/app/Http/Middleware/Authenticate.php

54 lines
1.3 KiB
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
<?php
namespace BookStack\Http\Middleware;
2015-07-12 19:01:42 +00:00
use Closure;
use Illuminate\Http\Request;
2015-07-12 19:01:42 +00:00
class Authenticate
{
use ChecksForEmailConfirmation;
2015-07-12 19:01:42 +00:00
/**
* Handle an incoming request.
*/
public function handle(Request $request, Closure $next)
2015-07-12 19:01:42 +00:00
{
if ($this->awaitingEmailConfirmation()) {
return $this->emailConfirmationErrorResponse($request);
}
if (!hasAppAccess()) {
2015-07-12 19:01:42 +00:00
if ($request->ajax()) {
return response('Unauthorized.', 401);
} else {
return redirect()->guest(url('/login'));
2015-07-12 19:01:42 +00:00
}
}
return $next($request);
}
/**
* Provide an error response for when the current user's email is not confirmed
* in a system which requires it.
*/
protected function emailConfirmationErrorResponse(Request $request)
{
if ($request->wantsJson()) {
return response()->json([
'error' => [
2021-06-26 15:23:15 +00:00
'code' => 401,
'message' => trans('errors.email_confirmation_awaiting'),
],
], 401);
}
if (session()->get('sent-email-confirmation') === true) {
return redirect('/register/confirm');
}
return redirect('/register/confirm/awaiting');
}
2015-07-12 19:01:42 +00:00
}