123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- <?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\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 || !$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('短信验证码不正确!');
- // if ($ver_code!=='123456') $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('id',$invite_code)->find();
- if (!$isset) $this->error('邀请码不存在');
- }else{
- $invite_code = 0;
- }
- //钱包地址
- $offlineaccount = getOfflineAccount();
- // $address = json_decode($offlineaccount,true)['address'];
- // $laddress = getWalletAddress($phone,$address);
- // if ($laddress['code']==0){
- // $wallet_address = $laddress['data']['opbChainClientAddress'];
- // }
- $data = [
- 'phone'=>$phone,
- 'pid'=>$invite_code,
- 'password'=>md5($password),
- 'second_password'=>md5($second_password),
- //'wallet_address'=>$wallet_address,
- 'offline_account'=>$offlineaccount
- ];
- $member_id = Db::name('store_member')->insertGetId($data);
- if ($member_id){
- Db::name('store_member')->where('id',$member_id)->update(['name'=>'收藏家'.$member_id]);
- //邀请好友送积分
- if ($invite_code>0){
- $invite_friends_integral = getConfigValue('invite_friends_integral');
- //memberMoneyChange($invite_friends_integral,1,$member_id,'邀请好友',1,$invite_code);
- }
- $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(){
- $url = 'http://192.144.219.204:8083/ddc/accountStatus?account=0x7f1a6ec16d4c96bb96ff946f32468bdbbd368700';
- $res=curlRequest($url);
- echo $res;die;
- // //生成二维码
- // echo setintivecode(100000);die;
- // $url = 'http://192.144.219.204:8083/ddc/status?address=0x3a1ca5e6fd0acfa43eeea3002cf4c72c86ad0d81';
- // $res=curlRequest($url);
- // $result = json_decode($res,true);
- // dump($result);
- // die;
- //
- // $url = 'http://192.144.219.204:8083/ddc/official?address=0x65f71404c42565c736536ec1e1ab29859d67b9d8';
- // $res=curlRequest($url);
- // $result = json_decode($res,true);
- // dump($result);
- // die;
- $list = Db::name('hash')->whereIn('id','4386')->select();
- foreach ($list as &$v){
- $url = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$v['hash'];
- $res=curlRequest($url);
- Db::name('hash')->where('id',$v['id'])->update(['result'=>$res]);
- $result3=json_decode($res,true);
- dump($result3);
- if (isset($result3['status']) && $result3['status']=='0x1'){
- $url4='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
- $ddcid=curlRequest($url4);
- echo 'ddcid:'.$ddcid."<br />";
- $result4=json_decode($ddcid,true);
- if($result4['code']){
- dump($result4);
- }else{
- $update_data['ddcid'] = $ddcid;
- }
- Db::name('hash')->where('id',$v['id'])->update($update_data);
- }
- }
- die;
- //
- // $member = Db::name('store_member')->where('id','100040')->select();
- // foreach ($member as &$v){
- // if (empty($v['offline_account']) || $v['offline_account']==''){
- // $offline_accounts = getOfflineAccount();
- // $v['offline_account'] =$offline_accounts;
- // }
- // $offline_account = json_decode($v['offline_account'],true);
- // $address = $offline_account['address'];
- // $laddress = getWalletAddress($v['phone'].$v['id'],$address);
- // dump($laddress);
- //// if ($laddress['code']==0){
- //// $wallet_address = $laddress['data']['opbChainClientAddress'];
- //// Db::name('store_member')->where('id',$v['id'])->update(['wallet_address'=>$wallet_address]);
- //// }
- // }
- // die;
- // $url3 = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash=0x29dd82a90fe77dd4581ed0e95d50588a4a5dfd7a5625e5b3530819d5235aefdf';
- // $res3=curlRequest($url3);
- // echo $res3;
- // die;
- // $list = Db::name('hash')->order('id desc')->limit(30)->select();
- // foreach ($list as &$v){
- // $url3 = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$v['hash'];
- // $res3=curlRequest($url3);
- // $result3=json_decode($res3,true);
- // if (isset($result3['status']) && $result3['status']=='0x1'){
- // echo "创建成功".$v['hash']."<br />";
- // }else{
- // echo "创建失败".$v['hash']."<br />";
- // }
- // }
- // die;
- // $url = 'http://192.144.219.204:8083/ddc/getNonce';
- // $res=curlRequest($url);
- // print_r($res);die;
- //充值能量
- // $rand = get_order_sn();
- // $url = 'http://192.144.219.204:8083/ddc/rechargeGas?money=40&address=0x3fc6da539f8591250a2f989574646ab03cde7cba&transSn='.$rand;
- // $res=curlRequest($url);
- // print_r($res);die;
- //充值业务费
- $rand = get_order_sn();
- $url = 'http://192.144.219.204:8083/ddc/rechargeBusiness?money=30&address=0x3fc6da539f8591250a2f989574646ab03cde7cba&transSn='.$rand;
- $res=curlRequest($url);
- print_r($res);die;
- //传递ddcid
- $url2='http://192.144.219.204:8083/ddc/getNonce';
- $nonce=curlRequest($url2);
- // $from = '0x8583c53ca3759f0893cb6c156b682e8fef22ed95';
- // $to = '0xf52a94d36dc81d48eed46a23b5397f822df0118e';
- $from = '0xf52a94d36dc81d48eed46a23b5397f822df0118e';
- $to = '0xf12ef3091e3169f0b79d7d224f0ab7fa5916945f';
- $ddcid ='10816';
- $url = "http://192.144.219.204:8083/ddc/transfer?from=$from&to=$to&ddcid=$ddcid&nonce=".$nonce;
- $res=curlRequest($url);
- print_r($res);die;
- $url = 'http://192.144.219.204:8083/ddc/createAccount';
- $result = file_get_contents($url);
- $result = json_decode($result,true);
- $name = rand(0,100);
- $url2 = "http://192.144.219.204:8083/ddc/createAddress?name=".$name."&account=".$result['address'];
- $res=curlRequest($url2);
- $result=json_decode($res,true);
- dump($result);
- }
- }
|