Timedtask.php 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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. if ($CancelTime<=0){
  27. die;
  28. }
  29. $redis = new Redis();
  30. $users = $redis->hkeys('buyUserInfo');
  31. if ($users){
  32. foreach ($users as &$value){
  33. $key = 'order_not_pay_'.$value;
  34. $len = $redis->hGetLen($key);
  35. if ($len){
  36. $list = $redis->hGetvals($key);
  37. foreach ($list as &$a){
  38. $info = json_decode($a,true);
  39. $cancel_time = strtotime($info['create_at'])+($CancelTime*60);
  40. if ($cancel_time<time()){
  41. $info['status'] = 2;
  42. $info['cancel_at'] = date('Y-m-d H:i:s');
  43. Db::name('store_order')->insert($info);
  44. //加上库存
  45. addCollectionInventory($info['c_id'],$info['num']);
  46. //减少用户购买数量
  47. DecrByCount($info['mid'],$info['c_id'],$info['num']);
  48. //删除数据
  49. $redis->hdel($key,$info['order_no']);
  50. }
  51. }
  52. }else{
  53. $redis->hdel('buyUserInfo',$value);
  54. }
  55. }
  56. }
  57. }
  58. /**
  59. * @title 二级市场未支付的自动取消
  60. * @desc 二级市场未支付的自动取消
  61. * @author Gavin
  62. * @url /api/Timedtask/SecondaryancelGoodsOrder
  63. * @method GET
  64. */
  65. public function SecondaryancelGoodsOrder(){
  66. $CancelTime = getConfigValue('secondary_cancel_time');
  67. if ($CancelTime<=0){
  68. die;
  69. }
  70. $list = Db::name('store_order_info_order')->where('status',0)->select();
  71. foreach ($list as &$v){
  72. $cancel_time = strtotime($v['create_at'])+($CancelTime*60);
  73. if ($cancel_time<time()){
  74. $info['status'] = 2;
  75. $info['cancel_at'] = date('Y-m-d H:i:s');
  76. Db::name('store_order_info_order')->where('id',$v['id'])->update($info);
  77. $cancle = [
  78. 'mid'=>$v['mid'],
  79. 'order_id'=>$v['id']
  80. ];
  81. Db::name('store_order_info_cancel_log')->insert($cancle);
  82. $time = date('Y-m-d H:i:s',time()-(60*60));
  83. $count = Db::name('store_order_info_cancel_log')->where('mid',$v['mid'])->where('create_at','gt',$time)->count();
  84. if ($count>2){
  85. $buy_time = date('Y-m-d H:i:s',time()+(24*60*60));
  86. Db::name('store_member')->where('id',$v['mid'])->update(['buy_time'=>$buy_time]);
  87. }
  88. }
  89. }
  90. }
  91. /**
  92. * 藏品铸造hash 定时任务
  93. * @url /api/Timedtask/castingHash
  94. */
  95. public function castingHash(){
  96. set_time_limit(0);
  97. $redis = new Redis();
  98. $list = Db::name('store_collection')->where('is_deleted',0)->select();
  99. $id = 0;
  100. $set_count = 0;
  101. foreach ($list as &$v){
  102. $count = $redis->get('castingHash_'.$v['id']);
  103. if ($count && $count>0){
  104. $id = $v['id'];
  105. $set_count = $count;
  106. break;
  107. }
  108. }
  109. if ($id){
  110. if ($this->redisCreateSetNx($id)){
  111. $account ='7ae68031830b48b5eeab6ea8c1adddd905502ea7d68f9ba51505744be4df59dd';
  112. $addr = Db::name('store_collection')->where('id',$id)->value('cover');
  113. for ($i=0;$i<$set_count;$i++){
  114. if ($i<$set_count){
  115. $url =getIpAddress()."IssueAddr?account=".$account."&nftId=".$id."&tokenUrl=".$addr;
  116. $res=curlRequest($url);
  117. $result=json_decode($res,true);
  118. if (isset($result) && $result['code']=='200'){
  119. $data['goods_id']=$id;
  120. $data['hash']=$result['result']['txHash'];
  121. $data['tokenid'] = $result['result']['tokenId'];
  122. if (Db::name('hash')->insert($data)){
  123. $redis->Decr('castingHash_'.$id); //减一
  124. //存入reids list
  125. $redis_data = ['hash'=>$data['hash'],'tokenid'=>$data['tokenid'],'create_at'=>date('Y-m-d H:i:s')];
  126. $redis->rPush('collectionHash_'.$id,json_encode($redis_data));
  127. }
  128. }
  129. }else{
  130. $redis->del('hash_'.$id);
  131. }
  132. }
  133. }
  134. }else{
  135. $redis->del('hash_'.$id);
  136. }
  137. }
  138. /**
  139. * 发放hash
  140. * @url /api/Timedtask/sendHash
  141. */
  142. public function sendHash(){
  143. set_time_limit(0);
  144. Db::name('store_order_info')
  145. ->whereNotNull('company_hash')
  146. ->whereIn('status','1,3')
  147. ->where('company_hash','neq','')
  148. ->where('collectors_hash','eq','')
  149. ->chunk(50,function ($list){
  150. foreach ($list as &$v){
  151. if ($v['status']==1){
  152. $from = '7ae68031830b48b5eeab6ea8c1adddd905502ea7d68f9ba51505744be4df59dd';
  153. }elseif ($v['status']==3){
  154. $from = Db::name('store_member')->where('id',$v['to_mid'])->value('wallet_address');
  155. }
  156. $to = Db::name('store_member')->where('id',$v['mid'])->value('wallet_address');
  157. $url=getIpAddress()."transferFrom?from=".$from."&to=".$to."&tokenId=".$v['ddcid'];
  158. $res =curlRequest($url);
  159. $result=json_decode($res,true);
  160. //dump($result);
  161. if (isset($result) && $result['code']=='200'){
  162. Db::name('store_order_info')->where('id',$v['id'])
  163. ->update(['collectors_hash'=>$result['result']['txHash'],'collectors_hash_time'=>date('Y-m-d H:i:s')]);
  164. }
  165. }
  166. },'id','asc');
  167. }
  168. /**
  169. * @title 创建链账户
  170. * @desc 创建链账户
  171. * @author Gavin
  172. * @url /api/Timedtask/createAddress
  173. * @method GET
  174. */
  175. public function createAddress(){
  176. set_time_limit(0);
  177. $member = Db::name('store_member')
  178. ->where('wallet_address','eq','')
  179. ->field('id,phone,wallet_address')
  180. ->order('id asc')
  181. ->limit(500)
  182. ->select();
  183. foreach ($member as &$v){
  184. $phone = $v['phone'];
  185. $wallet_address = getWalletAddress($phone);
  186. if ($wallet_address){
  187. Db::name('store_member')->where('id',$v['id'])->update(['accountName'=>$phone,'wallet_address'=>$wallet_address]);
  188. }else{
  189. $phone = $v['phone'].rand(10000,99999);
  190. $wallet_address = getWalletAddress($phone);
  191. if ($wallet_address){
  192. Db::name('store_member')->where('id',$v['id'])->update(['accountName'=>$phone,'wallet_address'=>$wallet_address]);
  193. }
  194. }
  195. }
  196. }
  197. /**
  198. * redis 加锁
  199. */
  200. function redisCreateSetNx($id){
  201. $redis = new Redis();
  202. $key = 'hash_'.$id;
  203. $exptime = 5;
  204. $is_lock = $redis->setnx($key,time()+$exptime);
  205. if ($is_lock){
  206. return true;
  207. }else{
  208. //加锁失败的情况下,判断锁是否已经存在,如果存在切已经过期,删除锁,重新加锁
  209. $val = $redis->get($key);
  210. if ($val && $val<time()){
  211. $redis->del($key);
  212. }
  213. return $redis->setnx($key,time()+$exptime);
  214. }
  215. }
  216. }