1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace SocialiteProviders\Manager\OAuth2; |
4
|
|
|
|
5
|
|
|
use Illuminate\Support\Arr; |
6
|
|
|
use GuzzleHttp\ClientInterface; |
7
|
|
|
use Laravel\Socialite\Two\InvalidStateException; |
8
|
|
|
use SocialiteProviders\Manager\Contracts\OAuth2\ProviderInterface; |
9
|
|
|
use SocialiteProviders\Manager\SocialiteWasCalled; |
10
|
|
|
use SocialiteProviders\Manager\ConfigTrait; |
11
|
|
|
use Laravel\Socialite\Two\AbstractProvider as BaseProvider; |
12
|
|
|
|
13
|
|
|
abstract class AbstractProvider extends BaseProvider implements ProviderInterface |
14
|
|
|
{ |
15
|
|
|
use ConfigTrait; |
16
|
|
|
|
17
|
|
|
/** |
18
|
1 |
|
* @var array |
19
|
|
|
*/ |
20
|
1 |
|
protected $credentialsResponseBody; |
21
|
|
|
|
22
|
|
|
public static function serviceContainerKey($providerName) |
23
|
7 |
|
{ |
24
|
|
|
return SocialiteWasCalled::SERVICE_CONTAINER_PREFIX.$providerName; |
25
|
7 |
|
} |
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* @return \SocialiteProviders\Manager\OAuth2\User |
29
|
|
|
*/ |
30
|
|
|
public function user() |
31
|
|
|
{ |
32
|
|
|
if ($this->hasInvalidState()) { |
33
|
1 |
|
throw new InvalidStateException(); |
34
|
|
|
} |
35
|
1 |
|
|
36
|
1 |
|
$response = $this->getAccessTokenResponse($this->getCode()); |
|
|
|
|
37
|
1 |
|
|
38
|
1 |
|
$user = $this->mapUserToObject($this->getUserByToken( |
39
|
|
|
$token = $this->parseAccessToken($response) |
40
|
1 |
|
)); |
41
|
|
|
|
42
|
|
|
$this->credentialsResponseBody = $response; |
43
|
|
|
|
44
|
|
|
if ($user instanceof User) { |
45
|
|
|
return $user->setAccessTokenResponseBody($this->credentialsResponseBody); |
46
|
5 |
|
} |
47
|
|
|
|
48
|
5 |
|
return $user->setToken($token) |
|
|
|
|
49
|
2 |
|
->setRefreshToken(Arr::get($response, 'refresh_token')) |
50
|
|
|
->setExpiresIn(Arr::get($response, 'expires_in')); |
51
|
|
|
} |
52
|
3 |
|
|
53
|
3 |
|
/** |
54
|
3 |
|
* Get the access token from the token response body. |
55
|
|
|
* |
56
|
3 |
|
* @param string $body |
57
|
|
|
* |
58
|
3 |
|
* @return string |
59
|
3 |
|
*/ |
60
|
|
|
protected function parseAccessToken($body) |
61
|
|
|
{ |
62
|
|
|
return Arr::get($body, 'access_token'); |
|
|
|
|
63
|
|
|
} |
64
|
|
|
} |
65
|
|
|
|
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.