Timedtask.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  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 castingHash(){
  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. // $info = Db::name('hash')->where('goods_id',$v['id'])->where('success',0)->count();
  57. // if ($info){
  58. // break;
  59. // }
  60. $count = $redis->get('castingHash_'.$v['id']);
  61. if ($count && $count>0){
  62. $id = $v['id'];
  63. $set_count = $count;
  64. break;
  65. }
  66. }
  67. if ($id){
  68. $address = '0xc472ec30ec813784b19872565e045c7153ea3f17';
  69. for ($i=0;$i<$set_count;$i++){
  70. $url2='http://192.144.219.204:8083/ddc/getNonce';
  71. $nonce=curlRequest($url2);
  72. $str=$id.'-'.rand(100000000,999999999);
  73. $url='http://192.144.219.204:8083/ddc/createHash?address='.$address.'&ddcURI='.$str.'&nonce='.$nonce;
  74. $res=curlRequest($url);
  75. $result=json_decode($res,true);
  76. if($result['code']){
  77. continue;
  78. }else{
  79. $data['goods_id']=$id;
  80. $data['hash']=$res;
  81. $data['nonce'] = $nonce;
  82. $data['ddcURI'] = $str;
  83. if (Db::name('hash')->insert($data)){
  84. $redis->Decr('castingHash_'.$id); //减一
  85. }
  86. }
  87. }
  88. }
  89. }
  90. /**
  91. * 铸造hash判断回执 定时任务
  92. * @url /api/Timedtask/transactionReceipt
  93. */
  94. public function transactionReceipt(){
  95. set_time_limit(0);
  96. Db::name('hash')->where('success',0)->where('id','neq','9748')->chunk(50,function ($list){
  97. $redis = new Redis();
  98. foreach ($list as &$v){
  99. echo $v['id']."<br />";
  100. $url = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$v['hash'];
  101. $res=curlRequest($url);
  102. Db::name('hash')->where('id',$v['id'])->update(['result'=>$res]);
  103. $result3=json_decode($res,true);
  104. dump($result3);
  105. if (isset($result3['status']) && $result3['status']=='0x1'){
  106. $update_data['success'] = 1;
  107. $url4='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
  108. $ddcid=curlRequest($url4);
  109. echo $ddcid."<br />";
  110. $result4=json_decode($ddcid,true);
  111. if($result4['code']){
  112. }else{
  113. $update_data['ddcid'] = $ddcid;
  114. }
  115. if (Db::name('hash')->where('id',$v['id'])->update($update_data)){
  116. //存入reids list
  117. $redis_data = ['hash'=>$v['hash'],'create_at'=>date('Y-m-d H:i:s')];
  118. $redis->rPush('collectionHash_'.$v['goods_id'],json_encode($redis_data));
  119. }
  120. }
  121. }
  122. },'id', 'asc');
  123. }
  124. /**
  125. * 铸造失败的再次生成hash
  126. * @url /api/Timedtask/castingHashAgain
  127. */
  128. public function castingHashAgain(){
  129. set_time_limit(0);
  130. Db::name('hash')
  131. ->where('success',0)
  132. ->where('id','neq','9748')
  133. ->whereNotNull('result')
  134. ->chunk(50,function ($list){
  135. $redis = new Redis();
  136. foreach ($list as &$v){
  137. $info = json_decode($v['result'],true);
  138. echo $v['id']."<br />";
  139. dump($info);
  140. if ($info['code']=='500'){
  141. $url = 'http://192.144.219.204:8083/ddc/getTransactionReceipt?hash='.$v['hash'];
  142. $res=curlRequest($url);
  143. Db::name('hash')->where('id',$v['id'])->update(['result'=>$res]);
  144. $result3=json_decode($res,true);
  145. if (isset($result3['status']) && $result3['status']=='0x1'){
  146. $update_data['success'] = 1;
  147. $url4='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
  148. $ddcid=curlRequest($url4);
  149. $result4=json_decode($ddcid,true);
  150. if($result4['code']){
  151. }else{
  152. $update_data['ddcid'] = $ddcid;
  153. }
  154. if (Db::name('hash')->where('id',$v['id'])->update($update_data)){
  155. //存入reids list
  156. $redis_data = ['hash'=>$v['hash'],'create_at'=>date('Y-m-d H:i:s')];
  157. $redis->rPush('collectionHash_'.$v['goods_id'],json_encode($redis_data));
  158. }
  159. }
  160. }
  161. }
  162. },'id', 'asc');
  163. }
  164. /**
  165. * 发放hash
  166. * @url /api/Timedtask/sendHash
  167. */
  168. public function sendHash(){
  169. set_time_limit(0);
  170. Db::name('store_order_info')
  171. ->whereNotNull('company_hash')
  172. ->whereIn('status','1,3')
  173. ->where('company_hash','neq','')
  174. ->where('collectors_hash','eq','')
  175. ->chunk('20',function ($list){
  176. $from = '0xc472ec30ec813784b19872565e045c7153ea3f17';
  177. foreach ($list as &$v){
  178. echo $v['id']."<br />";
  179. $url2='http://192.144.219.204:8083/ddc/getNonce';
  180. $nonce=curlRequest($url2);
  181. if ($v['status']==1){
  182. $mid = $v['mid'];
  183. }elseif ($v['status']==3){
  184. $from = Db::name('store_member')->where('id',$v['to_mid'])->value('wallet_address');
  185. $mid = $v['to_mid'];
  186. }
  187. $to = Db::name('store_member')->where('id',$mid)->value('wallet_address');
  188. if (empty($to) || $to == ''){
  189. continue;
  190. }
  191. $ddcid =Db::name('hash')->where('hash',$v['company_hash'])->value('ddcid');
  192. $url = "http://192.144.219.204:8083/ddc/transfer?from=$from&to=$to&ddcid=$ddcid&nonce=".$nonce;
  193. $res=curlRequest($url);
  194. echo $res.'<br />';
  195. $result=json_decode($res,true);
  196. if($result['code']){
  197. continue;
  198. }else{
  199. Db::name('store_order_info')->where('id',$v['id'])->update(['collectors_hash'=>$res,'collectors_hash_time'=>date('Y-m-d H:i:s')]);
  200. }
  201. }
  202. },'id','asc');
  203. }
  204. /**
  205. * 终端账号充值业务费用及能量
  206. * /api/Timedtask/recharge
  207. */
  208. public function recharge(){
  209. set_time_limit(0);
  210. Db::name('store_order_info')
  211. ->whereIn('status','1,3')
  212. ->whereRaw("is_business=0 or is_gas=0")
  213. ->field('id,is_gas,is_business,gas,business,mid')
  214. ->chunk('20',function ($list){
  215. foreach ($list as &$v){
  216. $data = [];
  217. $address = Db::name('store_member')->where('id',$v['mid'])->value('wallet_address');
  218. // echo $address;die;
  219. if ($v['is_business']==0){
  220. $rand = get_order_sn();
  221. $money = '30';
  222. $url = "http://192.144.219.204:8083/ddc/rechargeBusiness?money=$money&address=$address&transSn=".$rand;
  223. $res=curlRequest($url);
  224. $result = json_decode($res,true);
  225. echo $address."<br />";
  226. // dump($result).'<br />';
  227. if (isset($result['code']) && $result['code']==0){
  228. $data['is_business'] = 1;
  229. $data['business'] = $money;
  230. }
  231. }
  232. if ($v['is_gas']==0){
  233. $rand2 = get_order_sn();
  234. $money2 = '40';
  235. $url2 = "http://192.144.219.204:8083/ddc/rechargeGas?money=$money2&address=$address&transSn=".$rand2;
  236. $res2=curlRequest($url2);
  237. $result2 = json_decode($res2,true);
  238. //print_r($result2)."<br />";
  239. if (isset($result2['code']) && $result2['code']==0){
  240. $data['is_gas'] = 1;
  241. $data['gas'] = $money2;
  242. }
  243. }
  244. if ($data){
  245. Db::name('store_order_info')->where('id',$v['id'])->update($data);
  246. }
  247. }
  248. },'id','asc');
  249. }
  250. /**
  251. * @title 创建链账户
  252. * @desc 创建链账户
  253. * @author Gavin
  254. * @url /api/Timedtask/createAddress
  255. * @method GET
  256. */
  257. public function createAddress(){
  258. set_time_limit(0);
  259. Db::name('store_member')->whereNull('wallet_address')->chunk(30,function ($member){
  260. //dump($member);die;
  261. foreach ($member as &$v){
  262. //if (empty($v['offline_account']) || $v['offline_account']==''){
  263. $offline_accounts = getOfflineAccount();
  264. $v['offline_account'] =$offline_accounts;
  265. //}
  266. $offline_account = json_decode($v['offline_account'],true);
  267. $address = $offline_account['address'];
  268. $laddress = getWalletAddress($v['phone'].$v['id'],$address);
  269. dump($laddress);
  270. if ($laddress['code']==0){
  271. $wallet_address = $laddress['data']['opbChainClientAddress'];
  272. Db::name('store_member')->where('id',$v['id'])->update(['wallet_address'=>$wallet_address]);
  273. }
  274. }
  275. },'id','asc');
  276. }
  277. /**
  278. * 创建ddcid
  279. * @url /api/Timedtask/ddcid
  280. */
  281. public function ddcid()
  282. {
  283. set_time_limit(0);
  284. Db::name('hash')->where('ddcid',NULL)->chunk('30',function ($list){
  285. foreach($list as $k=>$v){
  286. $url='http://192.144.219.204:8083/ddc/createDdcid?hash='.$v['hash'];
  287. $res=curlRequest($url);
  288. $result=json_decode($res,true);
  289. if($result['code']){
  290. continue;
  291. }else{
  292. Db::table('hash')->where('id',$v['id'])->update(['ddcid'=>$res]);
  293. }
  294. }
  295. },'id','asc');
  296. }
  297. /**
  298. * 开通官方ddc
  299. * @url /api/Timedtask/openOfficialDDc
  300. */
  301. public function openOfficialDDc(){
  302. set_time_limit(0);
  303. Db::name('store_member')
  304. ->where('is_open_official_DDC',0)
  305. ->whereNotNull('wallet_address')
  306. ->field('id,wallet_address,is_open_official_DDC')
  307. ->chunk(50,function ($list){
  308. foreach ($list as &$v){
  309. $url = 'http://192.144.219.204:8083/ddc/status?address='.$v['wallet_address'];
  310. $res=curlRequest($url);
  311. $result = json_decode($res,true);
  312. if (isset($result) && $result['data']['platformSetState']!=2 && $result['data']['opsPlatformState']!=2){
  313. $url2 = 'http://192.144.219.204:8083/ddc/official?address='.$v['wallet_address'];
  314. $res2=curlRequest($url2);
  315. $result2 = json_decode($res2,true);
  316. if ($result2['code']==0){
  317. Db::name('store_member')->where('id',$v['id'])->update(['is_open_official_DDC'=>1]);
  318. }
  319. }else{
  320. Db::name('store_member')->where('id',$v['id'])->update(['is_open_official_DDC'=>1]);
  321. }
  322. }
  323. },'id','asc');
  324. }
  325. }