123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: http://demo.thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\api\controller;
- use think\cache\driver\Redis;
- use think\Db;
- use Firebase\JWT\JWT;
- use think\facade\Validate;
- /**
- * @title 用户登录
- * @controller Login
- * @group worker
- */
- class Login extends Base
- {
- /**
- * @title 注册
- * @desc 注册
- * @url /api/Login/Register
- * @method POST
- * @tag 基础
- * @header
- * @param name:phone type:string require:1 desc:手机号
- * @param name:ver_code type:string require:1 desc:验证码
- * @param name:password type:string require:1 desc:密码
- * @param name:invite_code type:string require:0 desc:邀请码
- *
- */
- public function Register(){
- $phone = input('phone');
- $ver_code = input('ver_code');
- $password = input('password');
- // $confirm_password = input('confirm_password','');
- // $second_password = input('second_password','');
- // $confirm_second_password = input('confirm_second_password','');
- $invite_code = input('invite_code');
- if (!$phone || !$ver_code || !$password){
- $this->error('参数错误');
- }
- if (!Validate::regex($phone, "^1\d{10}$")) {
- $this->error('手机号格式错误');
- }
- //验证短信验证码
- $time = time()-60;
- $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'register'])
- ->where('createtime','>',$time)
- ->order('id', 'DESC')
- ->find();
- if (!$sms || $sms['code'] != $ver_code) $this->error('短信验证码不正确!');
- $user = Db::name('store_member')
- ->where('is_deleted',0)
- ->where('phone',$phone)
- ->find();
- if ($user) $this->error('手机号已注册');
- if (!preg_match('/^[0-9a-z]{6,12}$/i',$password)) $this->error('密码格式错误,请输入6-12位数字+字母');
- // if ($password!=$confirm_password) $this->error('密码与确认密码不一致');
- // if (!preg_match('/^[0-9]{6}$/i',$second_password)) $this->error('二级密码格式错误,请输入6位纯数字');
- // if ($second_password!=$confirm_second_password) $this->error('二级密码与确认密码不一致');
- if ($invite_code){
- $isset = Db::name('store_member')->where('is_deleted',0)->where('invite_code',$invite_code)->find();
- if (!$isset) $this->error('邀请码不存在');
- $invitecode = $isset['id'];
- }else{
- $invitecode = 0;
- }
- $accountName = $phone;
- // $wallet_address = get32Str(64);
- $hz = substr($phone,-4);
- $data = [
- 'phone'=>$phone,
- 'pid'=>$invitecode,
- 'password'=>md5($password),
- // 'second_password'=>md5($second_password),
- // 'wallet_address'=>$wallet_address,
- 'accountName'=>$accountName
- ];
- $member_id = Db::name('store_member')->insertGetId($data);
- if ($member_id){
- $code = get32Str(8);
- $invite_img = setintivecode($code);
- $invite_address = getintiveaddress($code);
- Db::name('store_member')->where('id',$member_id)->update(['name'=>'收藏家'.$hz,'invite_img'=>$invite_img,'invite_address'=>$invite_address,'invite_code'=>$code]);
- //邀请好友送积分
- if ($invite_code>0){
- $invite_friends_integral = getConfigValue('invite_friends_integral');
- memberMoneyChange($invite_friends_integral,1,$invite_code,'邀请好友',1,$member_id);
- }
- $this->success('注册成功');
- }
- $this->error('注册失败');
- }
- /**
- * @title 登录
- * @desc 登录
- * @url /api/Login/passwordLogin
- * @method POST
- * @tag 基础
- * @header
- * @param name:phone type:int require:1 default:-- desc:手机号
- * @param name:password type:string require:1 default:-- desc:密码
- * @return name:token type:string default:-- desc:用户登录成功后的token值
- */
- public function passwordLogin()
- {
- $phone = input('phone');
- $password = input('password');
- if (empty($password) || empty($phone)) {
- $this->error('参数错误');
- }
- $member = Db::name('store_member')
- ->where('phone', $phone)
- ->where('is_deleted',0)
- ->find();
- if (!$member) $this->error('手机号未注册');
- if ($member['password']!=md5($password)) $this->error('密码错误');
- $token = self::create_jwt($member['id']);
- setMemberInfoHash($member['id']);
- $this->success('登录成功', $token);
- /*$phone = input('phone');
- // $password = input('password');
- $ver_code = input('ver_code');
- if (empty($ver_code) || empty($phone)) {
- $this->error('参数错误');
- }
- $member = Db::name('store_member')
- ->where('phone', $phone)
- ->where('is_deleted',0)
- ->find();
- if (!$member) $this->error('手机号未注册');
- //验证短信验证码
- $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'login'])->order('id', 'DESC')->find();
- //if (!$sms || $sms['code'] != $ver_code) $this->error('短信验证码不正确!');
- $token = self::create_jwt($member['id']);
- setMemberInfoHash($member['id']);
- $this->success('登录成功', $token);*/
- }
- //token加密
- public function create_jwt($uid)
- {
- $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到
- $time = time(); //签发时间
- $expire = $time + config('app.jwt_time'); //过期时间
- $token = array(
- "uid" => $uid,
- "iss" => "https://zain.com",//签发组织
- "aud" => "https://zain.com", //签发作者
- "iat" => $time,
- "nbf" => $time,
- "exp" => $expire
- );
- $jwt = JWT::encode($token, $key);
- return $jwt;
- }
- /**
- * @title 找回密码
- * @desc 找回密码
- * @url /api/Login/ForgetPassword
- * @method POST
- * @tag 基础
- * @header
- * @param name:phone type:int require:1 default:-- desc:手机号
- * @param name:ver_code type:string require:1 desc:验证码
- * @param name:password type:string require:1 default:-- desc:密码
- */
- public function ForgetPassword(){
- $phone = input('phone');
- $ver_code = input('ver_code');
- $password = input('password');
- $confirm_password = input('confirm_password');
- if (!$phone || !$ver_code || !$password || !$confirm_password) $this->error('参数错误');
- $member = Db::name('store_member')
- ->where('phone', $phone)
- ->where('is_deleted',0)
- ->find();
- if (!$member) $this->error('手机号未注册');
- //验证短信验证码
- $time = time()-60;
- $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'forgetpwd'])
- ->where('createtime','>',$time)
- ->order('id', 'DESC')
- ->find();
- if (!$sms || $sms['code'] != $ver_code) $this->error('短信验证码不正确!');
- if (!preg_match('/^[0-9a-z]{6,12}$/i',$password)) $this->error('密码格式错误,请输入6-12位数字+字母');
- // if ($password!=$confirm_password) $this->error('密码与确认密码不一致');
- $data = [
- 'password'=>md5($password),
- 'update_at'=>date('Y-m-d H:i:s')
- ];
- if (Db::name('store_member')->where('id',$member['id'])->update($data)) $this->success('修改成功');
- $this->error('修改失败');
- }
- public function test(){
- $list = Db::name('store_member')->select();
- $redis = new Redis();
- foreach ($list as &$v){
- $redis->del('UserByCount_'.$v['id'].'1');
- }
- die;
- $url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=wxa6980453638c9c78&secret=de7267bf7616bd73d867535642196fed';
- $res=curlRequest($url);
- $res = json_decode($res,true);
- $url2 ="https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token=".$res['access_token']."&type=jsapi";
- $res2=curlRequest($url2);
- $res2 = json_decode($res2,true);
- $timestamp = time();
- $noncestr = get32Str(15);
- $url = 'http://jybl.hdlkeji.com/web/h5/';
- $string = "jsapi_ticket=".$res2['ticket']."&noncestr=$noncestr×tamp=$timestamp&url=".$url;
- $result = sha1($string);
- echo $result;die;
- }
- public function add(){
- $list = Db::name('store_member')->where('is_deleted',0)->select();
- foreach ($list as $k=>$v){
- $invite_img = setintivecode($v['invite_code']);
- $invite_address = getintiveaddress($v['invite_code']);
- Db::name('store_member')->where('id',$v['id'])->update(['invite_img'=>$invite_img,'invite_address'=>$invite_address]);
- }
- }
- }
|