error(__('Invalid parameters')); } if (!Validate::is($account, 'email')) { $this->error(__('Email is incorrect')); } $ret = $this->auth->login($account, $password); if ($ret) { $this->success(__('Logged in successful'), $this->auth->getUserinfo_simple()); } else { $this->error($this->auth->getError()); } } //邮箱注册 public function emailregister() { $account = input('account'); $captcha = input('captcha'); $password = input('password'); if (!$account || !$captcha || !$password) { $this->error(__('Invalid parameters')); } if (!Validate::is($account, 'email')) { $this->error(__('Email is incorrect')); } $ret = Ems::check($account, $captcha, 'register'); if (!$ret) { $this->error(__('Captcha is incorrect')); } $extend = [ 'register_from' => input('register_from',''), 'gender' => -1 ]; $ret = $this->auth->register('',$password,$account,'', $extend); if ($ret) { Ems::flush($account); $this->success('注册成功', $this->auth->getUserinfo_simple()); } else { $this->error($this->auth->getError()); } } /** * 手机验证码登录 + 注册 * * @ApiMethod (POST) * @param string $mobile 手机号 * @param string $captcha 验证码 */ public function mobilelogin() { $mobile = input('mobile'); $captcha = input('captcha'); if (!$mobile || !$captcha) { $this->error(__('Invalid parameters')); } if (!Validate::regex($mobile, "^1\d{10}$")) { $this->error(__('Mobile is incorrect')); } if (!Sms::check($mobile, $captcha, 'mobilelogin')) { $this->error(__('Captcha is incorrect')); } $user = \app\common\model\User::getByMobile($mobile); if ($user) { if ($user->status == -1) { $this->error('账户已注销'); } if (!in_array($user->status,[1,2])) { $this->error(__('Account is locked')); } if ($user->frozentime > time()) { $this->error('您的账号已被封禁至' . date('Y-m-d H:i')); } //如果已经有账号则直接登录 $ret = $this->auth->direct($user->id); } else { $extend = [ 'register_from' => input('register_from',''), 'gender' => -1 ]; $ret = $this->auth->register('', '', '', $mobile, $extend); } if ($ret) { Sms::flush($mobile, 'mobilelogin'); $this->success(__('Logged in successful'), $this->auth->getUserinfo_simple()); } else { $this->error($this->auth->getError()); } } //注册设置性别 public function setgender() { $user_id = $this->auth->id; $gender = input('gender', -1, 'intval'); //性别:1=男,0=女 if (!in_array($gender, [1, 0])) { $this->error('性别错误'); } $edit_data['gender'] = $gender; $edit_data['avatar'] = $gender == 1 ? config('avatar_boy') : config('avatar_girl'); //头像 $rs = Db::name('user')->where(['id' => $user_id])->update($edit_data); if ($rs === false) { $this->error('您的网络开小差啦~'); } //$data = $this->userInfo('return'); $data['gender'] = $edit_data['gender']; $data['avatar'] = $edit_data['avatar']; $this->success('success', $data); } //刷新随机昵称 public function get_rand_nick_name(){ $nickname = $this->auth->get_rand_nick_name(); $this->success('success', $nickname); } //注册完善资料 public function perfect_info() { $avatar = input('avatar', '', 'trim'); //头像 $nickname = input('nickname', '', 'trim'); //昵称 $birthday = input('birthday', '', 'strtotime'); //生日 $hometown_cityid = input('hometown_cityid', '', 'trim'); //城市id $bio = input('bio', '', 'trim'); //个性签名 $hobby = input('hobby', '', 'trim'); //爱好 $marital = input('marital', '', 'trim'); //婚姻 $introcode = input('introcode', '', 'trim'); //邀请码 $data = []; if ($avatar) { $data['avatar'] = $avatar; } if ($nickname !== '') { if (iconv_strlen($nickname, 'utf-8') > 10) { $this->error('昵称最多10个字~'); } $data['nickname'] = $nickname; } if ($birthday) { $data['birthday'] = $birthday; } if ($hometown_cityid) { $count = Db::name('area')->where('id', $hometown_cityid)->count('id'); if (!$count) { $this->error('城市不存在'); } $data['hometown_cityid'] = $hometown_cityid; } if ($bio) { $data['bio'] = $bio; } if ($hobby) { $data['hobby'] = $hobby; } if ($marital) { $data['marital'] = $marital; } if ($introcode && !$this->auth->intro_uid) { $intro_user = Db::name('user')->field('id, intro_uid')->where('introcode', $introcode)->find(); if ($intro_user && $intro_user['id'] != $this->auth->id && $intro_user['intro_uid'] != $this->auth->id) { $data['intro_uid'] = $intro_user['id']; $data['invite_time'] = time(); } } //开启事务 Db::startTrans(); $update_rs = Db::name('user')->where('id',$this->auth->id)->update($data); if($update_rs === false){ Db::rollback(); $this->error('修改失败'); } //给上级发放钻石 if(isset($data['intro_uid'])){ $intro_gold = config('site.new_user_intro_gold'); if($intro_gold > 0){ $rs_wallet = model('wallet')->lockChangeAccountRemain($data['intro_uid'], 0,'gold',$intro_gold,34,'邀请'.$this->auth->username.'注册奖励'); if($rs_wallet['status'] === false){ Db::rollback(); $this->error('邀请新人奖励赠送失败'); } } } //上传头像加5金币 if(isset($data['avatar'])){ $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,19); if($task_rs === false){ Db::rollback(); $this->error('完成任务赠送奖励失败'); } } if (isset($data['birthday'])) { //完成设置生日 +5金币 $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,1); if($task_rs === false){ Db::rollback(); $this->error('完成任务赠送奖励失败'); } } Db::commit(); $this->success('修改成功'); } //用户详细资料 public function userInfo($type = 1){ $info = $this->auth->getUserinfo(); if($type == 'return'){ return $info; } $this->success(__('success'),$info); } /** * 修改会员个人信息 * * @ApiMethod (POST) * @param string $avatar 头像地址 * @param string $username 用户名 * @param string $nickname 昵称 * @param string $bio 个人简介 */ public function profile() { $field_array = ['nickname','introcode',/*'gender',*/'birthday','height','weight','bio','audio_bio','avatar','photo_images','education','hobby','job','marital','tag','wages','hometown_cityid','hide_is_finishinfo',/*'wechat_account',*/'character','constellation','stature','is_appointment', 'greet_voice', 'greet_chat', 'is_cohabit', 'live', 'is_house', 'car', 'chest', 'waist']; $data = []; foreach($field_array as $key => $field){ if(!input('?'.$field)){ continue; } $newone = input($field); if($field == 'avatar'){ // if ($this->auth->real_status == 1) { //$this->error('您已经真人认证不能修改头像~'); // die; // } $newone = input('avatar', '', 'trim,strip_tags,htmlspecialchars'); } if($field == 'photo_images'){ $newone = input('photo_images', '', 'trim,strip_tags,htmlspecialchars'); } $data[$field] = $newone; } if(isset($data['birthday'])){ $data['birthday'] = strtotime($data['birthday']); } if(isset($data['avatar'])){ //$data['real_status'] = -1; //或许应该改成0。性别不能改所以不需要 } if(isset($data['introcode'])){ if ($this->auth->intro_uid != 0) { $this->error('邀请人不可修改~'); } $intro_user = Db::name('user')->field('id, intro_uid')->where('introcode', $data['introcode'])->find(); if(!$intro_user){ $this->error('不存在的邀请人'); } if ($intro_user['id'] == $this->auth->id) { $this->error('不能填写自己邀请码'); } if ($intro_user['intro_uid'] == $this->auth->id) { $this->error('不能填写下级邀请码'); } unset($data['introcode']);//别人的邀请码,不能改了自己的 $data['intro_uid'] = $intro_user['id']; $data['invite_time'] = time(); } //dump($data); if(empty($data)){ $this->error('没有任何改变'); } Db::startTrans(); $userData = Db::name('user')->field('avatar,gender,status')->where('id',$this->auth->id)->find(); if (isset($data['avatar']) && !empty($data['avatar']) && $userData['status'] == 2) {//隐藏 $boyAvatar = config('avatar_boy'); $girlAvatar = config('avatar_girl'); if ($userData['gender'] == 1 && $data['avatar'] != $boyAvatar) { $data['status'] = 1;//更新为正常 } elseif ($userData['gender'] == 0 && $data['avatar'] != $girlAvatar) { $data['status'] = 1;//更新为正常 } } $update_rs = Db::name('user')->where('id',$this->auth->id)->update($data); if($update_rs === false){ Db::rollback(); $this->error('修改资料失败'); } //给上级发放钻石 if(isset($data['intro_uid'])){ $intro_gold = config('site.new_user_intro_gold'); if($intro_gold > 0){ $rs_wallet = model('wallet')->lockChangeAccountRemain($data['intro_uid'], 0,'gold',$intro_gold,34,'邀请'.$this->auth->username.'注册奖励'); if($rs_wallet['status'] === false){ Db::rollback(); $this->error('邀请新人奖励赠送失败'); } } } //tag任务赠送金币 //上传头像加5金币 if(isset($data['avatar'])){ $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,19); if($task_rs === false){ Db::rollback(); $this->error('完成任务赠送奖励失败'); } } //上传生日 +5金币 if (isset($data['birthday'])) { //完成设置生日 +5金币 $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,1); if($task_rs === false){ Db::rollback(); $this->error('完成任务赠送奖励失败'); } } //上传个性签名 5金币 if(isset($data['bio'])){ $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,2); if($task_rs === false){ Db::rollback(); $this->error('完成任务赠送奖励失败'); } } //上传本人语音介绍 10金币 if(isset($data['audio_bio'])){ $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,21); if($task_rs === false){ Db::rollback(); $this->error('完成任务赠送奖励失败'); } } //上传本人五张照片 10金币 if(isset($data['photo_images'])){ $photo_images_num = count(explode(',',$data['photo_images'])) + count(explode(',',$this->auth->photo_images)); if ($photo_images_num >= 5) { $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id, 5); if ($task_rs === false) { Db::rollback(); $this->error('完成任务赠送奖励失败'); } } } Db::commit(); $this->success(); } /** * 退出登录 * @ApiMethod (POST) */ public function logout() { if (!$this->request->isPost()) { $this->error(__('Invalid parameters')); } //退出im $tenIm = new Tenim(); $tenIm->loginoutim($this->auth->id); //修改用户活跃0 Db::name('user')->where('id',$this->auth->id)->update(['is_active' => 0]); $this->auth->logout(); $this->success(__('Logout successful')); } /** * 重置密码 * * @ApiMethod (POST) * @param string $mobile 手机号 * @param string $newpassword 新密码 * @param string $captcha 验证码 */ public function resetpwd() { //$type = input("type"); $type = 'email'; $mobile = input("mobile"); $email = input("email"); $newpassword = input("newpassword"); $captcha = input("captcha"); if (!$newpassword || !$captcha) { $this->error(__('Invalid parameters')); } if ($type == 'mobile') { if (!Validate::regex($mobile, "^1\d{10}$")) { $this->error(__('Mobile is incorrect')); } $user = \app\common\model\User::getByMobile($mobile); if (!$user) { $this->error(__('User not found')); } $ret = Sms::check($mobile, $captcha, 'resetpwd'); if (!$ret) { $this->error(__('Captcha is incorrect')); } Sms::flush($mobile, 'resetpwd'); } else { if (!Validate::is($email, "email")) { $this->error(__('Email is incorrect')); } $user = \app\common\model\User::getByEmail($email); if (!$user) { $this->error(__('User not found')); } $ret = Ems::check($email, $captcha, 'resetpwd'); if (!$ret) { $this->error(__('Captcha is incorrect')); } Ems::flush($email, 'resetpwd'); } //模拟一次登录 $this->auth->direct($user->id); $ret = $this->auth->changepwd($newpassword, '', true); if ($ret) { $this->success(__('Reset password successful')); } else { $this->error($this->auth->getError()); } } /** * 微信注册来的,绑定手机号 * * @ApiMethod (POST) * @param string $mobile 手机号 * @param string $captcha 验证码 */ public function bindmobile() { $user = $this->auth->getUser(); $mobile = $this->request->request('mobile'); $captcha = $this->request->request('captcha'); if(!empty($this->auth->mobile)){ $this->error('已经绑定了手机号'); } if (!$mobile || !$captcha) { $this->error(__('Invalid parameters')); } if (!Validate::regex($mobile, "^1\d{10}$")) { $this->error(__('Mobile is incorrect')); } if (\app\common\model\User::where('mobile', $mobile)->find()) { $this->error('该手机号已被其他用户绑定'); } $result = Sms::check($mobile, $captcha, 'changemobile'); if (!$result) { $this->error(__('Captcha is incorrect')); } $user->mobile = $mobile; $user->save(); Sms::flush($mobile, 'changemobile'); //手机号奖励 $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,18); if($task_rs === false){ Db::rollback(); return false; } $this->success('success',$this->userInfo('return')); } //注销配置 public function cancleconfig(){ $rs = [ 'rule' => config('site.user_cancle_rules'), 'reason' => [ '想换个新账号', '没有聊得来的', '不想玩了', '其他原因', ], ]; $this->success(1,$rs); } //假注销 public function cancleUser(){ if (!$this->request->isPost()) { $this->error(__('Invalid parameters')); } //退出im $tenIm = new Tenim(); $tenIm->loginoutim($this->auth->id); $data = [ 'status' => -1, 'mobile' => 'close_'.$this->auth->mobile, 'wechat_openid' => 'close_'.$this->auth->wechat_openid, ]; Db::name('user')->where('id',$this->auth->id)->update($data); $this->auth->logout(); $this->success('注销成功'); } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /** * 手机验证码验证 * * @ApiMethod (POST) * @param string $mobile 手机号 * @param string $captcha 验证码 */ /*public function mobilecheck() { $mobile = input('mobile'); $captcha = input('captcha'); if (!$mobile || !$captcha) { $this->error(__('Invalid parameters')); } if (!Validate::regex($mobile, "^1\d{10}$")) { $this->error(__('Mobile is incorrect')); } if (!Sms::check($mobile, $captcha, 'mobilelogin')) { $this->error(__('Captcha is incorrect')); } $this->success('验证通过'); }*/ /** * 手机验证码注册 * * @ApiMethod (POST) * @param string $mobile 手机号 * @param string $captcha 验证码 * @param string $gender 性别:1=男,0=女 */ /*public function mobileregister() { $mobile = input('mobile'); $captcha = input('captcha'); $gender = input('gender', -1, 'intval'); //性别:1=男,0=女 if (!$mobile || !$captcha) { $this->error(__('Invalid parameters')); } if (!Validate::regex($mobile, "^1\d{10}$")) { $this->error(__('Mobile is incorrect')); } if (!Sms::check($mobile, $captcha, 'mobilelogin')) { $this->error(__('Captcha is incorrect')); } if (!in_array($gender, [1, 0])) { $this->error('性别错误'); } $user = \app\common\model\User::getByMobile($mobile); if ($user) { $this->error('账号已经存在,请直接登录'); if ($user->status == -1) { $this->error('账户已注销'); } if (!in_array($user->status,[1,2])) { $this->error(__('Account is locked')); } //如果已经有账号则直接登录 $ret = $this->auth->direct($user->id); } else { $extend = [ 'register_from' => input('register_from',''), 'gender' => $gender ]; $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, $extend); } if ($ret) { Sms::flush($mobile, 'mobilelogin'); $data = $this->userInfo('return'); $this->success(__('Logged in successful'), $data); } else { $this->error($this->auth->getError()); } }*/ /** * 运营商一键登录 */ /*public function onLogin() { $accessToken = input('accessToken');// 运营商预取号获取到的token $token = input('tokenT');// 易盾返回的token if (!$accessToken || !$token) { $this->error("参数获取失败!"); } $params = array( // 运营商预取号获取到的token "accessToken" => $accessToken, // 易盾返回的token "token" => $token ); // 获取密钥配置 $configInfo = config("onLogin"); $onlogin = new onlogin($configInfo["secretid"], $configInfo["secretkey"], $configInfo["businessid"]); $onret = $onlogin->check($params); // $ret = []; // $ret["code"] = 200; // $ret["msg"] = "ok"; // $ret["data"] = [ // "phone" => "17574504021", // "resultCode" => 0 // ]; if ($onret["code"] == 200) { $mobile = $onret["data"]["phone"]; if (empty($mobile)) { // 取号失败,建议进行二次验证,例如短信验证码 $this->error("取号登录失败,请用验证码方式登录!"); } else { // 取号成功, 执行登录等流程 // 用户登录逻辑 === 开始 $user = \app\common\model\User::getByMobile($mobile); if ($user) { if (!in_array($user->status,[1,2])) { $this->error(__('Account is locked')); } if ($user->frozentime > time()) { $this->error('您的账号已被封禁至' . date('Y-m-d H:i')); } //如果已经有账号则直接登录 $ret = $this->auth->direct($user->id); $is_register = 0; } else { $extend = [ 'register_from' => input('register_from',''), 'gender' => -1 ]; $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, $extend); $is_register = 1; } if ($ret) { $this->success(__('Logged in successful'), $this->auth->getUserinfo()); } else { $this->error($this->auth->getError()); } // 用户登录逻辑 === 结束 } } else { $this->error("登录失败,请用验证码方式登录!"); } }*/ /** * 运营商一键登录注册 */ /*public function onregister() { $accessToken = input('accessToken');// 运营商预取号获取到的token $token = input('tokenT');// 易盾返回的token $gender = input('gender', -1, 'intval'); //性别:1=男,0=女 if (!$accessToken || !$token) { $this->error("参数获取失败!"); } if (!in_array($gender, [1, 0])) { $this->error('性别错误'); } $params = array( // 运营商预取号获取到的token "accessToken" => $accessToken, // 易盾返回的token "token" => $token ); // 获取密钥配置 $configInfo = config("onLogin"); $onlogin = new onlogin($configInfo["secretid"], $configInfo["secretkey"], $configInfo["businessid"]); $onret = $onlogin->check($params); // $ret = []; // $ret["code"] = 200; // $ret["msg"] = "ok"; // $ret["data"] = [ // "phone" => "17574504021", // "resultCode" => 0 // ]; if ($onret["code"] == 200) { $mobile = $onret["data"]["phone"]; if (empty($mobile)) { // 取号失败,建议进行二次验证,例如短信验证码 $this->error("取号登录失败,请用验证码方式登录!"); } else { // 取号成功, 执行登录等流程 // 用户登录逻辑 === 开始 $user = \app\common\model\User::getByMobile($mobile); if ($user) { $this->error('账号已经存在,请直接登录'); if (!in_array($user->status,[1,2])) { $this->error(__('Account is locked')); } //如果已经有账号则直接登录 $ret = $this->auth->direct($user->id); $is_register = 0; } else { $extend = [ 'register_from' => input('register_from',''), 'gender' => $gender ]; $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, $extend); $is_register = 1; } //结果 if ($ret) { $this->success(__('Logged in successful'), $this->auth->getUserinfo()); } else { $this->error($this->auth->getError()); } // 用户登录逻辑 === 结束 } } else { $this->error("登录失败,请用验证码方式登录!"); } }*/ //微信登录,预先假注册 /*public function wechatlogin(){ $code = input('code',''); if(!$code){ $this->error(__('Invalid parameters')); } //微信 $wechat = new Wechat(); $wxuserinfo = $wechat->getAccessToken($code); if(!$wxuserinfo){ $this->error('openid获取失败'); } if(!is_array($wxuserinfo) || !isset($wxuserinfo['openid'])){ $this->error('openid获取失败'); } $openid = $wxuserinfo['openid']; //检查用户 $user = Db::name('user')->where('wechat_openid',$openid)->find(); if ($user) { if ($user['status'] == -1) { $this->error('账户已注销'); } if ($user['status'] != 1) { $this->error(__('Account is locked')); } //如果已经有账号则直接登录 $ret = $this->auth->direct($user['id']); if ($ret) { $userInfo = $this->auth->getUserinfo(); $userInfo['is_register'] = 0; $userInfo['code'] = $code; $this->success(__('Logged in successful'), $userInfo); } else { $this->error($this->auth->getError()); } } else { //记录code和openid,绑定手机号的时候更新openid $wechatCodeData = [ 'code' => $code, 'openid' => $openid, 'createtime' => time(), ]; $wechatCode = Db::name('wechat_code')->where(['openid'=>$openid])->find(); if (empty($wechatCode)) { Db::name('wechat_code')->insertGetId($wechatCodeData); } else { Db::name('wechat_code')->where(['openid'=>$openid])->update($wechatCodeData); } //直接返回 $userInfo = []; $userInfo['is_register'] = 1; $userInfo['code'] = $code; $this->success('获取信息成功', $userInfo); } }*/ /** * 微信注册来的,绑定手机号 * * @ApiMethod (POST) * @param string $mobile 手机号 * @param string $captcha 验证码 */ /*public function wechatbindmobile() { $mobile = $this->request->param('mobile'); $captcha = $this->request->param('captcha'); $code = $this->request->param('code'); if (!$mobile || !$captcha || !$code) { $this->error(__('Invalid parameters')); } if (!Validate::regex($mobile, "^1\d{10}$")) { $this->error(__('Mobile is incorrect')); } $result = Sms::check($mobile, $captcha, 'changemobile'); if (!$result) { $this->error(__('Captcha is incorrect')); } $wechatCodeWhere['code'] = $code; $wechatCode = Db::name('wechat_code')->where($wechatCodeWhere)->find(); if (empty($wechatCode)) { $this->error('请先微信登录'); } //检查appid绑定的用户 $user = Db::name('user')->where('wechat_openid',$wechatCode['openid'])->find(); if ($user) { if ($user['status'] == -1) { $this->error('账户已注销'); } if ($user['status'] != 1) { $this->error(__('Account is locked')); } //如果已经有账号则直接登录 $ret = $this->auth->direct($user['id']); $this->success('success',$this->auth->getUserinfo()); } //新的openid用户 $where = []; $where['mobile'] = $mobile; $userData = Db::name('user')->where($where)->find();//老用户 if (!empty($userData)) { if (empty($userData['wechat_openid'])) { Db::name('user')->where('id',$userData['id'])->update(['wechat_openid' => $wechatCode['openid']]);//老用户更新openid } else { if ($userData['wechat_openid'] != $wechatCode['openid']) { $this->error('该手机号已被其他用户绑定'); } } $ret = $this->auth->direct($userData['id']); } else { $extend = [ 'wechat_openid' => $wechatCode['openid'], ]; $ret = $this->auth->register('', '','', $mobile, $extend); } if (!$ret) { $this->error($this->auth->getError()); } $this->success('success',$this->auth->getUserinfo()); }*/ //实名认证信息 public function idcard_confirm_info(){ $check = Db::name('user_idconfirm')->where('user_id',$this->auth->id)->order('id desc')->find(); if (!$check) { $check = (object)[]; } $this->success('success',$check); } /* * 修改用户的坐标 * */ public function change_longlat(){ $longitude = input_post('longitude'); $latitude = input_post('latitude'); $cityname = input_post('cityname'); if(empty($longitude) || empty($latitude) || empty($cityname)){ $this->error(); } $data = [ 'longitude' => $longitude, 'latitude' => $latitude, 'cityname' => $cityname, ]; Db::name('user')->where('id',$this->auth->id)->update($data); $this->success(); } /** * 修改手机号 * * @ApiMethod (POST) * @param string $mobile 手机号 * @param string $captcha 验证码 */ public function changemobile() { $user = $this->auth->getUser(); $oldcaptcha = $this->request->request('oldcaptcha'); $mobile = $this->request->request('mobile'); $captcha = $this->request->request('captcha'); if (!$oldcaptcha || !$mobile || !$captcha) { $this->error(__('Invalid parameters')); } if (!Validate::regex($mobile, "^1\d{10}$")) { $this->error(__('Mobile is incorrect')); } if($user->mobile == $mobile){ $this->error('新手机号不能与旧手机号相同'); } if (\app\common\model\User::where('mobile', $mobile)->find()) { $this->error(__('Mobile already exist')); } $result = Sms::check($user->mobile, $oldcaptcha, 'changemobile'); if (!$result) { $this->error(__('Captcha is incorrect')); } $result = Sms::check($mobile, $captcha, 'changemobile'); if (!$result) { $this->error(__('Captcha is incorrect')); } /*$verification = $user->verification; $verification->mobile = 1; $user->verification = $verification;*/ $user->mobile = $mobile; $user->save(); Sms::flush($user->mobile, 'changemobile'); Sms::flush($mobile, 'changemobile'); $this->success(); } /** * 手机号注册来的,绑定微信 * * @ApiMethod (POST) * @param string wechat_openid 微信openid */ /*public function bindopenid() { $user = $this->auth->getUser(); $wechat_openid = $this->request->request('wechat_openid'); if(!empty($this->auth->wechat_openid)){ $this->error('已经绑定了微信号'); } if (!$wechat_openid) { $this->error(__('Invalid parameters')); } if (\app\common\model\User::where('wechat_openid', $wechat_openid)->find()) { $this->error('该微信号已被其他用户绑定'); } $user->wechat_openid = $wechat_openid; $user->save(); $this->success('success',$this->userInfo('return')); }*/ /** * 修改密码 * * @ApiMethod (POST) * @param string $newpassword 新密码 * @param string $oldpassword 旧密码 */ public function changepwd(){ $newpassword = input('newpassword'); $oldpassword = input('oldpassword',''); if (!$newpassword) { $this->error(__('Invalid parameters')); } if($this->auth->password && empty($oldpassword)){ $this->error('原密码必填'); } if(empty($this->auth->password)){ $ret = $this->auth->changepwd($newpassword, '', true); }else{ $ret = $this->auth->changepwd($newpassword,$oldpassword,false); } if ($ret) { $this->success(__('Reset password successful')); } else { $this->error($this->auth->getError()); } } /** * 记录当前登陆的设备ID,设备信息,IP等 */ /* public function changeDeviceIp() { // 接口防并发 if (!$this->apiLimit(1, 5)) { return ; } $user = $this->auth->getUser(); $ip = request()->ip(); $deviceId = $this->request->request('device_id',''); $phoneModel = $this->request->request('phone_model',''); $brand = $this->request->request('brand',''); $apiVersion = $this->request->request('api_version',''); $deviceOs = $this->request->request('device_os',''); if ($ip !== $user->loginip){ $update = []; $update['id'] = $user->id; $update['loginip'] = $ip; \app\common\model\User::update($update); } $userDeviceInfo = UserDeviceInfo::get(['user_id'=>$user->u_id]); if (empty($userDeviceInfo)){ $userDeviceInfo = new UserDeviceInfo(); $userDeviceInfo->user_id = $user->u_id; } $userDeviceInfo->device_os = $deviceOs; $userDeviceInfo->device_id = $deviceId; $userDeviceInfo->phone_model = $phoneModel; $userDeviceInfo->brand = $brand; $userDeviceInfo->api_version = $apiVersion; $userDeviceInfo->save(); //首页接口调用,这里不反回信息 // $this->success("更新成功!"); }*/ //修改用户活跃1 /*public function useractive(){ $this->success('success'); }*/ //公众号获取openid /*public function getUserOpenid_gzh(){ $configValue = Service::getConfig('wechat'); $wechat = new Wechat($configValue['app_id'],$configValue['app_secret']); $rs = $wechat->getOpenid(); $this->success('success',$rs); }*/ /** * 微信内H5-JSAPI支付 */ /*public function jssdkBuildConfig() { $url = $this->request->request("url"); $configValue = Service::getConfig('wechat'); $wechat = new Wechat($configValue['app_id'],$configValue['app_secret']); $sign = $wechat->getSignPackage(urldecode($url)); $this->success("获取成功!",$sign); }*/ //苹果账号登录 /*public function ioslogin(){ $ios_openid = input('ios_openid',''); if (!$ios_openid) { $this->error(__('Invalid parameters')); } $user = Db::name('user')->where(['ios_openid' => $ios_openid])->find(); // if (!$user) { // $this->success('选择性别', ['code' => 5]); // } if ($user) { if (!in_array($user->status,[1,2])) { $this->error(__('Account is locked')); } if ($user->frozentime > time()) { $this->error('您的账号已被封禁至' . date('Y-m-d H:i')); } //如果已经有账号则直接登录 $ret = $this->auth->direct($user->id); } else { $reg_data = [ 'register_from' => input('register_from',''), 'gender' => -1 ]; $ret = $this->auth->iosopenid_register($ios_openid,$reg_data); } if ($ret) { $data = $this->userInfo('return'); $this->success(__('Logged in successful'), $data); } else { $this->error($this->auth->getError()); } }*/ //苹果账号注册 /*public function iosregiter(){ $ios_openid = input('ios_openid', '', 'trim'); $gender = input('gender', -1, 'intval'); //性别:1=男,0=女 if (!$ios_openid) { $this->error(__('Invalid parameters')); } if (!in_array($gender, [1, 0])) { $this->error('性别错误'); } $user = Db::name('user')->where(['ios_openid' => $ios_openid])->find(); if ($user) { $this->error('账号已经存在,请直接登录'); } $reg_data = [ 'register_from' => input('register_from',''), 'gender' => $gender ]; $ret = $this->auth->iosopenid_register($ios_openid,$reg_data); if ($ret) { $data = $this->userInfo('return'); $this->success(__('Logged in successful'), $data); } else { $this->error($this->auth->getError()); } }*/ //实名认证 public function idcard_auth() { $info = Db::name('user_idconfirm')->where(['user_id' => $this->auth->id])->find(); // if ($info && $info['status'] == 0) { // $this->error('您已经提交信息了,请进行人脸认证!'); // } if ($info && $info['status'] == 1) { $this->error('您已通过审核!'); } $nickname = input('nickname', '', 'trim'); // 姓名 $idcard = input('idcard', '', 'trim'); // 身份证号 if ($nickname === '') { $this->error('请输入姓名'); } if (iconv_strlen($nickname, 'utf-8') > 50) { $this->error('请输入正确姓名'); } if ($idcard === '') { $this->error('请输入身份证号'); } if (iconv_strlen($idcard, 'utf-8') != 18) { $this->error('请输入正确身份证号'); } $count = Db::name('user_idconfirm')->where(['idcard' => $idcard, 'user_id' => ['neq', $this->auth->id]])->count('id'); if ($count) { $this->error('身份证号已存在'); } $data = []; $data['truename'] = $nickname; $data['idcard'] = $idcard; //腾讯云身份证二要素认证 $auth_restult = $this->userauth_tencent($idcard, $nickname); if ($auth_restult) { $data['status'] = 1; //通过 $msg = '认证通过'; } else { $data['status'] = 2; //不通过 $msg = '认证不通过'; } //开启事务 Db::startTrans(); if (!$info) { //未认证 $data["user_id"] = $this->auth->id; $data["createtime"] = time(); $res = Db::name('user_idconfirm')->insertGetId($data); } else { //认证被拒绝过 $data['updatetime'] = time(); $res = Db::name('user_idconfirm')->where(['id' => $info['id'], 'user_id' => $this->auth->id])->setField($data); } if (!$res) { Db::rollback(); $this->error('认证失败'); } $rt = Db::name('user')->where(['id' => $this->auth->id, 'idcard_status' => $this->auth->idcard_status])->setField('idcard_status', $data['status']); if ($rt === false) { Db::rollback(); $this->error('认证失败'); } if ($data['status'] == 1) { //完成实名认证 +20金币 $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,4); if($task_rs === false){ Db::rollback(); $this->error('完成任务赠送奖励失败'); } //系统消息 $msg_id = \app\common\model\Message::addMessage($this->auth->id,'实名认证','实名认证已经审核通过'); } else { //系统消息 $msg_id = \app\common\model\Message::addMessage($this->auth->id,'实名认证','实名认证审核不通过'); } Db::commit(); $this->success($msg); } //腾讯云身份证二要素认证 public function userauth_tencent($idcard = '', $nickname = '') { // require_once 'vendor/autoload.php'; try { // 实例化一个认证对象,入参需要传入腾讯云账户secretId,secretKey,此处还需注意密钥对的保密 // 密钥可前往https://console.cloud.tencent.com/cam/capi网站进行获取 $config = config('tencent_im'); $cred = new Credential($config['SecretId'], $config['SecretKey']); // 实例化一个http选项,可选的,没有特殊需求可以跳过 $httpProfile = new HttpProfile(); $httpProfile->setEndpoint("faceid.tencentcloudapi.com"); // 实例化一个client选项,可选的,没有特殊需求可以跳过 $clientProfile = new ClientProfile(); $clientProfile->setHttpProfile($httpProfile); // 实例化要请求产品的client对象,clientProfile是可选的 $client = new FaceidClient($cred, "", $clientProfile); // 实例化一个请求对象,每个接口都会对应一个request对象 $req = new IdCardVerificationRequest(); $params = array( "IdCard" => $idcard, "Name" => $nickname ); $req->fromJsonString(json_encode($params)); // 返回的resp是一个IdCardVerificationResponse的实例,与请求对象对应 $resp = $client->IdCardVerification($req); // 输出json格式的字符串回包 // print_r($resp->toJsonString()); $result = json_decode($resp->toJsonString(), true); if (isset($result['Result']) && $result['Result'] == 0) { return 1; //通过 } else { return 0; } } catch(TencentCloudSDKException $e) { // echo $e; return 0; } } //申请真人认证 public function realauth() { if ($this->auth->real_status == 1) { $this->error('您已经真人认证过了~'); } if ($this->auth->avatar == config('avatar_boy') || $this->auth->avatar == config('avatar_girl')) { $this->error('请先上传真人头像~'); } //获取token $token_url = 'https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/access_token?app_id='.config('tencent_yun')['secret_id'].'&secret='.config('tencent_yun')['secret_key'].'&grant_type=client_credential&version=1.0.0'; $token_result = file_get_contents($token_url); if (!$token_result) { $this->error('您的网络开小差啦1~'); } $token_result = json_decode($token_result, true); if ($token_result['code'] != 0) { $this->error('您的网络开小差啦2~'); } $token = $token_result['access_token']; //获取签名鉴权参数ticket $ticket_url = 'https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/api_ticket?app_id='.config('tencent_yun')['secret_id'].'&access_token='.$token.'&type=SIGN&version=1.0.0'; $ticket_result = file_get_contents($ticket_url); if (!$ticket_result) { $this->error('您的网络开小差啦3~'); } $ticket_result = json_decode($ticket_result, true); if ($ticket_result['code'] != 0) { $this->error('您的网络开小差啦4~'); } $ticket = $ticket_result['tickets'][0]['value']; //获取签名 $sign_data = [ 'wbappid' => config('tencent_yun')['secret_id'], 'userId' => (string)$this->auth->id, 'version' => '1.0.0', 'ticket' => $ticket, 'nonce' => Random::alnum(32) ];//p($sign_data); asort($sign_data); //p($sign_data);//排序 $sign_string = join('', $sign_data);//p($sign_string); $sign = sha1($sign_string);//p($sign); //上传身份信息 $orderNo = getMillisecond() . $this->auth->id . mt_rand(1, 1000); //商户请求的唯一标识 $url = 'https://miniprogram-kyc.tencentcloudapi.com/api/server/getAdvFaceId?orderNo=' . $orderNo; $avatar = one_domain_image($this->auth->avatar); $avatar = str_replace('https', 'http', $avatar); $img = file_get_contents($avatar); $img = str_replace('data:image/jpg;base64', '', $img); $img = str_replace('\n', '', $img); $sourcePhotoStr = base64_encode($img); $data = [ 'webankAppId' => config('tencent_yun')['secret_id'], 'orderNo' => $orderNo, 'userId' => (string)$this->auth->id, 'sourcePhotoStr' => $sourcePhotoStr, 'sourcePhotoType' => 2, 'version' => '1.0.0', 'sign' => $sign, 'nonce' => $sign_data['nonce'] ]; $rs = curl_post($url,json_encode($data, 320), ['Content-Type: application/json']); if (!$rs) { $this->error('您的网络开小差啦5~'); } $rs = json_decode($rs, true); if (!$rs || $rs['code'] != 0) { $this->error('您的网络开小差啦6~'); } $user_auth = [ 'user_id' => $this->auth->id, 'certify_id' => $rs['result']['faceId'], 'out_trade_no' => $data['orderNo'], 'status' => 0, 'createtime' => time(), 'updatetime' => time() ]; //开启事务 Db::startTrans(); //查询是否认证过 $info = Db::name('user_auth')->where(['user_id' => $this->auth->id])->find(); if ($info) { $auth_rs = Db::name('user_auth')->where(['id' => $info['id']])->setField($user_auth); } else { $auth_rs = Db::name('user_auth')->insertGetId($user_auth); } if (!$auth_rs) { Db::rollback(); $this->error('您的网络开小差啦7~'); } //修改用户表认证状态 $user_rs = Db::name('user')->where(['id' => $this->auth->id])->setField('real_status', 0); if ($user_rs === false) { Db::rollback(); $this->error('您的网络开小差啦8~'); } Db::commit(); $return_data = [ 'face_id' => $user_auth['certify_id'], 'order_no' => $user_auth['out_trade_no'], 'user_id' => (string)$this->auth->id, 'nonce' => $sign_data['nonce'], 'sign' => $sign ]; $this->success('success', $return_data); } //查询真人认证结果 public function getrealauthresult() { $user_auth = Db::name('user_auth')->where(['user_id' => $this->auth->id])->find(); if (!$user_auth) { $this->success('尚未认证'); } if ($user_auth['status'] == 1) { $this->success('真人认证通过'); } if (!$user_auth['certify_id']) { $this->success('请先进行真人认证'); } //获取token $token_url = 'https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/access_token?app_id='.config('tencent_yun')['secret_id'].'&secret='.config('tencent_yun')['secret_key'].'&grant_type=client_credential&version=1.0.0'; $token_result = file_get_contents($token_url); if (!$token_result) { $this->error('您的网络开小差啦1~'); } $token_result = json_decode($token_result, true); if ($token_result['code'] != 0) { $this->error('您的网络开小差啦2~'); } $token = $token_result['access_token']; //获取签名鉴权参数ticket $ticket_url = 'https://miniprogram-kyc.tencentcloudapi.com/api/oauth2/api_ticket?app_id='.config('tencent_yun')['secret_id'].'&access_token='.$token.'&type=SIGN&version=1.0.0'; $ticket_result = file_get_contents($ticket_url); if (!$ticket_result) { $this->error('您的网络开小差啦3~'); } $ticket_result = json_decode($ticket_result, true); if ($ticket_result['code'] != 0) { $this->error('您的网络开小差啦4~'); } $ticket = $ticket_result['tickets'][0]['value']; //获取签名 $sign_data = [ 'wbappid' => config('tencent_yun')['secret_id'], 'orderNo' => $user_auth['out_trade_no'], 'version' => '1.0.0', 'ticket' => $ticket, 'nonce' => Random::alnum(32) ];//p($sign_data); asort($sign_data); //p($sign_data);//排序 $sign_string = join('', $sign_data);//p($sign_string); $sign = sha1($sign_string);//p($sign); //人脸核身结果查询 $url = 'https://miniprogram-kyc.tencentcloudapi.com/api/v2/base/queryfacerecord?orderNo=' . $user_auth['out_trade_no']; $data = [ 'appId' => config('tencent_yun')['secret_id'], 'version' => '1.0.0', 'nonce' => $sign_data['nonce'], 'orderNo' => $user_auth['out_trade_no'], 'sign' => $sign ]; $rs = curl_post($url,json_encode($data, 320), ['Content-Type: application/json']); if (!$rs) { $this->error('您的网络开小差啦5~'); } $rs = json_decode($rs, true); if (!$rs || $rs['code'] != 0) { $this->error($rs['msg']); } if ($rs['result']['liveRate'] >= 90 && $rs['result']['similarity'] >= 90) { $edit_data['status'] = 1; $msg = '真人认证成功'; } else { $edit_data['status'] = 2; $edit_data['certify_id'] = ''; $edit_data['out_trade_no'] = ''; $msg = '真人认证失败'; } $edit_data['updatetime'] = time(); //开启事务 Db::startTrans(); //修改认证信息 $result = Db::name('user_auth')->where(['user_id' => $this->auth->id, 'status' => $user_auth['status']])->setField($edit_data); if (!$result) { Db::rollback(); $this->error('查询认证结果失败2'); } //修改用户信息 $rs = Db::name('user')->where(['id' => $this->auth->id])->setField('real_status', $edit_data['status']); if (!$rs) { Db::rollback(); $this->error('查询认证结果失败3'); } if ($edit_data['status'] == 1) { //通过 //tag任务赠送金币 //真人认证奖励 $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,20); if($task_rs === false){ Db::rollback(); $this->error('完成任务赠送奖励失败'); } //系统消息 $msg_id = \app\common\model\Message::addMessage($this->auth->id,'真人认证','真人认证已经审核通过'); } else { //系统消息 $msg_id = \app\common\model\Message::addMessage($this->auth->id,'真人认证','真人认证审核不通过'); } Db::commit(); $this->success($msg); } //客服 public function kefu() { $type = input('type', 0, 'intval'); //客服位置: 0客服中心 1充值客服 if (!in_array($type, [0, 1])) { $this->error('您的网络开小差啦~'); } if ($type == 0) { $user_id = config('site.customer_service_id') ? : 0; //指定客服id } else { $user_id = config('site.pay_customer_service_id') ? : 0; //指定客服id } $list = Db::name('user')->field('id')->where(['status' => 1, 'is_kefu' => 1, 'id' => $user_id])->select(); if (!$list) { $this->success('success', $list); } foreach ($list as $k => &$v) { $v['nickname'] = '客服' . ($k + 1); $v['avatar'] = config('avatar_girl'); } $this->success('success', $list); } //真人认证后修改头像前比对 public function realavatar_auit() { if ($this->auth->real_status != 1) { $this->error('尚未通过真人认证'); } $avatar = input('avatar', '', 'trim'); //头像地址 if ($avatar === '') { $this->error('参数缺失'); } $avatar = one_domain_image($avatar); $now_avatar = one_domain_image($this->auth->avatar); if ($avatar == $now_avatar) { $this->error('头像未改变'); } //腾讯云人脸识别 $result = $this->face_tencent($now_avatar, $avatar); //1通过 0拒绝 $this->success('结果', $result); } //真人认证后修改头像 public function editrealavatar() { if ($this->auth->real_status != 1) { $this->error('尚未通过真人认证'); } $avatar = input('avatar', '', 'trim'); //头像地址 if ($avatar === '') { $this->error('参数缺失'); } $avatar = one_domain_image($avatar); $now_avatar = one_domain_image($this->auth->avatar); if ($avatar == $now_avatar) { $this->error('头像未改变'); } //腾讯云人脸识别 $auit_result = $this->face_tencent($now_avatar, $avatar); //1通过 0拒绝 if ($auit_result != 1) { $this->success('提示', ['code' => 2]); } $data['avatar'] = $avatar; $user_result = Db::name('user')->where(['id' => $this->auth->id])->setField($data); if (!$user_result) { $this->error('修改失败'); } $this->success('修改成功'); } //真人认证后修改头像并取消真人认证 public function editrealavatarcancelauit() { if ($this->auth->real_status != 1) { $this->error('尚未通过真人认证'); } $avatar = input('avatar', '', 'trim'); //头像地址 if ($avatar === '') { $this->error('参数缺失'); } $avatar = one_domain_image($avatar); $now_avatar = one_domain_image($this->auth->avatar); if ($avatar == $now_avatar) { $this->error('头像未改变'); } $data['avatar'] = $avatar; $data['real_status'] = -1; //开启事务 Db::startTrans(); $user_result = Db::name('user')->where(['id' => $this->auth->id])->setField($data); if (!$user_result) { Db::rollback(); $this->error('修改失败'); } $user_auth_result = Db::name('user_auth')->where(['user_id' => $this->auth->id])->delete(); if (!$user_auth_result) { Db::rollback(); $this->error('修改失败'); } Db::commit(); $this->success('修改成功'); } //腾讯云人脸识别 public function face_tencent($urla = '', $urlb = '') { // require_once 'vendor/autoload.php'; try { // 实例化一个认证对象,入参需要传入腾讯云账户secretId,secretKey,此处还需注意密钥对的保密 // 密钥可前往https://console.cloud.tencent.com/cam/capi网站进行获取 $config = config('tencent_im'); $cred = new Credential($config['SecretId'], $config['SecretKey']); // 实例化一个http选项,可选的,没有特殊需求可以跳过 $httpProfile = new HttpProfile(); $httpProfile->setEndpoint("iai.tencentcloudapi.com"); // 实例化一个client选项,可选的,没有特殊需求可以跳过 $clientProfile = new ClientProfile(); $clientProfile->setHttpProfile($httpProfile); // 实例化要请求产品的client对象,clientProfile是可选的 $client = new IaiClient($cred, "ap-beijing", $clientProfile); // 实例化一个请求对象,每个接口都会对应一个request对象 $req = new CompareFaceRequest(); $params = array( "UrlA" => $urla, "UrlB" => $urlb, "FaceModelVersion" => "3.0" ); $req->fromJsonString(json_encode($params)); // 返回的resp是一个CompareFaceResponse的实例,与请求对象对应 $resp = $client->CompareFace($req); // 输出json格式的字符串回包 // print_r($resp->toJsonString()); $result = json_decode($resp->toJsonString(), true); //3.0版本误识率千分之一对应分数为40分,误识率万分之一对应分数为50分,误识率十万分之一对应分数为60分。 一般超过50分则可认定为同一人。 if (isset($result['Score']) && $result['Score'] >= 60) { return 1; //通过 } else { return 0; } } catch(TencentCloudSDKException $e) { // echo $e; return 0; } } //修改城市 public function editcity() { $name = input('name', '', 'trim'); //城市名 if ($name === '') { $this->error('参数缺失'); } $hometown_cityid = Db::name('area')->where(['name' => $name])->value('id'); if (!$hometown_cityid) { $this->success('修改成功'); } Db::name('user')->where(['id' => $this->auth->id])->setField('hometown_cityid', $hometown_cityid); $this->success('修改成功'); } //搜索用户 public function searchuser() { $keyword = input('keyword', '', 'trim'); //昵称或ID if ($keyword === '') { $this->error('请输入关键字'); } $id = Db::name('user')->where(['nickname|username' => $keyword])->value('id'); $id = $id ? : 0; $this->success('用户', $id); } }