Login.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565
  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. use think\cache\driver\Redis;
  19. /**
  20. * @title 用户登录
  21. * @controller Login
  22. * @group worker
  23. */
  24. class Login extends Base
  25. {
  26. /**
  27. * @title 注册
  28. * @desc 注册
  29. * @url /api/Login/Register
  30. * @method POST
  31. * @tag 基础
  32. * @header
  33. * @param name:phone type:string require:1 desc:手机号
  34. * @param name:ver_code type:string require:1 desc:验证码
  35. * @param name:password type:string require:1 desc:密码
  36. * @param name:confirm_password type:string require:1 desc:确认密码
  37. * @param name:second_password type:string require:1 desc:二级密码
  38. * @param name:confirm_second_password type:string require:1 desc:二级确认密码
  39. * @param name:invite_code type:string require:0 desc:邀请码
  40. *
  41. */
  42. public function Register(){
  43. $phone = input('phone');
  44. $ver_code = input('ver_code');
  45. $password = input('password');
  46. $confirm_password = input('confirm_password');
  47. $second_password = input('second_password');
  48. $confirm_second_password = input('confirm_second_password');
  49. $invite_code = input('invite_code');
  50. if (!$phone || !$ver_code || !$password || !$confirm_password || !$second_password || !$confirm_second_password){
  51. $this->error('参数错误');
  52. }
  53. if (!Validate::regex($phone, "^1\d{10}$")) {
  54. $this->error('手机号格式错误');
  55. }
  56. //验证短信验证码
  57. $time = time()-60;
  58. $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'register'])
  59. ->where('createtime','>',$time)
  60. ->order('id', 'DESC')
  61. ->find();
  62. if (!$sms || $sms['code'] != $ver_code) $this->error('短信验证码不正确!');
  63. // if ($ver_code!=='123456') $this->error('验证码错误');
  64. $user = Db::name('store_member')
  65. ->where('is_deleted',0)
  66. ->where('phone',$phone)
  67. ->find();
  68. if ($user) $this->error('手机号已注册');
  69. if (!preg_match('/^[0-9a-z]{6,12}$/i',$password)) $this->error('密码格式错误,请输入6-12位数字+字母');
  70. if ($password!=$confirm_password) $this->error('密码与确认密码不一致');
  71. if (!preg_match('/^[0-9]{6}$/i',$second_password)) $this->error('二级密码格式错误,请输入6位纯数字');
  72. if ($second_password!=$confirm_second_password) $this->error('二级密码与确认密码不一致');
  73. if ($invite_code){
  74. $isset = Db::name('store_member')->where('is_deleted',0)->where('id',$invite_code)->find();
  75. if (!$isset) $this->error('邀请码不存在');
  76. }else{
  77. $invite_code = 0;
  78. }
  79. //钱包地址
  80. //$offlineaccount = getOfflineAccount();
  81. // $address = json_decode($offlineaccount,true)['address'];
  82. // $laddress = getWalletAddress($phone,$address);
  83. // if ($laddress['code']==0){
  84. // $wallet_address = $laddress['data']['opbChainClientAddress'];
  85. // }
  86. $data = [
  87. 'phone'=>$phone,
  88. 'pid'=>$invite_code,
  89. 'password'=>md5($password),
  90. 'second_password'=>md5($second_password),
  91. //'wallet_address'=>$wallet_address,
  92. //'offline_account'=>$offlineaccount
  93. ];
  94. $member_id = Db::name('store_member')->insertGetId($data);
  95. if ($member_id){
  96. $invite_img = setintivecode($member_id);
  97. $invite_address = getintiveaddress($member_id);
  98. Db::name('store_member')->where('id',$member_id)->update(['name'=>'收藏家'.$member_id,'invite_img'=>$invite_img,'invite_address'=>$invite_address]);
  99. //邀请好友送积分
  100. if ($invite_code>0){
  101. $invite_friends_integral = getConfigValue('invite_friends_integral');
  102. memberMoneyChange($invite_friends_integral,1,$invite_code,'邀请好友',1,$member_id);
  103. }
  104. $this->success('注册成功');
  105. }
  106. $this->error('注册失败');
  107. }
  108. /**
  109. * @title 登录
  110. * @desc 登录
  111. * @url /api/Login/passwordLogin
  112. * @method POST
  113. * @tag 基础
  114. * @header
  115. * @param name:phone type:int require:1 default:-- desc:手机号
  116. * @param name:password type:string require:1 default:-- desc:密码
  117. * @return name:token type:string default:-- desc:用户登录成功后的token值
  118. */
  119. public function passwordLogin()
  120. {
  121. $phone = input('phone');
  122. $password = input('password');
  123. if (empty($password) || empty($phone)) {
  124. $this->error('参数错误');
  125. }
  126. $member = Db::name('store_member')
  127. ->where('phone', $phone)
  128. ->where('is_deleted',0)
  129. ->find();
  130. if (!$member) $this->error('手机号未注册');
  131. if ($member['password']!=md5($password)) $this->error('密码错误');
  132. $token = self::create_jwt($member['id']);
  133. setMemberInfoHash($member['id']);
  134. Db::name('store_member')->where('id',$member['id'])->update(['token'=>$token]);
  135. $this->success('登录成功', $token);
  136. }
  137. //token加密
  138. public function create_jwt($uid)
  139. {
  140. $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到
  141. $time = time(); //签发时间
  142. $expire = $time + config('app.jwt_time'); //过期时间
  143. $token = array(
  144. "uid" => $uid,
  145. "iss" => "https://zain.com",//签发组织
  146. "aud" => "https://zain.com", //签发作者
  147. "iat" => $time,
  148. "nbf" => $time,
  149. "exp" => $expire
  150. );
  151. $jwt = JWT::encode($token, $key);
  152. return $jwt;
  153. }
  154. /**
  155. * @title 找回密码
  156. * @desc 找回密码
  157. * @url /api/Login/ForgetPassword
  158. * @method POST
  159. * @tag 基础
  160. * @header
  161. * @param name:phone type:int require:1 default:-- desc:手机号
  162. * @param name:ver_code type:string require:1 desc:验证码
  163. * @param name:password type:string require:1 default:-- desc:密码
  164. * @param name:confirm_password type:string require:1 desc:确认密码
  165. */
  166. public function ForgetPassword(){
  167. $phone = input('phone');
  168. $ver_code = input('ver_code');
  169. $password = input('password');
  170. $confirm_password = input('confirm_password');
  171. if (!$phone || !$ver_code || !$password || !$confirm_password) $this->error('参数错误');
  172. $member = Db::name('store_member')
  173. ->where('phone', $phone)
  174. ->where('is_deleted',0)
  175. ->find();
  176. if (!$member) $this->error('手机号未注册');
  177. //验证短信验证码
  178. $time = time()-60;
  179. $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'forgetpwd'])
  180. ->where('createtime','>',$time)
  181. ->order('id', 'DESC')
  182. ->find();
  183. if (!$sms || $sms['code'] != $ver_code) $this->error('短信验证码不正确!');
  184. if (!preg_match('/^[0-9a-z]{6,12}$/i',$password)) $this->error('密码格式错误,请输入6-12位数字+字母');
  185. if ($password!=$confirm_password) $this->error('密码与确认密码不一致');
  186. $data = [
  187. 'password'=>md5($password),
  188. 'update_at'=>date('Y-m-d H:i:s')
  189. ];
  190. if (Db::name('store_member')->where('id',$member['id'])->update($data)) $this->success('修改成功');
  191. $this->error('修改失败');
  192. }
  193. public function test(){
  194. $redis = new Redis();
  195. $nonce = $redis->get('nonce');
  196. $url2 = "http://192.144.219.204:8083/ddc1155/balanceOf?ddcId=10943&nonce=$nonce&owner=0xe02f6b7691dcb56c7971c3b07e09c29eb3efffad";
  197. $res2=curlRequest($url2);
  198. echo $res2;die;
  199. $url2='http://192.144.219.204:8083/ddc/getNonce';
  200. $nonce=curlRequest($url2);
  201. echo $nonce;die;
  202. $str=rand(100000000,999999999);
  203. $url2 = "http://192.144.219.204:8083/ddc1155/safeMint?amount=10&ddcURI=$str&nonce=$nonce&to=0xc472ec30ec813784b19872565e045c7153ea3f17";
  204. $res2=curlRequest($url2);
  205. $url = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$res2;
  206. $res=curlRequest($url);
  207. echo $res;die;
  208. $result2 = json_decode($res2,true);
  209. set_time_limit(0);
  210. $url2='http://192.144.219.204:8083/ddc/getNonce';
  211. $nonce=curlRequest($url2);
  212. echo $nonce;die;
  213. // $redis = new Redis();
  214. //$redis->set('nonce',$nonce);
  215. die;
  216. $list = Db::name('test')->where('error',1)->select();
  217. foreach ($list as &$v){
  218. $url2 = 'http://192.144.219.204:8083/ddc/official?address='.$v['key'];
  219. $res2=curlRequest($url2);
  220. $result2 = json_decode($res2,true);
  221. if ($result2['code']=='-1'){
  222. Db::name('test')->where('key',$v['key'])->update(['error'=>0]);
  223. }else if ($result2['code']==0){
  224. Db::name('test')->where('key',$v['key'])->update(['error'=>2]);
  225. }
  226. }
  227. die;
  228. $url2 = 'http://192.144.219.204:8083/ddc/official?address=0xd257295e958a7000fa572e5f114d1cae2ea5a279';
  229. $res2=curlRequest($url2);
  230. $result2 = json_decode($res2,true);
  231. print_r($result2);die;
  232. Db::name('store_order_info')
  233. ->whereNotNull('company_hash')
  234. ->whereIn('status','1')
  235. ->where('company_hash','neq','')
  236. ->where('collectors_hash','eq','')
  237. ->chunk('20',function ($list){
  238. $from = '0xc472ec30ec813784b19872565e045c7153ea3f17';
  239. foreach ($list as &$v){
  240. echo $v['id']."<br />";
  241. $url2='http://192.144.219.204:8083/ddc/getNonce';
  242. $nonce=curlRequest($url2);
  243. if ($v['status']==1){
  244. $mid = $v['mid'];
  245. }elseif ($v['status']==3){
  246. $from = Db::name('store_member')->where('id',$v['to_mid'])->value('wallet_address');
  247. $mid = $v['to_mid'];
  248. }
  249. $to = Db::name('store_member')->where('id',$mid)->value('wallet_address');
  250. if (empty($to) || $to == ''){
  251. continue;
  252. }
  253. //$ddcid = Db::name('hash')->where('hash',$v['company_hash'])->value('ddcid');
  254. $ddcid = $v['ddcid'];
  255. $url = "http://192.144.219.204:8083/ddc/transfer?from=$from&to=$to&ddcid=$ddcid&nonce=".$nonce;
  256. $res=curlRequest($url);
  257. echo $res.'<br />';
  258. $result=json_decode($res,true);
  259. if($result['code']){
  260. continue;
  261. }else{
  262. Db::name('store_order_info')
  263. ->where('id',$v['id'])
  264. ->update(['collectors_hash'=>$res,'collectors_hash_time'=>date('Y-m-d H:i:s')]);
  265. }
  266. }
  267. },'id','desc');
  268. die();
  269. $list = Db::name('store_order_info')->whereNull('ddcid')->select();
  270. foreach ($list as &$v){
  271. $hash = Db::name('hash')->where('goods_id',$v['c_id'])->where('success',1)->where('status',0)->order('id asc')->limit(1)->find();
  272. $data = [
  273. 'company_hash'=>$hash['hash'],
  274. 'ddcid'=>$hash['ddcid']
  275. ];
  276. Db::name('store_order_info')
  277. ->where('id',$v['id'])
  278. ->update($data);
  279. Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
  280. }
  281. dump($list);die;
  282. $list = Db::name('store_order_info')->where('c_id',0)->select();
  283. foreach ($list as &$v){
  284. $info = json_decode($v['pro_info'],true);
  285. Db::name('store_order_info')->where('id',$v['id'])->update(['c_id'=>$info['id']]);
  286. }
  287. die;
  288. Db::name('store_order_info')
  289. ->whereNotNull('company_hash')
  290. ->where('id','10100')
  291. ->whereIn('status','1,3')
  292. ->where('company_hash','neq','')
  293. ->where('collectors_hash','eq','')
  294. ->chunk('20',function ($list){
  295. $from = '0xc472ec30ec813784b19872565e045c7153ea3f17';
  296. foreach ($list as &$v){
  297. echo $v['id']."<br />";
  298. $url2='http://192.144.219.204:8083/ddc/getNonce';
  299. $nonce=curlRequest($url2);
  300. if ($v['status']==1){
  301. $mid = $v['mid'];
  302. }elseif ($v['status']==3){
  303. $from = Db::name('store_member')->where('id',$v['to_mid'])->value('wallet_address');
  304. $mid = $v['to_mid'];
  305. }
  306. $to = Db::name('store_member')->where('id',$mid)->value('wallet_address');
  307. if (empty($to) || $to == ''){
  308. continue;
  309. }
  310. $ddcid =Db::name('hash')->where('hash',$v['company_hash'])->value('ddcid');
  311. $url = "http://192.144.219.204:8083/ddc/transfer?from=$from&to=$to&ddcid=$ddcid&nonce=".$nonce;
  312. $res=curlRequest($url);
  313. echo $res.'<br />';
  314. $result=json_decode($res,true);
  315. if($result['code']){
  316. continue;
  317. }else{
  318. Db::name('store_order_info')->where('id',$v['id'])->update(['collectors_hash'=>$res,'collectors_hash_time'=>date('Y-m-d H:i:s')]);
  319. }
  320. }
  321. },'id','asc');
  322. die;
  323. $url = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash=0x3b27b0941070a9aac74c6315700557da112793aaa095702bb8308652c226bf71';
  324. $res=curlRequest($url);
  325. print_r($res);die;
  326. // $url = 'http://192.144.219.204:8083/ddc/status?address=0x3a1ca5e6fd0acfa43eeea3002cf4c72c86ad0d81';
  327. // $res=curlRequest($url);
  328. // $result = json_decode($res,true);
  329. // dump($result);
  330. // die;
  331. //
  332. // $url = 'http://192.144.219.204:8083/ddc/official?address=0x65f71404c42565c736536ec1e1ab29859d67b9d8';
  333. // $res=curlRequest($url);
  334. // $result = json_decode($res,true);
  335. // dump($result);
  336. // die;
  337. $list = Db::name('hash')->whereIn('id','4386')->select();
  338. foreach ($list as &$v){
  339. $url = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$v['hash'];
  340. $res=curlRequest($url);
  341. Db::name('hash')->where('id',$v['id'])->update(['result'=>$res]);
  342. $result3=json_decode($res,true);
  343. dump($result3);
  344. if (isset($result3['status']) && $result3['status']=='0x1'){
  345. $url4='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
  346. $ddcid=curlRequest($url4);
  347. echo 'ddcid:'.$ddcid."<br />";
  348. $result4=json_decode($ddcid,true);
  349. if($result4['code']){
  350. dump($result4);
  351. }else{
  352. $update_data['ddcid'] = $ddcid;
  353. }
  354. Db::name('hash')->where('id',$v['id'])->update($update_data);
  355. }
  356. }
  357. die;
  358. //
  359. // $member = Db::name('store_member')->where('id','100040')->select();
  360. // foreach ($member as &$v){
  361. // if (empty($v['offline_account']) || $v['offline_account']==''){
  362. // $offline_accounts = getOfflineAccount();
  363. // $v['offline_account'] =$offline_accounts;
  364. // }
  365. // $offline_account = json_decode($v['offline_account'],true);
  366. // $address = $offline_account['address'];
  367. // $laddress = getWalletAddress($v['phone'].$v['id'],$address);
  368. // dump($laddress);
  369. //// if ($laddress['code']==0){
  370. //// $wallet_address = $laddress['data']['opbChainClientAddress'];
  371. //// Db::name('store_member')->where('id',$v['id'])->update(['wallet_address'=>$wallet_address]);
  372. //// }
  373. // }
  374. // die;
  375. // $url3 = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash=0x29dd82a90fe77dd4581ed0e95d50588a4a5dfd7a5625e5b3530819d5235aefdf';
  376. // $res3=curlRequest($url3);
  377. // echo $res3;
  378. // die;
  379. // $list = Db::name('hash')->order('id desc')->limit(30)->select();
  380. // foreach ($list as &$v){
  381. // $url3 = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$v['hash'];
  382. // $res3=curlRequest($url3);
  383. // $result3=json_decode($res3,true);
  384. // if (isset($result3['status']) && $result3['status']=='0x1'){
  385. // echo "创建成功".$v['hash']."<br />";
  386. // }else{
  387. // echo "创建失败".$v['hash']."<br />";
  388. // }
  389. // }
  390. // die;
  391. // $url = 'http://192.144.219.204:8083/ddc/getNonce';
  392. // $res=curlRequest($url);
  393. // print_r($res);die;
  394. //充值能量
  395. // $rand = get_order_sn();
  396. // $url = 'http://192.144.219.204:8083/ddc/rechargeGas?money=40&address=0x3fc6da539f8591250a2f989574646ab03cde7cba&transSn='.$rand;
  397. // $res=curlRequest($url);
  398. // print_r($res);die;
  399. //充值业务费
  400. $rand = get_order_sn();
  401. $url = 'http://192.144.219.204:8083/ddc/rechargeBusiness?money=30&address=0x3fc6da539f8591250a2f989574646ab03cde7cba&transSn='.$rand;
  402. $res=curlRequest($url);
  403. print_r($res);die;
  404. //传递ddcid
  405. $url2='http://192.144.219.204:8083/ddc/getNonce';
  406. $nonce=curlRequest($url2);
  407. // $from = '0x8583c53ca3759f0893cb6c156b682e8fef22ed95';
  408. // $to = '0xf52a94d36dc81d48eed46a23b5397f822df0118e';
  409. $from = '0xf52a94d36dc81d48eed46a23b5397f822df0118e';
  410. $to = '0xf12ef3091e3169f0b79d7d224f0ab7fa5916945f';
  411. $ddcid ='10816';
  412. $url = "http://192.144.219.204:8083/ddc/transfer?from=$from&to=$to&ddcid=$ddcid&nonce=".$nonce;
  413. $res=curlRequest($url);
  414. print_r($res);die;
  415. $url = 'http://192.144.219.204:8083/ddc/createAccount';
  416. $result = file_get_contents($url);
  417. $result = json_decode($result,true);
  418. $name = rand(0,100);
  419. $url2 = "http://192.144.219.204:8083/ddc/createAddress?name=".$name."&account=".$result['address'];
  420. $res=curlRequest($url2);
  421. $result=json_decode($res,true);
  422. dump($result);
  423. }
  424. }