Login.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\api\controller;
  15. use think\Db;
  16. use Firebase\JWT\JWT;
  17. use think\facade\Validate;
  18. /**
  19. * @title 用户登录
  20. * @controller Login
  21. * @group worker
  22. */
  23. class Login extends Base
  24. {
  25. /**
  26. * @title 注册
  27. * @desc 注册
  28. * @url /api/Login/Register
  29. * @method POST
  30. * @tag 基础
  31. * @header
  32. * @param name:phone type:string require:1 desc:手机号
  33. * @param name:ver_code type:string require:1 desc:验证码
  34. * @param name:password type:string require:1 desc:密码
  35. * @param name:confirm_password type:string require:1 desc:确认密码
  36. * @param name:second_password type:string require:1 desc:二级密码
  37. * @param name:confirm_second_password type:string require:1 desc:二级确认密码
  38. * @param name:invite_code type:string require:0 desc:邀请码
  39. *
  40. */
  41. public function Register(){
  42. $phone = input('phone');
  43. $ver_code = input('ver_code');
  44. $password = input('password');
  45. $confirm_password = input('confirm_password');
  46. $second_password = input('second_password');
  47. $confirm_second_password = input('confirm_second_password');
  48. $invite_code = input('invite_code');
  49. if (!$phone || !$ver_code || !$password || !$confirm_password || !$second_password || !$confirm_second_password){
  50. $this->error('参数错误');
  51. }
  52. if (!Validate::regex($phone, "^1\d{10}$")) {
  53. $this->error('手机号格式错误');
  54. }
  55. //验证短信验证码
  56. $time = time()-60;
  57. $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'register'])
  58. ->where('createtime','>',$time)
  59. ->order('id', 'DESC')
  60. ->find();
  61. if (!$sms || $sms['code'] != $ver_code) $this->error('短信验证码不正确!');
  62. // if ($ver_code!=='123456') $this->error('验证码错误');
  63. $user = Db::name('store_member')
  64. ->where('is_deleted',0)
  65. ->where('phone',$phone)
  66. ->find();
  67. if ($user) $this->error('手机号已注册');
  68. if (!preg_match('/^[0-9a-z]{6,12}$/i',$password)) $this->error('密码格式错误,请输入6-12位数字+字母');
  69. if ($password!=$confirm_password) $this->error('密码与确认密码不一致');
  70. if (!preg_match('/^[0-9]{6}$/i',$second_password)) $this->error('二级密码格式错误,请输入6位纯数字');
  71. if ($second_password!=$confirm_second_password) $this->error('二级密码与确认密码不一致');
  72. if ($invite_code){
  73. $isset = Db::name('store_member')->where('is_deleted',0)->where('id',$invite_code)->find();
  74. if (!$isset) $this->error('邀请码不存在');
  75. }else{
  76. $invite_code = 0;
  77. }
  78. //钱包地址
  79. $offlineaccount = getOfflineAccount();
  80. // $address = json_decode($offlineaccount,true)['address'];
  81. // $laddress = getWalletAddress($phone,$address);
  82. // if ($laddress['code']==0){
  83. // $wallet_address = $laddress['data']['opbChainClientAddress'];
  84. // }
  85. $data = [
  86. 'phone'=>$phone,
  87. 'pid'=>$invite_code,
  88. 'password'=>md5($password),
  89. 'second_password'=>md5($second_password),
  90. //'wallet_address'=>$wallet_address,
  91. 'offline_account'=>$offlineaccount
  92. ];
  93. $member_id = Db::name('store_member')->insertGetId($data);
  94. if ($member_id){
  95. Db::name('store_member')->where('id',$member_id)->update(['name'=>'收藏家'.$member_id]);
  96. //邀请好友送积分
  97. if ($invite_code>0){
  98. $invite_friends_integral = getConfigValue('invite_friends_integral');
  99. //memberMoneyChange($invite_friends_integral,1,$member_id,'邀请好友',1,$invite_code);
  100. }
  101. $this->success('注册成功');
  102. }
  103. $this->error('注册失败');
  104. }
  105. /**
  106. * @title 登录
  107. * @desc 登录
  108. * @url /api/Login/passwordLogin
  109. * @method POST
  110. * @tag 基础
  111. * @header
  112. * @param name:phone type:int require:1 default:-- desc:手机号
  113. * @param name:password type:string require:1 default:-- desc:密码
  114. * @return name:token type:string default:-- desc:用户登录成功后的token值
  115. */
  116. public function passwordLogin()
  117. {
  118. $phone = input('phone');
  119. $password = input('password');
  120. if (empty($password) || empty($phone)) {
  121. $this->error('参数错误');
  122. }
  123. $member = Db::name('store_member')
  124. ->where('phone', $phone)
  125. ->where('is_deleted',0)
  126. ->find();
  127. if (!$member) $this->error('手机号未注册');
  128. if ($member['password']!=md5($password)) $this->error('密码错误');
  129. $token = self::create_jwt($member['id']);
  130. setMemberInfoHash($member['id']);
  131. $this->success('登录成功', $token);
  132. }
  133. //token加密
  134. public function create_jwt($uid)
  135. {
  136. $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到
  137. $time = time(); //签发时间
  138. $expire = $time + config('app.jwt_time'); //过期时间
  139. $token = array(
  140. "uid" => $uid,
  141. "iss" => "https://zain.com",//签发组织
  142. "aud" => "https://zain.com", //签发作者
  143. "iat" => $time,
  144. "nbf" => $time,
  145. "exp" => $expire
  146. );
  147. $jwt = JWT::encode($token, $key);
  148. return $jwt;
  149. }
  150. /**
  151. * @title 找回密码
  152. * @desc 找回密码
  153. * @url /api/Login/ForgetPassword
  154. * @method POST
  155. * @tag 基础
  156. * @header
  157. * @param name:phone type:int require:1 default:-- desc:手机号
  158. * @param name:ver_code type:string require:1 desc:验证码
  159. * @param name:password type:string require:1 default:-- desc:密码
  160. * @param name:confirm_password type:string require:1 desc:确认密码
  161. */
  162. public function ForgetPassword(){
  163. $phone = input('phone');
  164. $ver_code = input('ver_code');
  165. $password = input('password');
  166. $confirm_password = input('confirm_password');
  167. if (!$phone || !$ver_code || !$password || !$confirm_password) $this->error('参数错误');
  168. $member = Db::name('store_member')
  169. ->where('phone', $phone)
  170. ->where('is_deleted',0)
  171. ->find();
  172. if (!$member) $this->error('手机号未注册');
  173. //验证短信验证码
  174. $time = time()-60;
  175. $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'forgetpwd'])
  176. ->where('createtime','>',$time)
  177. ->order('id', 'DESC')
  178. ->find();
  179. if (!$sms || $sms['code'] != $ver_code) $this->error('短信验证码不正确!');
  180. if (!preg_match('/^[0-9a-z]{6,12}$/i',$password)) $this->error('密码格式错误,请输入6-12位数字+字母');
  181. if ($password!=$confirm_password) $this->error('密码与确认密码不一致');
  182. $data = [
  183. 'password'=>md5($password),
  184. 'update_at'=>date('Y-m-d H:i:s')
  185. ];
  186. if (Db::name('store_member')->where('id',$member['id'])->update($data)) $this->success('修改成功');
  187. $this->error('修改失败');
  188. }
  189. public function test(){
  190. $url = 'http://192.144.219.204:8083/ddc/accountStatus?account=0x7f1a6ec16d4c96bb96ff946f32468bdbbd368700';
  191. $res=curlRequest($url);
  192. echo $res;die;
  193. // //生成二维码
  194. // echo setintivecode(100000);die;
  195. // $url = 'http://192.144.219.204:8083/ddc/status?address=0x3a1ca5e6fd0acfa43eeea3002cf4c72c86ad0d81';
  196. // $res=curlRequest($url);
  197. // $result = json_decode($res,true);
  198. // dump($result);
  199. // die;
  200. //
  201. // $url = 'http://192.144.219.204:8083/ddc/official?address=0x65f71404c42565c736536ec1e1ab29859d67b9d8';
  202. // $res=curlRequest($url);
  203. // $result = json_decode($res,true);
  204. // dump($result);
  205. // die;
  206. $list = Db::name('hash')->whereIn('id','4386')->select();
  207. foreach ($list as &$v){
  208. $url = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$v['hash'];
  209. $res=curlRequest($url);
  210. Db::name('hash')->where('id',$v['id'])->update(['result'=>$res]);
  211. $result3=json_decode($res,true);
  212. dump($result3);
  213. if (isset($result3['status']) && $result3['status']=='0x1'){
  214. $url4='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
  215. $ddcid=curlRequest($url4);
  216. echo 'ddcid:'.$ddcid."<br />";
  217. $result4=json_decode($ddcid,true);
  218. if($result4['code']){
  219. dump($result4);
  220. }else{
  221. $update_data['ddcid'] = $ddcid;
  222. }
  223. Db::name('hash')->where('id',$v['id'])->update($update_data);
  224. }
  225. }
  226. die;
  227. //
  228. // $member = Db::name('store_member')->where('id','100040')->select();
  229. // foreach ($member as &$v){
  230. // if (empty($v['offline_account']) || $v['offline_account']==''){
  231. // $offline_accounts = getOfflineAccount();
  232. // $v['offline_account'] =$offline_accounts;
  233. // }
  234. // $offline_account = json_decode($v['offline_account'],true);
  235. // $address = $offline_account['address'];
  236. // $laddress = getWalletAddress($v['phone'].$v['id'],$address);
  237. // dump($laddress);
  238. //// if ($laddress['code']==0){
  239. //// $wallet_address = $laddress['data']['opbChainClientAddress'];
  240. //// Db::name('store_member')->where('id',$v['id'])->update(['wallet_address'=>$wallet_address]);
  241. //// }
  242. // }
  243. // die;
  244. // $url3 = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash=0x29dd82a90fe77dd4581ed0e95d50588a4a5dfd7a5625e5b3530819d5235aefdf';
  245. // $res3=curlRequest($url3);
  246. // echo $res3;
  247. // die;
  248. // $list = Db::name('hash')->order('id desc')->limit(30)->select();
  249. // foreach ($list as &$v){
  250. // $url3 = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$v['hash'];
  251. // $res3=curlRequest($url3);
  252. // $result3=json_decode($res3,true);
  253. // if (isset($result3['status']) && $result3['status']=='0x1'){
  254. // echo "创建成功".$v['hash']."<br />";
  255. // }else{
  256. // echo "创建失败".$v['hash']."<br />";
  257. // }
  258. // }
  259. // die;
  260. // $url = 'http://192.144.219.204:8083/ddc/getNonce';
  261. // $res=curlRequest($url);
  262. // print_r($res);die;
  263. //充值能量
  264. // $rand = get_order_sn();
  265. // $url = 'http://192.144.219.204:8083/ddc/rechargeGas?money=40&address=0x3fc6da539f8591250a2f989574646ab03cde7cba&transSn='.$rand;
  266. // $res=curlRequest($url);
  267. // print_r($res);die;
  268. //充值业务费
  269. $rand = get_order_sn();
  270. $url = 'http://192.144.219.204:8083/ddc/rechargeBusiness?money=30&address=0x3fc6da539f8591250a2f989574646ab03cde7cba&transSn='.$rand;
  271. $res=curlRequest($url);
  272. print_r($res);die;
  273. //传递ddcid
  274. $url2='http://192.144.219.204:8083/ddc/getNonce';
  275. $nonce=curlRequest($url2);
  276. // $from = '0x8583c53ca3759f0893cb6c156b682e8fef22ed95';
  277. // $to = '0xf52a94d36dc81d48eed46a23b5397f822df0118e';
  278. $from = '0xf52a94d36dc81d48eed46a23b5397f822df0118e';
  279. $to = '0xf12ef3091e3169f0b79d7d224f0ab7fa5916945f';
  280. $ddcid ='10816';
  281. $url = "http://192.144.219.204:8083/ddc/transfer?from=$from&to=$to&ddcid=$ddcid&nonce=".$nonce;
  282. $res=curlRequest($url);
  283. print_r($res);die;
  284. $url = 'http://192.144.219.204:8083/ddc/createAccount';
  285. $result = file_get_contents($url);
  286. $result = json_decode($result,true);
  287. $name = rand(0,100);
  288. $url2 = "http://192.144.219.204:8083/ddc/createAddress?name=".$name."&account=".$result['address'];
  289. $res=curlRequest($url2);
  290. $result=json_decode($res,true);
  291. dump($result);
  292. }
  293. }