Timedtask.php 7.6 KB

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