Timedtask.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  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 ='1b8f045e1a2ccec82021e20bdac05e4e43e0c44e2d4086b726082b1bab320a0d';
  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. //存入reids list
  124. $redis_data = ['hash'=>$data['hash'],'tokenid'=>$data['tokenid'],'create_at'=>date('Y-m-d H:i:s')];
  125. $redis->rPush('collectionHash_'.$id,json_encode($redis_data));
  126. $redis->Decr('castingHash_'.$id); //减一
  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 send_my(){
  143. var_dump(12313);exit();
  144. }
  145. /**
  146. * 发放hash
  147. * @url /api/Timedtask/sendHash
  148. */
  149. public function sendHash(){
  150. set_time_limit(0);
  151. Db::name('store_order_info')
  152. ->whereNotNull('company_hash')
  153. ->whereIn('status','1,3')
  154. ->where('company_hash','neq','')
  155. ->where('collectors_hash','eq','')
  156. ->where('type',1)
  157. ->chunk(50,function ($list){
  158. foreach ($list as &$v){
  159. if ($v['status']==1){
  160. $from = '1b8f045e1a2ccec82021e20bdac05e4e43e0c44e2d4086b726082b1bab320a0d';
  161. }elseif ($v['status']==3){
  162. $from = Db::name('store_member')->where('id',$v['to_mid'])->value('wallet_address');
  163. }
  164. $to = Db::name('store_member')->where('id',$v['mid'])->value('wallet_address');
  165. $url=getIpAddress()."transferFrom?from=".$from."&to=".$to."&tokenId=".$v['ddcid'];
  166. $res =curlRequest($url);
  167. $result=json_decode($res,true);
  168. //dump($result);exit();
  169. if (isset($result['code']) && $result['code']=='200'){
  170. Db::name('store_order_info')->where('id',$v['id'])
  171. ->update(['collectors_hash'=>$result['result']['txHash'],'collectors_hash_time'=>date('Y-m-d H:i:s')]);
  172. }
  173. }
  174. },'id','asc');
  175. }
  176. /**
  177. * @title 创建链账户
  178. * @desc 创建链账户
  179. * @author Gavin
  180. * @url /api/Timedtask/createAddress
  181. * @method GET
  182. */
  183. public function createAddress(){
  184. set_time_limit(0);
  185. $member = Db::name('store_member')
  186. ->where('wallet_address','eq','')
  187. ->field('id,phone,wallet_address')
  188. ->order('id asc')
  189. ->limit(500)
  190. ->select();
  191. foreach ($member as &$v){
  192. $phone = $v['phone'];
  193. $wallet_address = getWalletAddress($phone);
  194. if ($wallet_address){
  195. Db::name('store_member')->where('id',$v['id'])->update(['accountName'=>$phone,'wallet_address'=>$wallet_address]);
  196. }else{
  197. $phone = $v['phone'].rand(10000,99999);
  198. $wallet_address = getWalletAddress($phone);
  199. if ($wallet_address){
  200. Db::name('store_member')->where('id',$v['id'])->update(['accountName'=>$phone,'wallet_address'=>$wallet_address]);
  201. }
  202. }
  203. }
  204. }
  205. /**
  206. * redis 加锁
  207. */
  208. function redisCreateSetNx($id){
  209. $redis = new Redis();
  210. $key = 'hash_'.$id;
  211. $exptime = 5;
  212. $is_lock = $redis->setnx($key,time()+$exptime);
  213. if ($is_lock){
  214. return true;
  215. }else{
  216. //加锁失败的情况下,判断锁是否已经存在,如果存在切已经过期,删除锁,重新加锁
  217. $val = $redis->get($key);
  218. if ($val && $val<time()){
  219. $redis->del($key);
  220. }
  221. return $redis->setnx($key,time()+$exptime);
  222. }
  223. }
  224. /**
  225. * redis 更新用户钱包地址
  226. */
  227. function update_wallet(){
  228. $member = Db::name('store_member')->field('id,phone')->where('id','>',600)->select();
  229. $member_id = array();
  230. foreach ($member as $value){
  231. $url = '120.76.248.160:8088/queryAccount?accountName='.$value['phone'];
  232. $res=curlRequest($url);
  233. if ($res){
  234. $res = json_decode($res,true);
  235. if ($res['code']=='400'){
  236. //$member_id[] = $value['id'];
  237. Db::name('store_member')->where('id',$value['id'])->update(array('wallet_address'=>''));
  238. }
  239. }
  240. }
  241. //var_dump($member_id);exit();
  242. }
  243. /**
  244. * @title 商品赋能赠送
  245. * @desc 商品赋能赠送
  246. * @author QC
  247. * @url /api/Timedtask/powerSend
  248. * @method GET
  249. */
  250. public function powerSend()
  251. {
  252. set_time_limit(0);
  253. $list = Db::name('collection_power_send')->where(['is_task'=>0])->order('id asc')->limit(1)->select();
  254. foreach ($list as $v) {
  255. Db::name('collection_power_send')->where('id',$v['id'])->update(['is_task'=>1]);
  256. $goods_info = Db::name('store_collection')->find($v['send_goods']);
  257. $insert_array = [];
  258. $where = [];
  259. $where[] = ['o.c_id','=',$v['coll_id']];
  260. $where[] = ['o.resale_status','=',1];
  261. $where[] = ['o.is_destruction','=',1];
  262. $user_list = Db::name('store_order_info')->alias('o')
  263. ->field('o.*,u.name,u.phone,u.headimg,u.wallet_address')
  264. ->leftJoin('store_member u','u.id=o.mid')
  265. ->where($where)->order('o.id desc')->select();
  266. foreach ($user_list as $user_coll) {
  267. $rank = getRanking($v['send_goods']);
  268. $inventory = Db::name('store_collect')->where('id',$v['send_goods'])->value('inventory');
  269. $tag = getTag($v['send_goods'],$rank,$inventory);
  270. saveRanking($v['send_goods']);
  271. $company = '象链艺术有限公司';
  272. $hash = getCompanyHash($v['send_goods']);
  273. $company_hash = $hash['hash'];
  274. $company_hash_time = $hash['create_at'];
  275. $tokenid = $hash['tokenid'];
  276. Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
  277. $collectors_hash = '';
  278. $insert_array[] = [
  279. 'order_no'=>get_order_sn(),
  280. 'tag'=>$tag,
  281. 'mid'=>$user_coll['mid'],
  282. 'c_id'=>$v['send_goods'],
  283. 'name'=>$goods_info['name'],
  284. 'cover'=>$goods_info['cover'],
  285. 'pro_info'=>json_encode($goods_info,true),
  286. 'company'=>$company,
  287. 'company_hash'=>$company_hash ? $company_hash : '',
  288. 'company_hash_time'=>$company_hash_time ,
  289. 'ddcid'=>$tokenid,
  290. 'collectors_hash'=>$collectors_hash,
  291. //'collectors_hash_time'=>'',
  292. 'power_id'=>$v['power_id']
  293. ];
  294. }
  295. if(!empty($insert_array)) Db::name('store_order_info')->insertAll($insert_array);
  296. }
  297. }
  298. /**
  299. * @title 锁定会员多久不能操作[商城或是二级市场3天内未支付订单超过3笔,锁定该会员一天不能操作]
  300. * @desc 锁定会员多久不能操作[商城或是二级市场3天内未支付订单超过3笔,锁定该会员一天不能操作]
  301. * @author QC
  302. * @url /api/Timedtask/lockUser
  303. * @method GET
  304. */
  305. public function lockUser()
  306. {
  307. $sel_time = date('Y-m-d H:i:s',strtotime('-3 days'));
  308. $store_order = Db::name('store_order')
  309. ->field('mid,count(id) num')
  310. ->where([['status','=',2],['create_at','> time',$sel_time]])
  311. ->group('mid')
  312. ->having('num > 3')
  313. ->select();
  314. $secondary_order = Db::name('store_order_info_order')
  315. ->field('mid,count(id) num')
  316. ->where([['status','=',2],['create_at','> time',$sel_time]])
  317. ->group('mid')
  318. ->having('num > 3')
  319. ->select();
  320. if(!empty($store_order)) Db::name('store_member')->whereIn('id',implode(',',array_column($store_order,'mid')))
  321. ->update(['lock_st'=>time(),'lock_end'=>time()+86400]);
  322. if(!empty($secondary_order)) Db::name('store_member')->whereIn('id',implode(',',array_column($secondary_order,'mid')))
  323. ->update(['lock_st'=>time(),'lock_end'=>time()+86400]);
  324. }
  325. function collectionDraw($goods_id= 0)
  326. {
  327. $goods_list = Db::table('store_collection')->field('id,sell_time')
  328. ->field('id,sell_time,apply_st,apply_end,draw_num')
  329. ->where(['status'=>1,'is_task'=>0,'issue_mode'=>2,'is_deleted'=>0])
  330. ->where('apply_end','< time',date('Y-m-d H:i:s'))
  331. ->when($goods_id,function ($query)use($goods_id){ if($goods_id > 0) $query->where('id',$goods_id);})
  332. ->select();
  333. $redis = new Redis();
  334. $draw_list = [];
  335. foreach ($goods_list as $goods_info) {
  336. Db::table('store_collection')->where('id',$goods_info['id'])->update(['is_task'=>1]);
  337. if(!$goods_info['draw_num']) continue;
  338. $apply_list = Db::name('store_collection_draw')->where(['coll_id'=>$goods_info['id'],'is_ballot'=>0])->column('id,code,user_id');
  339. if(empty($apply_list)) continue;
  340. shuffle($apply_list);
  341. $ballot_list = array_slice($apply_list,0,$goods_info['draw_num']);
  342. $draw_list[$goods_info['id']] = $ballot_list;
  343. Db::name('store_collection_draw')->where('coll_id',$goods_info['id'])->whereIn('id',array_column($ballot_list,'id'))->update(['is_ballot'=>1]);
  344. Db::name('store_collection_draw')->where('coll_id',$goods_info['id'])->whereNotIn('id',array_column($ballot_list,'id'))->update(['is_ballot'=>2]);
  345. $redis->set('lucky_draw_'.$goods_info['id'],json_encode(array_column($ballot_list,'user_id')));
  346. }
  347. return $draw_list;
  348. }
  349. }