Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
6dfc0229
Commit
6dfc0229
authored
May 22, 2016
by
Joseph Silber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make the Authenticate middleware throw an AuthenticationException
parent
e7ff2bfb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
16 deletions
+15
-16
Authenticate.php
app/Http/Middleware/Authenticate.php
+15
-16
No files found.
app/Http/Middleware/Authenticate.php
View file @
6dfc0229
...
...
@@ -4,6 +4,7 @@ namespace App\Http\Middleware;
use
Closure
;
use
Illuminate\Support\Facades\Auth
;
use
Illuminate\Auth\AuthenticationException
;
class
Authenticate
{
...
...
@@ -14,40 +15,38 @@ class Authenticate
* @param \Closure $next
* @param string ...$guards
* @return mixed
*
* @throws \Illuminate\Auth\AuthenticationException
*/
public
function
handle
(
$request
,
Closure
$next
,
...
$guards
)
{
if
(
$this
->
check
(
$guards
))
{
return
$next
(
$request
);
}
$this
->
authenticate
(
$guards
);
if
(
$request
->
ajax
()
||
$request
->
wantsJson
())
{
return
response
(
'Unauthorized.'
,
401
);
}
else
{
return
redirect
()
->
guest
(
'login'
);
}
return
$next
(
$request
);
}
/**
* Determine if the user is logged in to any of the given guards.
*
* @param array $guards
* @return bool
* @return void
*
* @throws \Illuminate\Auth\AuthenticationException
*/
protected
function
check
(
array
$guards
)
protected
function
authenticate
(
array
$guards
)
{
if
(
empty
(
$guards
))
{
return
Auth
::
check
();
if
(
count
(
$guards
)
<=
1
)
{
Auth
::
guard
(
array_first
(
$guards
))
->
authenticate
();
return
Auth
::
shouldUse
(
$guard
);
}
foreach
(
$guards
as
$guard
)
{
if
(
Auth
::
guard
(
$guard
)
->
check
())
{
Auth
::
shouldUse
(
$guard
);
return
true
;
return
Auth
::
shouldUse
(
$guard
);
}
}
return
false
;
throw
new
AuthenticationException
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment