123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- <?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:confirm_password type:string require:1 desc:确认密码
- * @param name:second_password type:string require:1 desc:支付密码
- * @param name:confirm_second_password type:string require:1 desc:二级确认密码
- * @param name:invite_code type:string require:0 desc:邀请码
- *
- */
- public function Register(){
- $phone = trim(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 || !$confirm_password || !$second_password || !$confirm_second_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;
- $data = [
- 'phone'=>$phone,
- 'pid'=>$invitecode,
- 'password'=>md5($password),
- 'second_password'=>md5($second_password),
- 'wallet_address'=>'',
- 'accountName'=>$accountName,
- 'money'=> '0.00',
- 'name'=> '象链'.substr($phone,7)
- ];
- $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(['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);
- }
- //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:密码
- * @param name:confirm_password type:string require:1 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_collection')->select();
- foreach ($list as &$v){
- $cover = str_replace('https://fanyi.fanyiys.com/','https://fanyisc.oss-cn-hangzhou.aliyuncs.com/',$v['auth_img']);
- echo $cover."<br />";
- Db::name('store_collection')->where('id',$v['id'])->update(['auth_img'=>$cover]);
- }
- // $list = Db::name('store_order_info')->select();
- // foreach ($list as &$v){
- // $data = [];
- // $info = Db::name('store_collection')->where('id',$v['c_id'])->find();
- // $data['cover'] = $info['cover'];
- // $data['pro_info'] = json_encode($info,true);
- // Db::name('store_order_info')->where('id',$v['id'])->update($data);
- // echo $v['id']."<br />";
- //
- // }
- // $ids = Db::name('store_order_info')->group('c_id')->column('c_id');
- // $redis = new Redis();
- // foreach ($ids as &$v){
- // $max = Db::name('store_order_info')->where('c_id',$v)->order('id desc')->field('id,tag,c_id')->limit(1)->find();
- // $tag = explode('#',$max['tag']);
- // $num = explode('/',$tag[1]);
- // $number = (int)$num[0];
- // $redis->set('ranking'.$v,$number);
- // dump($max)."<br />";
- // }
- // $redis = new Redis();
- // $list = Db::name('hash')->where('status',0)->select();
- // foreach ($list as &$v){
- // //存入reids list
- // $redis_data = ['hash'=>$v['hash'],'tokenid'=>$v['tokenid'],'create_at'=>$v['create_at']];
- // $redis->rPush('collectionHash_'.$v['goods_id'],json_encode($redis_data));
- // echo $v['hash']."<br />";
- // }
- $redis = new Redis();
- $list = Db::name('store_collection')->select();
- foreach ($list as &$v){
- $buy_count = Db::name('store_order_info')
- ->whereIn('status','1,3')
- ->where('c_id',$v['id'])
- ->count();
- $now = $v['inventory']-$buy_count;
- $redis->set('collection_count_'.$v['id'],$now);
- echo $v['id']."<br />";
- }
- }
- }
|