42 lines
2.2 KiB
PHP
42 lines
2.2 KiB
PHP
<?php
|
|
/*
|
|
Name:微信绑定
|
|
Version:1.0
|
|
Author:乐酷
|
|
Author QQ:3178156778
|
|
Author Url:shouq.sujie520.cn
|
|
*/
|
|
if (!isset($app_res) or !is_array($app_res)) out(100); //如果需要调用应用配置请先判断是否加载app配置
|
|
if ($app_res['logon_way'] == 1) out(164, $app_res); //不是账号登录方式不允许使用当前操作
|
|
|
|
$token = isset($data_arr['token']) && !empty($data_arr['token']) ? purge($data_arr['token']) : out(125, $app_res); //请输TOKEN
|
|
$openid = isset($data_arr['openid']) && !empty($data_arr['openid']) ? purge($data_arr['openid']) : out(157, $app_res); //请输入openid
|
|
$access_token = isset($data_arr['access_token']) && !empty($data_arr['access_token']) ? purge($data_arr['access_token']) : out(157, $app_res); //请输入access_token
|
|
|
|
|
|
$res_logon = Db::table('user_logon', 'as logon')->field('U.*')->JOIN('user', 'as U', 'logon.uid=U.id')->where('logon.appid', $appid)->where('U.appid', $appid)->where('logon.token', $token)->find(); //false
|
|
if (!$res_logon) out(127, $app_res); //TOKEN不存在或已失效
|
|
if ($res_logon['ban'] > time() || $res_logon['ban'] == 999999999) out(114, $res_logon['ban_notice'], $app_res); //账号被禁用
|
|
Db::table('user_logon')->where('token', $token)->update(['last_t' => time()]); //记录活动时间
|
|
|
|
$res_wx = Db::table('user')->where(['openid_wx' => $openid, 'appid' => $appid])->find(); //false
|
|
if ($res_wx) out(160, $app_res); //已绑定其他账号
|
|
|
|
$get_data = ['access_token' => $access_token, 'openid' => $openid, 'lang' => 'zh_CN'];
|
|
$wx_data = http_gets('https://api.weixin.qq.com/sns/userinfo', $get_data);
|
|
$json_wx = json_decode($wx_data, true);
|
|
if (isset($json_wx['errcode'])) out(158, $app_res); //错误的身份信息
|
|
|
|
$res = Db::table('user')->where('id', $res_logon['id'])->update(['openid_wx' => $openid]);
|
|
if ($res) {
|
|
if (defined('USER_LOG') && USER_LOG == 1) {
|
|
Db::table('log')->add(['uid' => $res_logon['id'], 'type' => $act, 'status' => 200, 'time' => time(), 'ip' => getip(), 'appid' => $appid]);
|
|
} //记录日志
|
|
out(200, '绑定成功', $app_res);
|
|
} else {
|
|
if (defined('USER_LOG') && USER_LOG == 1) {
|
|
Db::table('log')->add(['uid' => $res_logon['id'], 'type' => $act, 'status' => 201, 'time' => time(), 'ip' => getip(), 'appid' => $appid]);
|
|
} //记录日志
|
|
out(201, '绑定成功', $app_res);
|
|
}
|