1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Created by PhpStorm. |
4
|
|
|
* User: Alexandre |
5
|
|
|
* Date: 14/03/2018 |
6
|
|
|
* Time: 22:13 |
7
|
|
|
*/ |
8
|
|
|
|
9
|
|
|
namespace OAuth2\Extensions\OpenID\Flows; |
10
|
|
|
|
11
|
|
|
|
12
|
|
|
use OAuth2\Endpoints\AuthorizationEndpoint; |
13
|
|
|
use OAuth2\Endpoints\TokenEndpoint; |
14
|
|
|
use OAuth2\Exceptions\OAuthException; |
15
|
|
|
use OAuth2\Extensions\OpenID\IdTokenManager; |
16
|
|
|
use OAuth2\Flows\FlowInterface; |
17
|
|
|
use OAuth2\GrantTypes\AbstractGrantType; |
18
|
|
|
use OAuth2\Storages\AccessTokenStorageInterface; |
19
|
|
|
use OAuth2\Storages\RefreshTokenStorageInterface; |
20
|
|
|
|
21
|
|
|
class ImplicitFlow extends AbstractGrantType implements FlowInterface |
22
|
|
|
{ |
23
|
|
|
/** |
24
|
|
|
* @var IdTokenManager |
25
|
|
|
*/ |
26
|
|
|
private $idTokenManager; |
27
|
|
|
|
28
|
|
|
public function __construct(IdTokenManager $idTokenManager, |
29
|
|
|
AccessTokenStorageInterface $accessTokenStorage, |
30
|
|
|
RefreshTokenStorageInterface $refreshTokenStorage) |
31
|
|
|
{ |
32
|
|
|
parent::__construct($accessTokenStorage, $refreshTokenStorage); |
33
|
|
|
$this->idTokenManager = $idTokenManager; |
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
/** |
37
|
|
|
* @return string[] |
38
|
|
|
*/ |
39
|
|
|
function getResponseTypes(): array |
|
|
|
|
40
|
|
|
{ |
41
|
|
|
return [ |
42
|
|
|
'id_token', |
43
|
|
|
'id_token token' |
44
|
|
|
]; |
45
|
|
|
} |
46
|
|
|
|
47
|
|
|
/** |
48
|
|
|
* @return string[] |
49
|
|
|
*/ |
50
|
|
|
function getGrantTypes(): array |
|
|
|
|
51
|
|
|
{ |
52
|
|
|
return []; |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
function handleAccessTokenRequest(TokenEndpoint $tokenEndpoint, array $requestData): array |
|
|
|
|
56
|
|
|
{ |
57
|
|
|
return []; |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
/** |
61
|
|
|
* @param AuthorizationEndpoint $authorizationEndpoint |
62
|
|
|
* @param array $requestData |
63
|
|
|
* @throws OAuthException |
64
|
|
|
*/ |
65
|
|
|
public function verifyAuthorizationRequest(AuthorizationEndpoint $authorizationEndpoint, array $requestData) { |
66
|
|
|
if(empty($requestData['nonce'])) { |
67
|
|
|
throw new OAuthException('invalid_request', 'Nonce required'); |
68
|
|
|
} |
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
public function handleAuthorizationRequest(AuthorizationEndpoint $authorizationEndpoint, array $requestData): array |
72
|
|
|
{ |
73
|
|
|
// TODO |
74
|
|
|
$idToken = 'aze'; |
75
|
|
|
return [ |
76
|
|
|
'id_token' => $idToken |
77
|
|
|
]; |
78
|
|
|
// var_dump($requestData); |
|
|
|
|
79
|
|
|
// die; |
80
|
|
|
} |
81
|
|
|
|
82
|
|
|
function getDefaultResponseMode(): string |
|
|
|
|
83
|
|
|
{ |
84
|
|
|
return 'fragment'; |
85
|
|
|
} |
86
|
|
|
|
87
|
|
|
function getUnsupportedResponseModes(): array |
|
|
|
|
88
|
|
|
{ |
89
|
|
|
return ['query']; |
90
|
|
|
} |
91
|
|
|
} |
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.