123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- <?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 app\common\library\AliPay3;
- use app\common\library\HuijuH5Pay;
- use app\common\library\HuijuKjPay;
- 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 = 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 || !$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;
- }
- $wallet_address = '';
- $accountName = '';
- $data = [
- 'phone'=>$phone,
- 'pid'=>$invitecode,
- //'password'=>md5($password),
- 'second_password'=>md5($second_password),
- 'wallet_address'=>$wallet_address,
- 'accountName'=>$accountName,
- 'reg_ip'=>request()->ip()
- ];
- $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'=>'收藏者'.$member_id,'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:密码
- * @param name:ver_code type:string require:1 desc:验证码
- * @return name:token type:string default:-- desc:用户登录成功后的token值
- */
- public function passwordLogin()
- {
- $type = input('type',1); //1:验证码登录 2:密码登录
- $phone = input('phone');
- $password = input('password');
- $ver_code = input('ver_code');
- if ($type==1){
- if (empty($ver_code) || empty($phone)) {
- $this->error('参数错误');
- }
- }else{
- 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 ($phone!='15801075991'){
- if ($type==1){
- $time = time()-60;
- $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'login'])
- ->where('createtime','>',$time)
- ->order('id', 'DESC')
- ->find();
- // if (!$sms || $sms['code'] != $ver_code) $this->error('短信验证码不正确!');
- }else{
- if ($member['password']!=md5($password)) $this->error('密码错误');
- }
- }
- $token = self::create_jwt($member['id']);
- setMemberInfoHash($member['id']);
- Db::name('store_member')->where('id',$member['id'])->update(['ip'=>request()->ip()]);
- LoginLog($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(){
- // $huiju = new HuijuH5Pay();
- // $result = $huiju->we_pay();
- // die();
- //
- //
- // $callback_url = 'http://'.$_SERVER['SERVER_NAME'].'/pages/mine/order-list?num=1';
- // $huiju = new HuijuH5Pay();
- // $notify_url = 'http://'.$_SERVER['SERVER_NAME'].'/index.php/api/Pay/ylOrderNotify';//回调地址
- // $huiju->ylh5Pay(get_order_sn(),$callback_url,$notify_url,"测试藏品","0.01",'100000',1);
- $huiju = new HuijuKjPay();
- // $huiju->sms();
- // $huiju->signing();
- $huiju->paySms();
- $huiju->kuaijiePay();
- die;
- require_once env('root_path').'application/common/library/lib/YopRequest.php';
- require_once env('root_path').'application/common/library/lib/YopClient3.php';
- require_once env('root_path').'application/common/library/lib/YopRsaClient.php';
- $private_key ="MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQCSBUBO99o0ZCGp8/6qbaSW2MIeHKg/4RZEIexS11rW5wxFH9arHM16yZXObtm1qO1xNnRyofBkKvcOes63yNGqiulDjJbx2gxXzQdq6g0ckO06YZsb6v4AmkCLwu/kFPYTd2zu3nM6VCBsppkjXe2kcdgeKH55PSqTLcqe4TCeCQxxTjmixX/qFdKva7uJxXbdNjE+GERMTPsn9FBGjrv2/6RCz62eZljRcQf2zY9aooXnYaYOOkeYxJaFu4M8k1kEfL/A2ftDGa+9zyWUUp/PskIcSUCLtdd+yR1ZvNldBW7iaeTuZ4YQXg6N3BqFBacBmkHztpqbrg1+C46Hp9C5AgMBAAECggEAHxpGPevWSzWO5BwIQTYUilsGUhKpld20d/O/2k9r1n2lY+3ptE3wyLg6lBuRfPvMA8LlH+u1gCiUsj1fXc9FNa3cDNrb5g0bdvJBo7jR7SVDmp1ixBoUW31/xSVTIsKCPdhA2EqCwchclbgQw3NE5LOpJJdchSeNs4bb82alC+wwDaYnrag/OuehknazOQWqWQVaPI9zJ+eXPNW3etWte1OLDyVoNiSrAdr/BWnBxSxcoANuzypkKN/Sw5W3vgkIHyylReiOLP2JLDNpnDlwgNIaxYOF7p0VGLC1bAqZTjuR4nMKZhohC4FtNC1cy9ZV2c2KV3bD8OXoMPIQB1a8OQKBgQDJnVxK2Mwk/2jitP7mA6JpBFeioJLRzj4gKK56M4InYaRRVZj6UWJd5Jt0uEs6XMlus8T24cfSoglCnXIvTMx8okTbusxn72Ff+/+f0GRLI/VO/cyhSWFl+0P3XTCT+zUVI3+kWvZQ6Tj7l5BWubqLObBdrNDhpbYhQptnm+KHJQKBgQC5aMwHmtE5Cs6+z2zGkIvVw4dOQcvo9E+gGCsjbSdeFvcrOpg/NNQ0dmu54F8CF6z9VkoitL8NTI63V4LqLnZ9BK+K/0L8UMzbbhCqT9+JTrjNraby77akxldKTUZZHiC1edWT/Ll8t6xT6oVw02yZz8Flpc7DnNXuJGGxQIlpBQKBgHinh3fzThhGEUq67mBQhH08cAWO+s48EsnEDsZq1NUkheV2yFnlImz2RmIPeFWw+YsaYiEs9RyEg+4tswvDdgyQP40PuQvqIegDMvM9Dwg4uLFRCYjsFTGmsQHz7wJgL2A7IkQFe6roJ4XJKkP8Wjq/h2BH76laNiipZ78VdvdRAoGAKqgnuOAvnrYT1uaWGiELawTvTlvo9BGxeB3XXvEwC3+xIir6+B/JasCMDFnIwgx8alS9/boj8oVYmGnz3rkN3bmEQbB00uQsHZf3EZgKz+Zisj9vl5j7JnHTh2677qj10YrUTpXofv8rEKt2Q/0AkWqxDhfVuD+PIJkSONumQZkCgYACVSnvt+kizEIwdshvGzAkzZaMBR6Xf1d//cuIWzU1bO7pkCQogq9MXv9hCZx2N1B51VSvwazJ6B029uzgYzr0iTeZBfB5ntb53/vEycLMhB9r9Bc+0x7bxrQZeWNwLlQFxhDeSO9le0ETjfGPt/nS2QbFL7bNHwRGE+AzxwH0aA==";
- $request = new \YopRequest("app_10086863938", $private_key);
- $request->addParam('requestNo',get_order_sn());
- $request->addParam('parentMerchantNo','10086863938');
- $request->addParam('merchantNo','10086863938');
- $request->addParam('name','宋星伟');
- $request->addParam('cardNo','371324199210037710');
- $request->addParam('cardType','ID');
- $request->addParam('returnUrl','https://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/mine/order-list?num=1');
- $request->addParam('notifyUrl','https://'.$_SERVER['SERVER_NAME'].'/api/Pay/re');
- $response = \YopRsaClient::post("/rest/v1.0/auth/face-auth", $request);
- dump(json_decode(json_encode($response,true),true));
- die;
- // require_once env('root_path').'application/common/library/lib/YopRequest.php';
- // require_once env('root_path').'application/common/library/lib/YopClient3.php';
- // require_once env('root_path').'application/common/library/lib/YopRsaClient.php';
- // $private_key ="MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQCSBUBO99o0ZCGp8/6qbaSW2MIeHKg/4RZEIexS11rW5wxFH9arHM16yZXObtm1qO1xNnRyofBkKvcOes63yNGqiulDjJbx2gxXzQdq6g0ckO06YZsb6v4AmkCLwu/kFPYTd2zu3nM6VCBsppkjXe2kcdgeKH55PSqTLcqe4TCeCQxxTjmixX/qFdKva7uJxXbdNjE+GERMTPsn9FBGjrv2/6RCz62eZljRcQf2zY9aooXnYaYOOkeYxJaFu4M8k1kEfL/A2ftDGa+9zyWUUp/PskIcSUCLtdd+yR1ZvNldBW7iaeTuZ4YQXg6N3BqFBacBmkHztpqbrg1+C46Hp9C5AgMBAAECggEAHxpGPevWSzWO5BwIQTYUilsGUhKpld20d/O/2k9r1n2lY+3ptE3wyLg6lBuRfPvMA8LlH+u1gCiUsj1fXc9FNa3cDNrb5g0bdvJBo7jR7SVDmp1ixBoUW31/xSVTIsKCPdhA2EqCwchclbgQw3NE5LOpJJdchSeNs4bb82alC+wwDaYnrag/OuehknazOQWqWQVaPI9zJ+eXPNW3etWte1OLDyVoNiSrAdr/BWnBxSxcoANuzypkKN/Sw5W3vgkIHyylReiOLP2JLDNpnDlwgNIaxYOF7p0VGLC1bAqZTjuR4nMKZhohC4FtNC1cy9ZV2c2KV3bD8OXoMPIQB1a8OQKBgQDJnVxK2Mwk/2jitP7mA6JpBFeioJLRzj4gKK56M4InYaRRVZj6UWJd5Jt0uEs6XMlus8T24cfSoglCnXIvTMx8okTbusxn72Ff+/+f0GRLI/VO/cyhSWFl+0P3XTCT+zUVI3+kWvZQ6Tj7l5BWubqLObBdrNDhpbYhQptnm+KHJQKBgQC5aMwHmtE5Cs6+z2zGkIvVw4dOQcvo9E+gGCsjbSdeFvcrOpg/NNQ0dmu54F8CF6z9VkoitL8NTI63V4LqLnZ9BK+K/0L8UMzbbhCqT9+JTrjNraby77akxldKTUZZHiC1edWT/Ll8t6xT6oVw02yZz8Flpc7DnNXuJGGxQIlpBQKBgHinh3fzThhGEUq67mBQhH08cAWO+s48EsnEDsZq1NUkheV2yFnlImz2RmIPeFWw+YsaYiEs9RyEg+4tswvDdgyQP40PuQvqIegDMvM9Dwg4uLFRCYjsFTGmsQHz7wJgL2A7IkQFe6roJ4XJKkP8Wjq/h2BH76laNiipZ78VdvdRAoGAKqgnuOAvnrYT1uaWGiELawTvTlvo9BGxeB3XXvEwC3+xIir6+B/JasCMDFnIwgx8alS9/boj8oVYmGnz3rkN3bmEQbB00uQsHZf3EZgKz+Zisj9vl5j7JnHTh2677qj10YrUTpXofv8rEKt2Q/0AkWqxDhfVuD+PIJkSONumQZkCgYACVSnvt+kizEIwdshvGzAkzZaMBR6Xf1d//cuIWzU1bO7pkCQogq9MXv9hCZx2N1B51VSvwazJ6B029uzgYzr0iTeZBfB5ntb53/vEycLMhB9r9Bc+0x7bxrQZeWNwLlQFxhDeSO9le0ETjfGPt/nS2QbFL7bNHwRGE+AzxwH0aA==";
- // $request = new \YopRequest("app_10086863938", $private_key);
- // $request->addFile("merQual", "C:\Users\xk\Pictures\�Ž�ͼ_20220316150041.png");
- // $response = \YopRsaClient::upload("/yos/v1.0/sys/merchant/qual/upload", $request);
- // dump($response);
- }
- }
|