-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAuthFilter.php
72 lines (63 loc) · 1.79 KB
/
AuthFilter.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
namespace Dingo\Api\Http\Filter;
use Illuminate\Http\Request;
use Dingo\Api\Routing\Route;
use Dingo\Api\Routing\Router;
use Dingo\Api\Auth\Authenticator;
use Illuminate\Events\Dispatcher;
use Symfony\Component\HttpKernel\Exception\UnauthorizedHttpException;
class AuthFilter extends Filter
{
/**
* API router instance.
*
* @var \Dingo\Api\Routing\Router
*/
protected $router;
/**
* Illuminate events dispatcher instance.
*
* @var \Illuminate\Events\Dispatcher
*/
protected $events;
/**
* API authenticator instance.
*
* @var \Dingo\Api\Auth\Authenticator
*/
protected $auth;
/**
* Create a new authentication handler instance.
*
* @param Dingo\Api\Routing\Router $router
* @param Illuminate\Events\Dispatcher $events
* @param Dingo\Api\Auth\Authenticator $auth
* @return void
*/
public function __construct(Router $router, Dispatcher $events, Authenticator $auth)
{
$this->router = $router;
$this->events = $events;
$this->auth = $auth;
}
/**
* Peform authentication before a request is executed.
*
* @param \Dingo\Api\Routing\Route $route
* @param \Illuminate\Http\Request $request
* @param dynamic $provider
* @return mixed
*/
public function filter(Route $route, Request $request)
{
if ($this->requestIsInternal($request) || $this->routeNotProtected($route) || $this->userIsLogged()) {
return null;
}
$providers = array_slice(func_get_args(), 2);
try {
$this->auth->authenticate($providers);
} catch (UnauthorizedHttpException $exception) {
return $this->events->until('router.exception', [$exception]);
}
}
}