1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace SMartins\PassportMultiauth\Http\Middleware; |
4
|
|
|
|
5
|
|
|
use Closure; |
6
|
|
|
use Illuminate\Http\Request; |
7
|
|
|
use League\OAuth2\Server\Exception\OAuthServerException; |
8
|
|
|
|
9
|
|
|
class AddCustomProvider |
10
|
|
|
{ |
11
|
|
|
/** |
12
|
|
|
* The default provider of api guard. |
13
|
|
|
* |
14
|
|
|
* @var string |
15
|
|
|
*/ |
16
|
|
|
protected $defaultApiProvider; |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* Handle an incoming request. Set the `provider` from `api` guard using a |
20
|
|
|
* parameter `provider` coming from request. The provider on `apì` guard |
21
|
|
|
* is used by Laravel Passport to get the correct model on access token |
22
|
|
|
* creation. |
23
|
|
|
* |
24
|
|
|
* @param \Illuminate\Http\Request $request |
25
|
|
|
* @param \Closure $next |
26
|
|
|
* |
27
|
|
|
* @return mixed |
28
|
|
|
* |
29
|
|
|
* @throws OAuthServerException |
30
|
|
|
*/ |
31
|
3 |
|
public function handle(Request $request, Closure $next) |
32
|
|
|
{ |
33
|
3 |
|
$this->defaultApiProvider = config('auth.guards.api.provider'); |
34
|
|
|
|
35
|
3 |
|
$provider = $request->get('provider'); |
36
|
|
|
|
37
|
3 |
|
if ($this->invalidProvider($provider)) { |
38
|
2 |
|
throw OAuthServerException::invalidRequest('provider'); |
39
|
|
|
} |
40
|
|
|
|
41
|
1 |
|
config(['auth.guards.api.provider' => $provider]); |
42
|
|
|
|
43
|
1 |
|
return $next($request); |
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
/** |
47
|
|
|
* Reset config provider to default after complete request. If necessary |
48
|
|
|
* can receive $request and $response params. To be used the attribute |
49
|
|
|
* $this->defaultApiProvider the middleware was registered on ServiceProvider |
50
|
|
|
* as a singleton. |
51
|
|
|
* Read more in https://laravel.com/docs/5.6/middleware#terminable-middleware. |
52
|
|
|
* |
53
|
|
|
* @return void |
54
|
|
|
*/ |
55
|
1 |
|
public function terminate() |
56
|
|
|
{ |
57
|
1 |
|
config(['auth.guards.api.provider' => $this->defaultApiProvider]); |
58
|
1 |
|
} |
59
|
|
|
|
60
|
|
|
/** |
61
|
|
|
* Check if the given provider is not registered in the auth configuration file. |
62
|
|
|
* |
63
|
|
|
* @param $provider |
64
|
|
|
* |
65
|
|
|
* @return bool |
66
|
|
|
*/ |
67
|
3 |
|
protected function invalidProvider($provider) |
68
|
|
|
{ |
69
|
3 |
|
if (is_null($provider)) { |
70
|
1 |
|
return true; |
71
|
|
|
} |
72
|
|
|
|
73
|
2 |
|
foreach (config('auth.guards') as $guardsConfiguration) { |
74
|
2 |
|
if ($guardsConfiguration['provider'] === $provider) { |
75
|
2 |
|
return false; |
76
|
|
|
} |
77
|
|
|
} |
78
|
|
|
|
79
|
1 |
|
return true; |
80
|
|
|
} |
81
|
|
|
} |
82
|
|
|
|