|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Sludio\HelperBundle\Oauth\Client\Provider; |
|
4
|
|
|
|
|
5
|
|
|
use League\OAuth2\Client\Provider\AbstractProvider; |
|
6
|
|
|
use Symfony\Component\Routing\Generator\UrlGeneratorInterface; |
|
7
|
|
|
use League\OAuth2\Client\Token\AccessToken; |
|
8
|
|
|
|
|
9
|
|
|
abstract class BaseProvider extends AbstractProvider |
|
10
|
|
|
{ |
|
11
|
|
|
public $generator; |
|
12
|
|
|
|
|
13
|
|
|
public function __construct(array $options = [], array $collaborators = [], $generator = null) |
|
14
|
|
|
{ |
|
15
|
|
|
$this->generator = $generator; |
|
16
|
|
|
|
|
17
|
|
|
parent::__construct($options, $collaborators); |
|
18
|
|
|
} |
|
19
|
|
|
|
|
20
|
|
|
public function getRedirectUri() |
|
21
|
|
|
{ |
|
22
|
|
|
return $this->redirectUri; |
|
23
|
|
|
} |
|
24
|
|
|
|
|
25
|
|
|
/** |
|
26
|
|
|
* Requests an access token using a specified grant and option set. |
|
27
|
|
|
* |
|
28
|
|
|
* @param mixed $grant |
|
29
|
|
|
* @param array $options |
|
30
|
|
|
* |
|
31
|
|
|
* @return AccessToken |
|
32
|
|
|
*/ |
|
33
|
|
|
public function getAccessToken($grant, array $options = [], array $attributes = []) |
|
34
|
|
|
{ |
|
35
|
|
|
$grant = $this->verifyGrant($grant); |
|
36
|
|
|
|
|
37
|
|
|
$redirectUri = null; |
|
38
|
|
|
if (!empty($attributes) && $this->generator) { |
|
39
|
|
|
$redirectUri = $this->generator->generate($attributes['_route'], $attributes['_route_params'], UrlGeneratorInterface::ABSOLUTE_URL); |
|
40
|
|
|
} |
|
41
|
|
|
|
|
42
|
|
|
$params = [ |
|
43
|
|
|
'client_id' => $this->clientId, |
|
44
|
|
|
'client_secret' => $this->clientSecret, |
|
45
|
|
|
'redirect_uri' => $redirectUri ?: $this->redirectUri, |
|
46
|
|
|
]; |
|
47
|
|
|
|
|
48
|
|
|
$params = $grant->prepareRequestParameters($params, $options); |
|
49
|
|
|
$request = $this->getAccessTokenRequest($params); |
|
50
|
|
|
$response = $this->getParsedResponse($request); |
|
51
|
|
|
$prepared = $this->prepareAccessTokenResponse($response); |
|
52
|
|
|
$token = $this->createAccessToken($prepared, $grant); |
|
53
|
|
|
|
|
54
|
|
|
return $token; |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
|
|
public function setState($state = null) |
|
58
|
|
|
{ |
|
59
|
|
|
$this->state = $state; |
|
60
|
|
|
} |
|
61
|
|
|
} |
|
62
|
|
|
|