Timedtask.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  1. <?php
  2. namespace app\api\controller;
  3. use AlibabaCloud\Client\AlibabaCloud;
  4. use AlibabaCloud\Client\Exception\ClientException;
  5. use AlibabaCloud\Client\Exception\ServerException;
  6. use think\cache\driver\Redis;
  7. use think\Db;
  8. use think\Exception;
  9. /**
  10. * @title 定时任务
  11. * Class Timedtask
  12. * @controller Timedtask
  13. * @group base
  14. */
  15. class Timedtask
  16. {
  17. /**
  18. * @title 取消订单定时任务
  19. * @desc 未支付的自动取消
  20. * @author Gavin
  21. * @url /api/Timedtask/cancelGoodsOrder
  22. * @method GET
  23. */
  24. public function cancelGoodsOrder(){
  25. $CancelTime = getCancelTime();
  26. $list = Db::name('store_order')->where('status',0)->select();
  27. foreach ($list as &$v){
  28. $cancel_time = strtotime($v['create_at'])+($CancelTime*60);
  29. if ($cancel_time<time()){
  30. //修改订单状态
  31. Db::name('store_order')->where('id',$v['id'])->update(['status'=>2,'cancel_at'=>date('Y-m-d H:i:s'),'cancel_state'=>1]);
  32. //增加数据库库存
  33. Db::name('store_collection')->where('id',$v['c_id'])->setInc('now_inventory',$v['num']);
  34. //增加用户抢购卡数量
  35. Db::name('store_member')->where('id',$v['mid'])->setInc('snap_card');
  36. //加上库存
  37. addCollectionInventory($v['c_id'],$v['num']);
  38. //减少用户购买数量
  39. DecrByCount($v['mid'],$v['c_id'],$v['num']);
  40. //加上抢购卡数量
  41. addMembercard($v['mid']);
  42. }
  43. }
  44. }
  45. /**
  46. * 藏品铸造hash 定时任务
  47. * @url /api/Timedtask/castingHash
  48. */
  49. public function castingHash1(){
  50. set_time_limit(0);
  51. $redis = new Redis();
  52. $list = Db::name('store_collection')->where('is_deleted',0)->select();
  53. $id = 0;
  54. $set_count = 0;
  55. foreach ($list as &$v){
  56. $count = $redis->get('castingHash_'.$v['id']);
  57. if ($count && $count>0){
  58. $id = $v['id'];
  59. $set_count = $count;
  60. break;
  61. }
  62. }
  63. if ($id){
  64. $redis = new Redis();
  65. if ($this->redisNonceSetNx()){
  66. $nonce = $redis->get('nonce');
  67. $address = '0xc472ec30ec813784b19872565e045c7153ea3f17';
  68. $str=$id.rand(100000000,999999999);
  69. $url2 = "http://192.144.219.204:8083/ddc1155/safeMint?amount=$set_count&ddcURI=$str&nonce=$nonce&to=".$address;
  70. $res2=curlRequest($url2);
  71. echo $res2;die;
  72. $result=json_decode($res2,true);
  73. if($result['code']){
  74. }else{
  75. $data['goods_id']=$id;
  76. $data['hash']=$res2;
  77. $data['nonce'] = $nonce;
  78. $data['ddcURI'] = $str;
  79. $data['amout']= $set_count;
  80. if (Db::name('hash2')->insert($data)){
  81. $redis->set('nonce',$nonce+1);
  82. $redis->del('noncenx');
  83. $redis->del('castingHash_'.$id);
  84. }
  85. }
  86. }
  87. }
  88. }
  89. /**
  90. * 铸造hash判断回执 定时任务
  91. * @url /api/Timedtask/transactionReceipt
  92. */
  93. public function transactionReceipt1(){
  94. set_time_limit(0);
  95. Db::name('hash2')->where('success',0)->chunk(50,function ($list){
  96. $redis = new Redis();
  97. foreach ($list as &$v){
  98. $hash_count = $redis->get('hash_'.$v['id']);
  99. if ($hash_count>=5){
  100. Db::name('hash2')->where('id',$v['id'])->delete();
  101. $redis->Incrby('castingHash_'.$v['id'],$v['amout']);
  102. }else{
  103. $url = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$v['hash'];
  104. $res=curlRequest($url);
  105. Db::name('hash2')->where('id',$v['id'])->update(['result'=>$res]);
  106. $result3=json_decode($res,true);
  107. if (isset($result3['status']) && $result3['status']=='0x1') {
  108. $url4='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
  109. $ddcid=curlRequest($url4);
  110. $result4=json_decode($ddcid,true);
  111. if($result4['code']){
  112. }else{
  113. $update_data['success'] = 1;
  114. $update_data['ddcid']=$ddcid;
  115. Db::name('hash2')->where('id', $v['id'])->update($update_data);
  116. }
  117. }else{
  118. $redis->Incrby('hash_'.$v['id'],1);
  119. }
  120. }
  121. }
  122. },'id', 'asc');
  123. }
  124. /**
  125. * 发放hash
  126. * @url /api/Timedtask/sendHash
  127. */
  128. public function sendHash1(){
  129. set_time_limit(0);
  130. Db::name('store_order_info')
  131. ->whereNotNull('company_hash')
  132. ->whereIn('status','1,3')
  133. ->where('company_hash','neq','')
  134. ->where('type',2)
  135. ->where('collectors_hash','eq','')
  136. ->chunk('20',function ($list){
  137. $from = '0xc472ec30ec813784b19872565e045c7153ea3f17';
  138. $redis = new Redis();
  139. foreach ($list as &$v){
  140. if ($v['status']==1){
  141. $mid = $v['mid'];
  142. }elseif ($v['status']==3){
  143. $from = Db::name('store_member')->where('id',$v['to_mid'])->value('wallet_address');
  144. $mid = $v['to_mid'];
  145. }
  146. $to = Db::name('store_member')->where('id',$mid)->value('wallet_address');
  147. if (empty($to) || $to == ''){
  148. continue;
  149. }
  150. // $url2='http://192.144.219.204:8083/ddc/getNonce';
  151. // $nonce=curlRequest($url2);
  152. if ($this->redisNonceSetNx()){
  153. $nonce = $redis->get('nonce');
  154. $ddcid = $v['ddcid'];
  155. $url = "http://192.144.219.204:8083/ddc1155/safeTransferFrom?amount=1&ddcId=$ddcid&from=$from&nonce=$nonce&to=$to&ddcid=$ddcid";
  156. $res=curlRequest($url);
  157. $result=json_decode($res,true);
  158. if($result['code']){
  159. continue;
  160. }else{
  161. Db::name('store_order_info')
  162. ->where('id',$v['id'])
  163. ->update(['collectors_hash'=>$res,'collectors_hash_time'=>date('Y-m-d H:i:s')]);
  164. $redis->set('nonce',$nonce+1);
  165. $redis->del('noncenx');
  166. }
  167. }
  168. //$ddcid = Db::name('hash')->where('hash',$v['company_hash'])->value('ddcid');
  169. }
  170. },'id','desc');
  171. }
  172. /**
  173. * 藏品铸造hash 定时任务
  174. * @url /api/Timedtask/castingHash
  175. */
  176. public function castingHash(){
  177. set_time_limit(0);
  178. $redis = new Redis();
  179. $list = Db::name('store_collection')->where('is_deleted',0)->select();
  180. $id = 0;
  181. $set_count = 0;
  182. foreach ($list as &$v){
  183. // $info = Db::name('hash')->where('goods_id',$v['id'])->where('success',0)->count();
  184. // if ($info){
  185. // break;
  186. // }
  187. $count = $redis->get('castingHash_'.$v['id']);
  188. if ($count && $count>0){
  189. $id = $v['id'];
  190. $set_count = $count;
  191. break;
  192. }
  193. }
  194. if ($id){
  195. $address = '0xc472ec30ec813784b19872565e045c7153ea3f17';
  196. for ($i=0;$i<$set_count;$i++){
  197. // $url2='http://192.144.219.204:8083/ddc/getNonce';
  198. // $nonce=curlRequest($url2);
  199. if ($this->redisNonceSetNx()){
  200. $nonce = $redis->get('nonce');
  201. $str=$id.'-'.rand(100000000,999999999);
  202. $url='http://192.144.219.204:8083/ddc/createHash?address='.$address.'&ddcURI='.$str.'&nonce='.$nonce;
  203. $res=curlRequest($url);
  204. $result=json_decode($res,true);
  205. if($result['code']){
  206. continue;
  207. }else{
  208. $data['goods_id']=$id;
  209. $data['hash']=$res;
  210. $data['nonce'] = $nonce;
  211. $data['ddcURI'] = $str;
  212. if (Db::name('hash')->insert($data)){
  213. $redis->set('nonce',$nonce+1);
  214. $redis->del('noncenx');
  215. $redis->Decr('castingHash_'.$id); //减一
  216. }
  217. }
  218. }
  219. }
  220. }
  221. }
  222. /**
  223. * 铸造hash判断回执 定时任务
  224. * @url /api/Timedtask/transactionReceipt
  225. */
  226. public function transactionReceipt(){
  227. set_time_limit(0);
  228. Db::name('hash')->where('success',0)->where('id','neq','9748')->chunk(50,function ($list){
  229. $redis = new Redis();
  230. foreach ($list as &$v){
  231. echo $v['id']."<br />";
  232. $url = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$v['hash'];
  233. $res=curlRequest($url);
  234. Db::name('hash')->where('id',$v['id'])->update(['result'=>$res]);
  235. $result3=json_decode($res,true);
  236. //dump($result3);
  237. if (isset($result3['status']) && $result3['status']=='0x1'){
  238. $url4='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
  239. $ddcid=curlRequest($url4);
  240. echo $ddcid."<br />";
  241. $result4=json_decode($ddcid,true);
  242. if($result4['code']){
  243. }else{
  244. $update_data['success'] = 1;
  245. $update_data['ddcid'] = $ddcid;
  246. if (Db::name('hash')->where('id',$v['id'])->update($update_data)){
  247. //存入reids list
  248. $redis_data = ['hash'=>$v['hash'],'create_at'=>date('Y-m-d H:i:s')];
  249. $redis->rPush('collectionHash_'.$v['goods_id'],json_encode($redis_data));
  250. }
  251. }
  252. }
  253. }
  254. },'id', 'asc');
  255. }
  256. /**
  257. * 铸造失败的再次生成hash
  258. * @url /api/Timedtask/castingHashAgain
  259. */
  260. public function castingHashAgain(){
  261. set_time_limit(0);
  262. Db::name('hash')
  263. ->where('success',0)
  264. ->where('id','neq','9748')
  265. ->whereNotNull('result')
  266. ->chunk(50,function ($list){
  267. $redis = new Redis();
  268. foreach ($list as &$v){
  269. $info = json_decode($v['result'],true);
  270. echo $v['id']."<br />";
  271. dump($info);
  272. if ($info['code']=='500'){
  273. $url = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$v['hash'];
  274. $res=curlRequest($url);
  275. Db::name('hash')->where('id',$v['id'])->update(['result'=>$res]);
  276. $result3=json_decode($res,true);
  277. if (isset($result3['status']) && $result3['status']=='0x1'){
  278. $update_data['success'] = 1;
  279. $url4='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
  280. $ddcid=curlRequest($url4);
  281. $result4=json_decode($ddcid,true);
  282. if($result4['code']){
  283. }else{
  284. $update_data['ddcid'] = $ddcid;
  285. }
  286. if (Db::name('hash')->where('id',$v['id'])->update($update_data)){
  287. //存入reids list
  288. $redis_data = ['hash'=>$v['hash'],'create_at'=>date('Y-m-d H:i:s')];
  289. $redis->rPush('collectionHash_'.$v['goods_id'],json_encode($redis_data));
  290. }
  291. }
  292. }
  293. }
  294. },'id', 'asc');
  295. }
  296. /**
  297. * 发放hash
  298. * @url /api/Timedtask/sendHash
  299. */
  300. public function sendHash(){
  301. set_time_limit(0);
  302. Db::name('store_order_info')
  303. ->whereNotNull('company_hash')
  304. ->whereIn('status','1,3')
  305. ->where('company_hash','neq','')
  306. ->where('type',1)
  307. ->where('collectors_hash','eq','')
  308. ->chunk('20',function ($list){
  309. $from = '0xc472ec30ec813784b19872565e045c7153ea3f17';
  310. $redis = new Redis();
  311. foreach ($list as &$v){
  312. if ($v['status']==1){
  313. $mid = $v['mid'];
  314. }elseif ($v['status']==3){
  315. $from = Db::name('store_member')->where('id',$v['to_mid'])->value('wallet_address');
  316. $mid = $v['to_mid'];
  317. }
  318. $to = Db::name('store_member')->where('id',$mid)->value('wallet_address');
  319. if (empty($to) || $to == ''){
  320. continue;
  321. }
  322. // $url2='http://192.144.219.204:8083/ddc/getNonce';
  323. // $nonce=curlRequest($url2);
  324. if ($this->redisNonceSetNx()){
  325. $nonce = $redis->get('nonce');
  326. $ddcid = $v['ddcid'];
  327. $url = "http://192.144.219.204:8083/ddc/transfer?from=$from&to=$to&ddcid=$ddcid&nonce=".$nonce;
  328. $res=curlRequest($url);
  329. echo $res.'<br />';
  330. $result=json_decode($res,true);
  331. if($result['code']){
  332. continue;
  333. }else{
  334. Db::name('store_order_info')
  335. ->where('id',$v['id'])
  336. ->update(['collectors_hash'=>$res,'collectors_hash_time'=>date('Y-m-d H:i:s')]);
  337. $redis->set('nonce',$nonce+1);
  338. $redis->del('noncenx');
  339. }
  340. }
  341. //$ddcid = Db::name('hash')->where('hash',$v['company_hash'])->value('ddcid');
  342. }
  343. },'id','desc');
  344. }
  345. /**
  346. * 终端账号充值业务费用及能量
  347. * /api/Timedtask/recharge
  348. */
  349. public function recharge(){
  350. set_time_limit(0);
  351. Db::name('store_order_info')
  352. ->whereIn('status','1,3')
  353. ->whereRaw("is_business=0 or is_gas=0")
  354. ->field('id,is_gas,is_business,gas,business,mid')
  355. ->chunk('20',function ($list){
  356. foreach ($list as &$v){
  357. $data = [];
  358. $address = Db::name('store_member')->where('id',$v['mid'])->value('wallet_address');
  359. // echo $address;die;
  360. if ($v['is_business']==0){
  361. $rand = get_order_sn();
  362. $money = '30';
  363. $url = "http://192.144.219.204:8083/ddc/rechargeBusiness?money=$money&address=$address&transSn=".$rand;
  364. $res=curlRequest($url);
  365. $result = json_decode($res,true);
  366. echo $address."<br />";
  367. // dump($result).'<br />';
  368. if (isset($result['code']) && $result['code']==0){
  369. $data['is_business'] = 1;
  370. $data['business'] = $money;
  371. }
  372. }
  373. if ($v['is_gas']==0){
  374. $rand2 = get_order_sn();
  375. $money2 = '40';
  376. $url2 = "http://192.144.219.204:8083/ddc/rechargeGas?money=$money2&address=$address&transSn=".$rand2;
  377. $res2=curlRequest($url2);
  378. $result2 = json_decode($res2,true);
  379. //print_r($result2)."<br />";
  380. if (isset($result2['code']) && $result2['code']==0){
  381. $data['is_gas'] = 1;
  382. $data['gas'] = $money2;
  383. }
  384. }
  385. if ($data){
  386. Db::name('store_order_info')->where('id',$v['id'])->update($data);
  387. }
  388. }
  389. },'id','asc');
  390. }
  391. /**
  392. * @title 创建链账户
  393. * @desc 创建链账户
  394. * @author Gavin
  395. * @url /api/Timedtask/createAddress
  396. * @method GET
  397. */
  398. public function createAddress(){
  399. set_time_limit(0);
  400. $member = Db::name('store_member')
  401. ->whereNull('wallet_address')
  402. ->field('id,offline_account,phone,wallet_address')->order('id asc')->limit(30)->select();
  403. foreach ($member as &$v){
  404. $offline_account = json_decode(getOfflineAccount(),true);
  405. $address = $offline_account['address'];
  406. $phone =$v['phone'];
  407. $phone .= rand(10000,99999);
  408. $url = "http://192.144.219.204:8083/ddc/createAddress?name=".$phone."&account=".$address;
  409. $res=curlRequest($url);
  410. $laddress = json_decode($res,true);
  411. //dump($laddress);
  412. if ($laddress['code']==0){
  413. $wallet_address = $laddress['data']['opbChainClientAddress'];
  414. Db::name('store_member')->where('id',$v['id'])->whereNull('wallet_address')->update(['wallet_address'=>$wallet_address]);
  415. }
  416. }
  417. }
  418. /**
  419. * 创建ddcid
  420. * @url /api/Timedtask/ddcid
  421. */
  422. public function ddcid()
  423. {
  424. set_time_limit(0);
  425. Db::name('hash')->where('ddcid',NULL)->chunk('30',function ($list){
  426. foreach($list as $k=>$v){
  427. $url='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
  428. $res=curlRequest($url);
  429. $result=json_decode($res,true);
  430. if($result['code']){
  431. continue;
  432. }else{
  433. Db::table('hash')->where('id',$v['id'])->update(['ddcid'=>$res]);
  434. }
  435. }
  436. },'id','asc');
  437. }
  438. /**
  439. * 开通官方ddc
  440. * @url /api/Timedtask/openOfficialDDc
  441. */
  442. public function openOfficialDDc(){
  443. set_time_limit(0);
  444. Db::name('store_member')
  445. ->where('is_open_official_DDC',0)
  446. ->whereNotNull('wallet_address')
  447. ->field('id,wallet_address,is_open_official_DDC')
  448. ->chunk(50,function ($list){
  449. foreach ($list as &$v){
  450. $url = 'http://192.144.219.204:8083/ddc/status?address='.$v['wallet_address'];
  451. $res=curlRequest($url);
  452. $result = json_decode($res,true);
  453. if (isset($result) && $result['data']['platformSetState']!=2 && $result['data']['opsPlatformState']!=2){
  454. $url2 = 'http://192.144.219.204:8083/ddc/official?address='.$v['wallet_address'];
  455. $res2=curlRequest($url2);
  456. $result2 = json_decode($res2,true);
  457. if ($result2['code']==0){
  458. Db::name('store_member')->where('id',$v['id'])->update(['is_open_official_DDC'=>1]);
  459. }
  460. }else{
  461. Db::name('store_member')->where('id',$v['id'])->update(['is_open_official_DDC'=>1]);
  462. }
  463. }
  464. },'id','asc');
  465. }
  466. /**
  467. * redis nonce加锁
  468. */
  469. function redisNonceSetNx(){
  470. $redis = new Redis();
  471. $key = 'noncenx';
  472. $exptime = 10;
  473. $is_lock = $redis->setnx($key,time()+$exptime);
  474. if ($is_lock){
  475. return true;
  476. }else{
  477. //加锁失败的情况下,判断锁是否已经存在,如果存在切已经过期,删除锁,重新加锁
  478. $val = $redis->get($key);
  479. if ($val && $val<time()){
  480. $redis->del($key);
  481. }
  482. return $redis->setnx($key,time()+$exptime);
  483. }
  484. }
  485. }