Associate.class.php
12 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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
<?php
/**
* 第三方互联的操作类
*
* @name Facade_Associate
* @package facade
* @copyright yoho.inc
* @version 5.0 (2014-02-10 17:28:08)
* @author fei.hong <fei.hong@yoho.cn>
*/
class Facade_Associate
{
private static $_service = null;
private static $_userinfo = null;
/**
* 第三方互联服务
*
* 单例模式实例化服务层对象
*
* @return object
*/
private static function service()
{
if (null === self::$_service)
{
self::$_service = new Service_Associate();
}
return self::$_service;
}
/**
* 用户信息服务
*
* 单例模式实例化服务层对象
*
* @return object
*/
private static function userinfo()
{
if (null === self::$_userinfo)
{
self::$_userinfo = new Service_Auth();
}
return self::$_userinfo;
}
/**
* 设置第三方的关联信息
*
* @param string $auth 唯一标识(第三方用户)
* @param integer type 第三方类型:3:weibo,4:qq,5:支付宝,6:人人,7:豆瓣,8:facebook,9:instagram
* @param integer $uid 用户的ID
* @param string $token 访问令牌
* @param string $refreshToken 刷新令牌
* @param string $expiresIn 使用周期(访问令牌)
* @return boolean (false:失败, true:成功)
*
* @assert (null, 1, 0, '', '', '0') == false
* @assert ("xxxxx", 1, 3932011, "abcdef123456", "", "123456") == true
*/
public static function set($auth, $type, $uid, $token, $refreshToken, $expiresIn)
{
$result = false;
if ($auth && $type && $uid && $token && $expiresIn)
{
$result = self::service()->set($auth, $type, $uid, $token, $refreshToken, $expiresIn);
}
return $result;
}
/**
* 获取第三方的关联信息
*
* @param string $auth 唯一标识(第三方用户)
* @param integer type 第三方类型:3:weibo,4:qq,5:支付宝,6:人人,7:豆瓣,8:facebook,9:instagram
* @return array
*
* @assert (0, "1") == array()
*/
public static function get($auth, $type)
{
$result = array();
if ($auth && is_numeric($type))
{
$result = self::service()->get($auth, $type);
}
return $result;
}
/**
* 更新第三方的关联信息
*
* @param string $auth 唯一标识(第三方用户)
* @param integer type 第三方类型:3:weibo,4:qq,5:支付宝,6:人人,7:豆瓣,8:facebook,9:instagram
* @param array $param 更新的参数项
* @return boolean (false:失败, true:成功)
*/
public static function upd($auth, $type, $param)
{
$result = array();
if ($auth && $type && $param)
{
$result = self::service()->upd($auth, $type, $param);
}
return $result;
}
/**
* 删除第三方的关联信息
*
* @param string $auth 唯一标识(第三方用户)
* @param integer type 第三方类型:3:weibo,4:qq,5:支付宝,6:人人,7:豆瓣,8:facebook,9:instagram
* @return boolean (false:失败, true:成功)
*/
public static function del($auth, $type)
{
$result = array();
if ($auth && $type)
{
$result = self::service()->del($auth, $type);
}
return $result;
}
/**
* 获取用户的第三方关联信息
*
* @param integer $uid 站内用户ID
* @return array
*/
public static function getByUid($uid)
{
$result = array();
if ($uid)
{
$result = self::service()->getByUid($uid);
}
return $result;
}
/**
* 设置第三方信息,并生成唯一的UID
*
* @param array $param 参数项
* @return integer
*/
public static function setBasicInfo($param)
{
$result = 0;
if ($param)
{
$result = self::service()->setBasicInfo($param);
}
return $result;
}
/**
* 第三方账号登录
*
* @param integer $type 第三方类型:3:weibo,4:qq,5:支付宝,6:人人,7:豆瓣,8:facebook,9:instagram
* @param string $auth 唯一标识(第三方用户)
* @param string $nick 用户的昵称
* @param string $headpic 用户的头像
* @param string $alipay_email 支付宝用户的邮箱或手机号,用于合并有货的老数据,必须的参数
* @param type $fields 需要返回的信息
* @param type $scope 允许返回的信息集合
* @return array
*/
public static function login($type, $auth, $nick, $headpic, $alipayEmail, $fields, $scope, $appId)
{
$result = array();
do
{
/* 校验传递的参数是否有效 */
if (!is_numeric($type) || $type > 11 || !$auth || !is_string($fields))
{
$result = Config_Code::$error['missing_parameter'];
break;
}
$authInfo = array();
$isOld = false;
$isAlipay = false;
// 获取有货支付宝老账号信息
if (!empty($alipayEmail) && $type == Facade_Auth::AUTH_TYPE_ALIPAY)
{
$isAlipay = true;
// 检查支付宝类型
$authInfo = self::userinfo()->getAuthByTypeAndAid($type, $alipayEmail);
// 检查是邮箱或手机号类型
if (empty($authInfo))
{
$isOld = true;
$genType = is_numeric($alipayEmail) ? Facade_Auth::AUTH_TYPE_MOBILE : Facade_Auth::AUTH_TYPE_EMAIL;
$authInfo = self::userinfo()->getAuthByTypeAndAid($genType, $alipayEmail);
}
}
// 获取其它第三方的老账号信息
elseif (!empty($alipayEmail))
{
$isAlipay = true;
$isOld = true;
$genType = Facade_Auth::AUTH_TYPE_EMAIL;
$authInfo = self::userinfo()->getAuthByTypeAndAid($genType, $alipayEmail);
}
// 当不是有货时则需要先检查邮箱账号,新浪微博账号除外,因SHOW的新浪微博账号已有用户发表的数据
elseif ($appId != '1392109259' && $type != Facade_Auth::AUTH_TYPE_WEIBO)
{
$format = '';
switch ($type)
{
case Facade_Auth::AUTH_TYPE_QQ:
$format = 'qq__%s@%s';
break;
case Facade_Auth::AUTH_TYPE_RENREN:
$format = 'renren__%s@%s';
break;
case Facade_Auth::AUTH_TYPE_DOUBAN:
$format = 'douban__%s@%s';
break;
}
if ($format !== '')
{
$isAlipay = true;
$isOld = true;
$genType = Facade_Auth::AUTH_TYPE_EMAIL;
$alipayEmail = sprintf($format, $auth, 'yohoinc.com');
$authInfo = self::userinfo()->getAuthByTypeAndAid($genType, $alipayEmail);
if (empty($authInfo))
{
$alipayEmail = sprintf($format, $auth, 'yohoe.cn');
$authInfo = self::userinfo()->getAuthByTypeAndAid($genType, $alipayEmail);
}
}
}
if (empty($authInfo))
{
/*检查老的facebook账号是否存在新的facebook的openid*/
if($type==Facade_Auth::AUTH_TYPE_FACEBOOK)
{
$oldOpenid = self::userinfo()->getFacebookRela($auth);
if($oldOpenid)
{
$auth = $oldOpenid;
}
}
$authInfo = self::userinfo()->getAuthByTypeAndAid($type, $auth);
}
elseif ($isAlipay)
{
// 邮箱登录或手机登录方式
if ($isOld)
{
self::userinfo()->setAuth($authInfo['uid'], $type, $auth);
}
// 第三方登录方式
else
{
self::userinfo()->updAuth($authInfo['uid'], $type, $authInfo['auth_id'], $auth);
}
}
/* 检验并获取认证信息 */
if ($authInfo && isset($authInfo['uid']))
{
$userinfo = self::userinfo()->getUserinfo($authInfo['uid'], $fields, $scope);
$result = empty($userinfo) ? array('uid' => $authInfo['uid'], 'app_id' => $appId) : ((isset($userinfo['state']) && !$userinfo['state']) ? Config_Code::$error['user_disabled'] : $userinfo);
break;
}
/* 生成新用户并保存登录验证信息 */
$uid = self::userinfo()->setUserinfo(array('nick' => $nick, 'gender' => 3, 'headpic' => $headpic, 'app_id' => $appId));
if (!$uid || !self::userinfo()->setAuth($uid, $type, $auth) )
{
$result = Config_Code::$error['account_set'];
break;
}
/* 尝试获取订阅的用户信息 */
$result = self::userinfo()->getUserinfo($uid, $fields, $scope);
if (!$result)
{
$result = array('uid' => $authInfo['uid'], 'app_id' => $appId);
break;
}
} while (false);
return $result;
}
/**
* 绑定手机号或邮箱
*
* @param integer $uid 用户的ID
* @param string $account 账号
* @param string $password 密码
* @return array
*/
public static function bind($uid, $account, $password)
{
$result = array();
do
{
/* 检查是否存在登录用户 */
if (!$uid)
{
$result = Config_Code::$error['user_no_login'];
break;
}
/* 验证账号是否为空 */
if (empty($account))
{
$result = Config_Code::$error['account_format'];
break;
}
/* 验证账号的类型 */
$authType = null;
if (filter_var($account, FILTER_VALIDATE_EMAIL))
{
$authType = Facade_Auth::AUTH_TYPE_EMAIL;
}
elseif (preg_match('/^1[3|4|5|8][0-9]\d{8}$/', $account))
{
$authType = Facade_Auth::AUTH_TYPE_MOBILE;
}
else
{
$result = Config_Code::$error['account_format'];
break;
}
/* 验证密码 */
if (empty($password) || strlen($password) < 6)
{
$result = Config_Code::$error['pwd_format'];
break;
}
/* 获取用户的所有口令 */
$userInfo = self::userinfo()->getAllAuth($uid);
if (empty($userInfo))
{
$result = Config_Code::$error['user_not_exist'];
break;
}
/* 生成并保存登录密码 */
$pwdInfo = Facade_Auth::buildPassword($password);
$status = self::userinfo()->setPassword($uid, $pwdInfo['password']);
if (!$status)
{
$result = Config_Code::$error['system'];
break;
}
$result = Config_Code::$success['user_register'];
}
while (false);
return $result;
}
}