forked from xjflyttp/yii2-oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeixinMpAuth.php
159 lines (141 loc) · 4.55 KB
/
WeixinMpAuth.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?php
namespace xj\oauth;
use Yii;
use xj\oauth\weixin\models\MpTicketResult;
use xj\oauth\weixin\models\MpAccessTokenResult;
use xj\oauth\exception\WeixinAccessTokenException;
use xj\oauth\exception\WeixinTicketException;
use yii\authclient\OAuth2;
use yii\authclient\OAuthToken;
use yii\base\Exception;
/**
* Weixin 开放平台
* @author xjflyttp <[email protected]>
* @see http://mp.weixin.qq.com/wiki/17/c0f37d5704f0b64713d5d2c37b468d75.html
*/
class WeixinMpAuth extends OAuth2 implements IAuth
{
public $authUrl = 'https://open.weixin.qq.com/connect/oauth2/authorize';
public $tokenUrl = 'https://api.weixin.qq.com/sns/oauth2/access_token';
public $apiBaseUrl = 'https://api.weixin.qq.com';
public $scope = 'snsapi_base';
/**
* Composes user authorization URL.
* @param array $params additional auth GET params.
* @return string authorization URL.
*/
public function buildAuthUrl(array $params = [])
{
$defaultParams = [
'appid' => $this->clientId,
'redirect_uri' => $this->getReturnUrl(),
'response_type' => 'code',
];
if (!empty($this->scope)) {
$defaultParams['scope'] = $this->scope;
}
return $this->composeUrl($this->authUrl, array_merge($defaultParams, $params));
}
/**
* Fetches access token from authorization code.
* @param string $authCode authorization code, usually comes at $_GET['code'].
* @param array $params additional request params.
* @return OAuthToken access token.
*/
public function fetchAccessToken($authCode, array $params = [])
{
$defaultParams = [
'appid' => $this->clientId,
'secret' => $this->clientSecret,
'code' => $authCode,
'grant_type' => 'authorization_code',
];
$response = $this->sendRequest('POST', $this->tokenUrl, array_merge($defaultParams, $params));
$token = $this->createToken(['params' => $response]);
$this->setAccessToken($token);
return $token;
}
/**
* @inheritdoc
*/
protected function apiInternal($accessToken, $url, $method, array $params, array $headers)
{
$params['access_token'] = $accessToken->getToken();
$params['openid'] = $this->getOpenid();
return $this->sendRequest($method, $url, $params, $headers);
}
/**
*
* @return []
*/
protected function initUserAttributes()
{
$tokenParams = $this->getAccessToken()->params;
return [
'openid' => isset($tokenParams['openid']) ? $tokenParams['openid'] : '',
'unionid' => isset($tokenParams['unionid']) ? $tokenParams['unionid'] : '',
];
}
/**
* You must have grant scope=snsapi_userinfo
* @return []
* @see https://mp.weixin.qq.com/wiki/17/c0f37d5704f0b64713d5d2c37b468d75.html
*/
public function getUserInfo()
{
return $this->api('sns/userinfo', 'GET', ['openid' => $this->getOpenid()]);
}
/**
* @return string
*/
public function getOpenid()
{
$attributes = $this->getUserAttributes();
return $attributes['openid'];
}
protected function defaultName()
{
return 'weixin-mp';
}
protected function defaultTitle()
{
return 'WeixinMp';
}
/**
* 获取公众号AccessToken
* @return MpAccessTokenResult
* @throws WeixinAccessTokenException
*/
public function getMpAccessToken()
{
try {
$result = $this->sendRequest('GET', $this->apiBaseUrl . '/cgi-bin/token', [
'grant_type' => 'client_credential',
'appid' => $this->clientId,
'secret' => $this->clientSecret,
]);
return new MpAccessTokenResult($result);
} catch (Exception $e) {
throw new WeixinAccessTokenException($e->getMessage(), $e->getCode());
}
}
/**
* 获取jsapi|wx_card Ticket
* @param string $accessToken
* @param string $type jsapi|wx_card
* @return MpTicketResult
* @throws WeixinTicketException
*/
public function getTicket($accessToken, $type = 'jsapi')
{
try {
$result = $this->sendRequest('GET', $this->apiBaseUrl . '/cgi-bin/ticket/getticket', [
'access_token' => $accessToken,
'type' => $type,
]);
return new MpTicketResult($result);
} catch (Exception $e) {
throw new WeixinTicketException($e->getMessage(), $e->getCode());
}
}
}