-
Notifications
You must be signed in to change notification settings - Fork 12
/
Provider.php
executable file
·131 lines (112 loc) · 3.37 KB
/
Provider.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?php
namespace SocialiteProviders\WeixinWeb;
use GuzzleHttp\RequestOptions;
use Illuminate\Support\Arr;
use SocialiteProviders\Manager\OAuth2\AbstractProvider;
use SocialiteProviders\Manager\OAuth2\User;
class Provider extends AbstractProvider
{
public const IDENTIFIER = 'WEIXINWEB';
/**
* @var string
*/
protected $openId;
protected $scopes = ['snsapi_login'];
/**
* set Open Id.
*
* @param string $openId
*/
public function setOpenId($openId)
{
$this->openId = $openId;
}
protected function getAuthUrl($state): string
{
//return $this->buildAuthUrlFromBase('https://open.weixin.qq.com/connect/qrconnect', $state);
return $this->buildAuthUrlFromBase($this->getConfig(
'auth_base_uri',
'https://open.weixin.qq.com/connect/qrconnect'
), $state);
}
/**
* {@inheritdoc}.
*/
protected function buildAuthUrlFromBase($url, $state)
{
$query = http_build_query($this->getCodeFields($state), '', '&', $this->encodingType);
return $url.'?'.$query.'#wechat_redirect';
}
/**
* {@inheritdoc}.
*/
protected function getCodeFields($state = null)
{
return [
'appid' => $this->clientId, 'redirect_uri' => $this->redirectUrl,
'response_type' => 'code',
'scope' => $this->formatScopes($this->scopes, $this->scopeSeparator),
'state' => $state,
];
}
protected function getTokenUrl(): string
{
return 'https://api.weixin.qq.com/sns/oauth2/access_token';
}
/**
* {@inheritdoc}.
*/
protected function getUserByToken($token)
{
$response = $this->getHttpClient()->get('https://api.weixin.qq.com/sns/userinfo', [
RequestOptions::QUERY => [
'access_token' => $token,
'openid' => $this->openId,
'lang' => 'zh_CN',
],
]);
return json_decode((string) $response->getBody(), true);
}
/**
* {@inheritdoc}.
*/
protected function mapUserToObject(array $user)
{
return (new User)->setRaw($user)->map([
'id' => Arr::get($user, 'openid'),
'unionid' => Arr::get($user, 'unionid'),
'nickname' => $user['nickname'],
'avatar' => $user['headimgurl'],
'name' => null, 'email' => null,
]);
}
/**
* {@inheritdoc}.
*/
protected function getTokenFields($code)
{
return [
'appid' => $this->clientId,
'code' => $code,
'grant_type' => 'authorization_code',
'secret' => $this->clientSecret,
];
}
/**
* {@inheritdoc}.
*/
public function getAccessTokenResponse($code)
{
$response = $this->getHttpClient()->get($this->getTokenUrl(), [
RequestOptions::QUERY => $this->getTokenFields($code),
]);
$this->credentialsResponseBody = json_decode((string) $response->getBody(), true);
$this->openId = $this->credentialsResponseBody['openid'];
//return $this->parseAccessToken($response->getBody());
return $this->credentialsResponseBody;
}
public static function additionalConfigKeys(): array
{
return ['auth_base_uri'];
}
}