OAuth.php
7.83 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
<?php
/**
* Tiny - A PHP Framework For Web Artisans
* @author Tiny <tinylofty@gmail.com>
* @copyright Copyright(c) 2010-2014 http://www.tinyrise.com All rights reserved
* @version 1.0
*/
/**
* description...
*
* @author Tiny
* @class OAuth
*/
abstract class OAuth{
/**
* 版本号
*
* @access protected
* @var string
*/
protected $version = '2.0';
/**
* 应用的appKey
*
* @access protected
* @var string
*/
protected $appKey = '';
/**
* 应用的appSecret
*
* @access protected
* @var string
*/
protected $appSecret = '';
/**
* 授权类型 response_type
*
* @access protected
* @var string
*/
protected $responseType = 'code';
/**
* grant_type 目前只能为 authorization_code
*
* @access protected
* @var string
*/
protected $grantType = 'authorization_code';
/**
* 回调页面URL地址
*
* @access protected
* @var string
*/
protected $callBack = '';
/**
* 获取request_code的额外参数 URL查询字符串格式
* @var srting
*/
/**
* description...
*
* @access protected
* @var unknown
*/
protected $authorize = '';
/**
* request_code请求的URL
*
* @access protected
* @var string
*/
protected $requestCodeURL = '';
/**
* 获取access_token请求的URL
*
* @access protected
* @var string
*/
protected $accessTokenURL = '';
/**
* API根路径
*
* @access protected
* @var string
*/
protected $apiBase = '';
/**
* 授权后获取到的token信息
*
* @access protected
* @var string
*/
protected $token = null;
/**
* 接口类型
*
* @access private
* @var string
*/
private $type = '';
/**
* 配制参数
*
* @access private
* @var array
*/
private $config = array();
/**
* 构造方法,配置应用信息
*
* @access public
* @param array $token
* @return void
*/
public function __construct($token = null){
//取得OAuth的类型
$class_name = get_class($this);
//获取应用配置
$model = new Model('oauth');
$this->config = $model->where("class_name='".$class_name."'")->find();
if(empty($this->config['app_key']) || empty($this->config['app_secret'])){
throw new Exception('请配置您申请的APP_KEY和APP_SECRET');
} else {
$this->appKey = $this->config['app_key'];
$this->appSecret = $this->config['app_secret'];
$this->callBack = Url::fullUrlFormat("/simple/callback/type/$class_name");
$this->token = $token;
}
}
/**
* 请求code URL地址
*
* @access public
* @return string
*/
public function getRequestCodeURL(){
//Oauth 标准参数
$params = array(
'client_id' => $this->appKey,
'redirect_uri' => $this->callBack,
'response_type' => $this->responseType,
);
//获取额外参数
if($this->authorize){
parse_str($this->authorize, $_param);
if(is_array($_param)){
$params = array_merge($params, $_param);
} else {
throw new Exception('authorize配置不正确!');
}
}
return $this->requestCodeURL . '?' . http_build_query($params);
}
/**
* 获取access_token
*
* @access public
* @param string $code 通过第三方获得的code
* @param array $extend 扩展参数
* @return Array
*/
public function getAccessToken($code, $extend = null){
$params = array(
'client_id' => $this->appKey,
'client_secret' => $this->appSecret,
'grant_type' => $this->grantType,
'code' => $code,
'redirect_uri' => $this->callBack,
);
$data = $this->http($this->accessTokenURL, $params, 'POST');
$this->token = $this->parsetoken($data, $extend);
return $this->token;
}
/**
* 参数合并
*
* @access protected
* @param array $params 默认参数
* @param array/string $param 额外参数
* @return array
*/
protected function param($params, $param){
if(is_string($param))
parse_str($param, $param);
return array_merge($params, $param);
}
/**
* 获取指定API请求的URL
*
* @access protected
* @param string $api API名称
* @param string $fix api后缀
* @return string 请求的完整URL
*/
protected function url($api, $fix = ''){
return $this->apiBase . $api . $fix;
}
/**
* 发送HTTP请求方法,目前只支持CURL发送请求
*
* @access protected
* @param string $url 请求URL
* @param array $params 请求参数
* @param string $method 请求方法GET/POST
* @param array $header 请求的头信息
* @param bool $multi 是否传输文件
* @return mixed
*/
protected function http($url, $params, $method = 'GET', $header = array(), $multi = false){
$opts = array(
CURLOPT_TIMEOUT => 30,
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_SSL_VERIFYPEER => false,
CURLOPT_SSL_VERIFYHOST => false,
CURLOPT_HTTPHEADER => $header
);
/* 根据请求类型设置特定参数 */
switch(strtoupper($method)){
case 'GET':
$opts[CURLOPT_URL] = $url . '?' . http_build_query($params);
break;
case 'POST':
//判断是否传输文件
$params = $multi ? $params : http_build_query($params);
$opts[CURLOPT_URL] = $url;
$opts[CURLOPT_POST] = 1;
$opts[CURLOPT_POSTFIELDS] = $params;
break;
default:
throw new Exception('不支持的请求方式!');
}
/* 初始化并执行curl请求 */
$ch = curl_init();
curl_setopt_array($ch, $opts);
$data = curl_exec($ch);
$error = curl_error($ch);
curl_close($ch);
if($error) throw new Exception('请求发生错误:' . $error);
return $data;
}
/**
* 取得配制参数
*
* @access public
* @return array
*/
public function getConfig()
{
return $this->config;
}
/**
* 抽象方法 组装接口调用参数 并调用接口
*
* @access protected
* @param mixed $api 第三方开方的API
* @param string $param 请求参数
* @param string $method 请求的方式 get/post
* @param bool $multi
* @return mixed
*/
abstract protected function call($api, $param = '', $method = 'GET', $multi = false);
/**
* 抽象方法 解析access_token方法请求后的返回值
*
* @access protected
* @param mixed $result token返回值
* @param mixed $extend 扩展参数
* @return array
*/
abstract protected function parsetoken($result, $extend);
/**
* 抽象方法,用户的openID
*
* @access public
* @return string
*/
abstract public function openid();
}