Timedtask.php 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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. for ($i=0;$i<$set_count;$i++){
  112. if ($i<$set_count){
  113. $url ="http://39.107.12.194:8088/creatGoods?commodityId=".$id;
  114. $res=curlRequest($url);
  115. $result=json_decode($res,true);
  116. if (isset($result) && $result['code']=='200'){
  117. $data['goods_id']=$id;
  118. $data['hash']=$result['result']['hash'];
  119. if (Db::name('hash')->insert($data)){
  120. $redis->Decr('castingHash_'.$id); //减一
  121. //存入reids list
  122. $redis_data = ['hash'=>$data['hash'],'create_at'=>date('Y-m-d H:i:s')];
  123. $redis->rPush('collectionHash_'.$id,json_encode($redis_data));
  124. }
  125. }
  126. }else{
  127. $redis->del('hash_'.$id);
  128. }
  129. }
  130. }
  131. }else{
  132. $redis->del('hash_'.$id);
  133. }
  134. }
  135. /**
  136. * 发放hash
  137. * @url /api/Timedtask/sendHash
  138. */
  139. public function sendHash(){
  140. set_time_limit(0);
  141. Db::name('store_order_info')
  142. ->whereNotNull('company_hash')
  143. ->whereIn('status','1,3')
  144. ->where('company_hash','neq','')
  145. ->where('collectors_hash','eq','')
  146. ->chunk(50,function ($list){
  147. foreach ($list as &$v){
  148. if ($v['status']==1){
  149. $from = 'wyg';
  150. }elseif ($v['status']==3){
  151. $from = Db::name('store_member')->where('id',$v['to_mid'])->value('accountName');
  152. }
  153. $to = Db::name('store_member')->where('id',$v['mid'])->value('accountName');
  154. $url="http://39.107.12.194:8088/transfer?fromAccountName=$from&commodityHash=".$v['company_hash']."&toAccountName=".$to;
  155. $res =curlRequest($url);
  156. echo $res;
  157. $result=json_decode($res,true);
  158. if (isset($result) && $result['code']=='200'){
  159. Db::name('store_order_info')->where('id',$v['id'])
  160. ->update(['collectors_hash'=>$result['result']['hash'],'collectors_hash_time'=>date('Y-m-d H:i:s')]);
  161. }
  162. }
  163. },'id','asc');
  164. }
  165. /**
  166. * @title 创建链账户
  167. * @desc 创建链账户
  168. * @author Gavin
  169. * @url /api/Timedtask/createAddress
  170. * @method GET
  171. */
  172. public function createAddress(){
  173. set_time_limit(0);
  174. $member = Db::name('store_member')->where('wallet_address','eq','')->field('id,phone,wallet_address')->order('id asc')->limit(30)->select();
  175. foreach ($member as &$v){
  176. $phone = $v['phone'];
  177. $wallet_address = getWalletAddress($phone);
  178. //dump($wallet_address);
  179. if ($wallet_address){
  180. Db::name('store_member')->where('id',$v['id'])->update(['accountName'=>$phone,'wallet_address'=>$wallet_address]);
  181. }else{
  182. $phone = $v['phone'].rand(10000,99999);
  183. $wallet_address = getWalletAddress($phone);
  184. if ($wallet_address){
  185. Db::name('store_member')->where('id',$v['id'])->update(['accountName'=>$phone,'wallet_address'=>$wallet_address]);
  186. }
  187. }
  188. }
  189. }
  190. /**
  191. * redis 加锁
  192. */
  193. function redisCreateSetNx($id){
  194. $redis = new Redis();
  195. $key = 'hash_'.$id;
  196. $exptime = 300;
  197. $is_lock = $redis->setnx($key,time()+$exptime);
  198. if ($is_lock){
  199. return true;
  200. }else{
  201. //加锁失败的情况下,判断锁是否已经存在,如果存在切已经过期,删除锁,重新加锁
  202. $val = $redis->get($key);
  203. if ($val && $val<time()){
  204. $redis->del($key);
  205. }
  206. return $redis->setnx($key,time()+$exptime);
  207. }
  208. }
  209. }