Timedtask.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560
  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;
  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. if ($this->redisNonceSetNx()){
  151. $nonce = $redis->get('nonce');
  152. $ddcid = $v['ddcid'];
  153. $url = "http://192.144.219.204:8083/ddc1155/safeTransferFrom?amount=1&ddcId=$ddcid&from=$from&nonce=$nonce&to=$to&ddcid=$ddcid";
  154. $res=curlRequest($url);
  155. $result=json_decode($res,true);
  156. if($result['code']){
  157. continue;
  158. }else{
  159. Db::name('store_order_info')
  160. ->where('id',$v['id'])
  161. ->update(['collectors_hash'=>$res,'collectors_hash_time'=>date('Y-m-d H:i:s')]);
  162. $redis->set('nonce',$nonce+1);
  163. $redis->del('noncenx');
  164. }
  165. }
  166. }
  167. },'id','desc');
  168. }
  169. /**
  170. * 藏品铸造hash 定时任务
  171. * @url /api/Timedtask/castingHash
  172. */
  173. public function castingHash(){
  174. set_time_limit(0);
  175. $redis = new Redis();
  176. $list = Db::name('store_collection')->where('is_deleted',0)->select();
  177. $id = 0;
  178. $set_count = 0;
  179. foreach ($list as &$v){
  180. // $info = Db::name('hash')->where('goods_id',$v['id'])->where('success',0)->count();
  181. // if ($info){
  182. // break;
  183. // }
  184. $count = $redis->get('castingHash_'.$v['id']);
  185. if ($count && $count>0){
  186. $id = $v['id'];
  187. $set_count = $count;
  188. break;
  189. }
  190. }
  191. if ($id){
  192. $address = '0xc472ec30ec813784b19872565e045c7153ea3f17';
  193. for ($i=0;$i<$set_count;$i++){
  194. // $url2='http://192.144.219.204:8083/ddc/getNonce';
  195. // $nonce=curlRequest($url2);
  196. if ($this->redisNonceSetNx()){
  197. $nonce = $redis->get('nonce');
  198. $str=$id.'-'.rand(100000000,999999999);
  199. $url='http://192.144.219.204:8083/ddc/createHash?address='.$address.'&ddcURI='.$str.'&nonce='.$nonce;
  200. $res=curlRequest($url);
  201. $result=json_decode($res,true);
  202. if($result['code']){
  203. continue;
  204. }else{
  205. $data['goods_id']=$id;
  206. $data['hash']=$res;
  207. $data['nonce'] = $nonce;
  208. $data['ddcURI'] = $str;
  209. if (Db::name('hash')->insert($data)){
  210. $redis->set('nonce',$nonce+1);
  211. $redis->del('noncenx');
  212. $redis->Decr('castingHash_'.$id); //减一
  213. }
  214. }
  215. }
  216. }
  217. }
  218. }
  219. /**
  220. * 铸造hash判断回执 定时任务
  221. * @url /api/Timedtask/transactionReceipt
  222. */
  223. public function transactionReceipt(){
  224. set_time_limit(0);
  225. Db::name('hash')->where('success',0)->where('id','neq','9748')->chunk(50,function ($list){
  226. $redis = new Redis();
  227. foreach ($list as &$v){
  228. echo $v['id']."<br />";
  229. $url = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$v['hash'];
  230. $res=curlRequest($url);
  231. Db::name('hash')->where('id',$v['id'])->update(['result'=>$res]);
  232. $result3=json_decode($res,true);
  233. //dump($result3);
  234. if (isset($result3['status']) && $result3['status']=='0x1'){
  235. $url4='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
  236. $ddcid=curlRequest($url4);
  237. echo $ddcid."<br />";
  238. $result4=json_decode($ddcid,true);
  239. if($result4['code']){
  240. }else{
  241. $update_data['success'] = 1;
  242. $update_data['ddcid'] = $ddcid;
  243. if (Db::name('hash')->where('id',$v['id'])->update($update_data)){
  244. //存入reids list
  245. $redis_data = ['hash'=>$v['hash'],'create_at'=>date('Y-m-d H:i:s')];
  246. $redis->rPush('collectionHash_'.$v['goods_id'],json_encode($redis_data));
  247. }
  248. }
  249. }
  250. }
  251. },'id', 'asc');
  252. }
  253. /**
  254. * 铸造失败的再次生成hash
  255. * @url /api/Timedtask/castingHashAgain
  256. */
  257. public function castingHashAgain(){
  258. set_time_limit(0);
  259. Db::name('hash')
  260. ->where('success',0)
  261. ->where('id','neq','9748')
  262. ->whereNotNull('result')
  263. ->chunk(50,function ($list){
  264. $redis = new Redis();
  265. foreach ($list as &$v){
  266. $info = json_decode($v['result'],true);
  267. echo $v['id']."<br />";
  268. dump($info);
  269. if ($info['code']=='500'){
  270. $url = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$v['hash'];
  271. $res=curlRequest($url);
  272. Db::name('hash')->where('id',$v['id'])->update(['result'=>$res]);
  273. $result3=json_decode($res,true);
  274. if (isset($result3['status']) && $result3['status']=='0x1'){
  275. $update_data['success'] = 1;
  276. $url4='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
  277. $ddcid=curlRequest($url4);
  278. $result4=json_decode($ddcid,true);
  279. if($result4['code']){
  280. }else{
  281. $update_data['ddcid'] = $ddcid;
  282. }
  283. if (Db::name('hash')->where('id',$v['id'])->update($update_data)){
  284. //存入reids list
  285. $redis_data = ['hash'=>$v['hash'],'create_at'=>date('Y-m-d H:i:s')];
  286. $redis->rPush('collectionHash_'.$v['goods_id'],json_encode($redis_data));
  287. }
  288. }
  289. }
  290. }
  291. },'id', 'asc');
  292. }
  293. /**
  294. * 发放hash
  295. * @url /api/Timedtask/sendHash
  296. */
  297. public function sendHash(){
  298. set_time_limit(0);
  299. Db::name('store_order_info')
  300. ->whereNotNull('company_hash')
  301. ->whereIn('status','1,3')
  302. ->where('company_hash','neq','')
  303. ->where('type',1)
  304. ->where('collectors_hash','eq','')
  305. ->chunk('20',function ($list){
  306. $from = '0xc472ec30ec813784b19872565e045c7153ea3f17';
  307. $redis = new Redis();
  308. foreach ($list as &$v){
  309. if ($v['status']==1){
  310. $mid = $v['mid'];
  311. }elseif ($v['status']==3){
  312. $from = Db::name('store_member')->where('id',$v['to_mid'])->value('wallet_address');
  313. $mid = $v['to_mid'];
  314. }
  315. $to = Db::name('store_member')->where('id',$mid)->value('wallet_address');
  316. if (empty($to) || $to == ''){
  317. continue;
  318. }
  319. // $url2='http://192.144.219.204:8083/ddc/getNonce';
  320. // $nonce=curlRequest($url2);
  321. if ($this->redisNonceSetNx()){
  322. $nonce = $redis->get('nonce');
  323. $ddcid = $v['ddcid'];
  324. $url = "http://192.144.219.204:8083/ddc/transfer?from=$from&to=$to&ddcid=$ddcid&nonce=".$nonce;
  325. $res=curlRequest($url);
  326. echo $res.'<br />';
  327. $result=json_decode($res,true);
  328. if($result['code']){
  329. continue;
  330. }else{
  331. Db::name('store_order_info')
  332. ->where('id',$v['id'])
  333. ->update(['collectors_hash'=>$res,'collectors_hash_time'=>date('Y-m-d H:i:s')]);
  334. $redis->set('nonce',$nonce+1);
  335. $redis->del('noncenx');
  336. }
  337. }
  338. //$ddcid = Db::name('hash')->where('hash',$v['company_hash'])->value('ddcid');
  339. }
  340. },'id','desc');
  341. }
  342. /**
  343. * 终端账号充值业务费用及能量
  344. * /api/Timedtask/recharge
  345. */
  346. public function recharge(){
  347. set_time_limit(0);
  348. Db::name('store_order_info')
  349. ->whereIn('status','1,3')
  350. ->whereRaw("is_business=0 or is_gas=0")
  351. ->field('id,is_gas,is_business,gas,business,mid')
  352. ->chunk('20',function ($list){
  353. foreach ($list as &$v){
  354. $data = [];
  355. $address = Db::name('store_member')->where('id',$v['mid'])->value('wallet_address');
  356. // echo $address;die;
  357. if ($v['is_business']==0){
  358. $rand = get_order_sn();
  359. $money = '30';
  360. $url = "http://192.144.219.204:8083/ddc/rechargeBusiness?money=$money&address=$address&transSn=".$rand;
  361. $res=curlRequest($url);
  362. $result = json_decode($res,true);
  363. echo $address."<br />";
  364. // dump($result).'<br />';
  365. if (isset($result['code']) && $result['code']==0){
  366. $data['is_business'] = 1;
  367. $data['business'] = $money;
  368. }
  369. }
  370. if ($v['is_gas']==0){
  371. $rand2 = get_order_sn();
  372. $money2 = '40';
  373. $url2 = "http://192.144.219.204:8083/ddc/rechargeGas?money=$money2&address=$address&transSn=".$rand2;
  374. $res2=curlRequest($url2);
  375. $result2 = json_decode($res2,true);
  376. //print_r($result2)."<br />";
  377. if (isset($result2['code']) && $result2['code']==0){
  378. $data['is_gas'] = 1;
  379. $data['gas'] = $money2;
  380. }
  381. }
  382. if ($data){
  383. Db::name('store_order_info')->where('id',$v['id'])->update($data);
  384. }
  385. }
  386. },'id','asc');
  387. }
  388. /**
  389. * @title 创建链账户
  390. * @desc 创建链账户
  391. * @author Gavin
  392. * @url /api/Timedtask/createAddress
  393. * @method GET
  394. */
  395. public function createAddress(){
  396. set_time_limit(0);
  397. $member = Db::name('store_member')
  398. ->whereNull('wallet_address')
  399. ->field('id,offline_account,phone,wallet_address')->order('id asc')->limit(30)->select();
  400. foreach ($member as &$v){
  401. $offline_account = json_decode(getOfflineAccount(),true);
  402. $address = $offline_account['address'];
  403. $phone =$v['phone'];
  404. $phone .= rand(10000,99999);
  405. $url = "http://192.144.219.204:8083/ddc/createAddress?name=".$phone."&account=".$address;
  406. $res=curlRequest($url);
  407. $laddress = json_decode($res,true);
  408. //dump($laddress);
  409. if ($laddress['code']==0){
  410. $wallet_address = $laddress['data']['opbChainClientAddress'];
  411. Db::name('store_member')->where('id',$v['id'])->whereNull('wallet_address')->update(['wallet_address'=>$wallet_address]);
  412. }
  413. }
  414. }
  415. /**
  416. * 创建ddcid
  417. * @url /api/Timedtask/ddcid
  418. */
  419. public function ddcid()
  420. {
  421. set_time_limit(0);
  422. Db::name('hash')->where('ddcid',NULL)->chunk('30',function ($list){
  423. foreach($list as $k=>$v){
  424. $url='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
  425. $res=curlRequest($url);
  426. $result=json_decode($res,true);
  427. if($result['code']){
  428. continue;
  429. }else{
  430. Db::table('hash')->where('id',$v['id'])->update(['ddcid'=>$res]);
  431. }
  432. }
  433. },'id','asc');
  434. }
  435. /**
  436. * 开通官方ddc
  437. * @url /api/Timedtask/openOfficialDDc
  438. */
  439. public function openOfficialDDc(){
  440. set_time_limit(0);
  441. Db::name('store_member')
  442. ->where('is_open_official_DDC',0)
  443. ->whereNotNull('wallet_address')
  444. ->field('id,wallet_address,is_open_official_DDC')
  445. ->chunk(50,function ($list){
  446. foreach ($list as &$v){
  447. $url = 'http://192.144.219.204:8083/ddc/status?address='.$v['wallet_address'];
  448. $res=curlRequest($url);
  449. $result = json_decode($res,true);
  450. if (isset($result) && $result['data']['platformSetState']!=2 && $result['data']['opsPlatformState']!=2){
  451. $url2 = 'http://192.144.219.204:8083/ddc/official?address='.$v['wallet_address'];
  452. $res2=curlRequest($url2);
  453. $result2 = json_decode($res2,true);
  454. if ($result2['code']==0){
  455. Db::name('store_member')->where('id',$v['id'])->update(['is_open_official_DDC'=>1]);
  456. }
  457. }else{
  458. Db::name('store_member')->where('id',$v['id'])->update(['is_open_official_DDC'=>1]);
  459. }
  460. }
  461. },'id','asc');
  462. }
  463. /**
  464. * redis nonce加锁
  465. */
  466. function redisNonceSetNx(){
  467. $redis = new Redis();
  468. $key = 'noncenx';
  469. $exptime = 10;
  470. $is_lock = $redis->setnx($key,time()+$exptime);
  471. if ($is_lock){
  472. return true;
  473. }else{
  474. //加锁失败的情况下,判断锁是否已经存在,如果存在切已经过期,删除锁,重新加锁
  475. $val = $redis->get($key);
  476. if ($val && $val<time()){
  477. $redis->del($key);
  478. }
  479. return $redis->setnx($key,time()+$exptime);
  480. }
  481. }
  482. }