Timedtask.php 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569
  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,5')
  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 || $v['status']==5){
  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. return true;
  308. $sel_time = date('Y-m-d H:i:s',strtotime('-3 days'));
  309. $store_order = Db::name('store_order')
  310. ->field('mid,count(id) num')
  311. ->where([['status','=',2],['create_at','> time',$sel_time]])
  312. ->group('mid')
  313. ->having('num > 3')
  314. ->select();
  315. $secondary_order = Db::name('store_order_info_order')
  316. ->field('mid,count(id) num')
  317. ->where([['status','=',2],['create_at','> time',$sel_time]])
  318. ->group('mid')
  319. ->having('num > 3')
  320. ->select();
  321. if(!empty($store_order)) Db::name('store_member')->whereIn('id',implode(',',array_column($store_order,'mid')))
  322. ->update(['lock_st'=>time(),'lock_end'=>time()+86400]);
  323. if(!empty($secondary_order)) Db::name('store_member')->whereIn('id',implode(',',array_column($secondary_order,'mid')))
  324. ->update(['lock_st'=>time(),'lock_end'=>time()+86400]);
  325. }
  326. function collectionDraw($goods_id= 0)
  327. {
  328. $goods_list = Db::table('store_collection')->field('id,sell_time')
  329. ->field('id,sell_time,apply_st,apply_end,draw_num')
  330. ->where(['status'=>1,'is_task'=>0,'issue_mode'=>2,'is_deleted'=>0])
  331. ->where('apply_end','< time',date('Y-m-d H:i:s'))
  332. ->when($goods_id,function ($query)use($goods_id){ if($goods_id > 0) $query->where('id',$goods_id);})
  333. ->select();
  334. $redis = new Redis();
  335. $draw_list = [];
  336. foreach ($goods_list as $goods_info) {
  337. Db::table('store_collection')->where('id',$goods_info['id'])->update(['is_task'=>1]);
  338. if(!$goods_info['draw_num']) continue;
  339. $apply_list = Db::name('store_collection_draw')->where(['coll_id'=>$goods_info['id'],'is_ballot'=>0])->column('id,code,user_id');
  340. if(empty($apply_list)) continue;
  341. shuffle($apply_list);
  342. $ballot_list = array_slice($apply_list,0,$goods_info['draw_num']);
  343. $draw_list[$goods_info['id']] = $ballot_list;
  344. Db::name('store_collection_draw')->where('coll_id',$goods_info['id'])->whereIn('id',array_column($ballot_list,'id'))->update(['is_ballot'=>1]);
  345. Db::name('store_collection_draw')->where('coll_id',$goods_info['id'])->whereNotIn('id',array_column($ballot_list,'id'))->update(['is_ballot'=>2]);
  346. $redis->set('lucky_draw_'.$goods_info['id'],json_encode(array_column($ballot_list,'user_id')));
  347. }
  348. return $draw_list;
  349. }
  350. public function check_exchange($id,$mid){
  351. $list = Db::name('store_collection_material')->where('cid',$id)->field('id,c_id,num')->select();
  352. $is_exchange = 1;
  353. foreach ($list as &$v){
  354. $user_count = Db::name('store_order_info')
  355. ->where('c_id',$v['c_id'])
  356. ->where('mid',$mid)
  357. ->where('status','neq',2)
  358. ->where('is_destruction',1)
  359. ->count();
  360. if ($user_count<$v['num']){
  361. $is_exchange = 0;
  362. break;
  363. }
  364. }
  365. return $is_exchange;
  366. }
  367. public function run_data(){
  368. for ($i=0;$i<50;$i++) {
  369. $id = 8;
  370. $uid = 21074;
  371. $info = Db::name('store_collection')
  372. ->where('is_deleted', 0)
  373. ->where('status', 1)
  374. ->where('type', 2)
  375. ->where('id', $id)
  376. ->find();
  377. if (!$info) $this->error('藏品不存在');
  378. $now_inventory = getCollectionInventory($id);
  379. if ($now_inventory <= 0) $this->error('已售罄');
  380. $hashCount = getLenCollection($id);
  381. if (!$hashCount) $this->error('hash未铸造,无法合成');
  382. $is_exchange = $this->check_exchange($id, $uid);
  383. if (!$is_exchange) $this->error('材料不足,无法合成');
  384. $com = true;
  385. Db::startTrans();
  386. try {
  387. $material = Db::name('store_collection_material')->where('cid', $id)->select();
  388. foreach ($material as &$v) {
  389. $um_num = Db::name('store_order_info')
  390. ->where('c_id', $v['c_id'])
  391. ->where('mid', $uid)
  392. ->where('status', 'neq', 2)
  393. ->where('is_destruction', 1)
  394. ->limit($v['num'])
  395. ->order('id asc')
  396. ->update(['is_destruction' => 0, 'verify' => Db::raw('verify - 1')]);
  397. if ($um_num != $v['num']) throw new Exception('合成失败');
  398. }
  399. //获取排名
  400. $rank = getRanking($id);
  401. $tag = getTag($id, $rank, $info['inventory']);
  402. saveRanking($id);
  403. $company = '象链数藏';
  404. $hash = getCompanyHash($id);
  405. $company_hash = $hash['hash'];
  406. $company_hash_time = $hash['create_at'];
  407. $tokenid = $hash['tokenid'];
  408. Db::name('hash')->where('hash', $hash['hash'])->update(['status' => 1]);
  409. $collectors_hash = '';
  410. $date = [
  411. 'order_id' => 0,
  412. 'order_no' => get_order_sn(),
  413. 'tag' => $tag,
  414. 'mid' => $uid,
  415. 'c_id' => $id,
  416. 'name' => $info['name'],
  417. 'cover' => $info['cover'],
  418. 'pro_info' => json_encode($info, true),
  419. 'company' => $company,
  420. 'company_hash' => $company_hash,
  421. 'company_hash_time' => $company_hash_time,
  422. 'ddcid' => $tokenid,
  423. 'collectors_hash' => $collectors_hash,
  424. 'status' => 5
  425. ];
  426. Db::name('store_order_info')->insert($date);
  427. Db::commit();
  428. } catch (\Exception $e) {
  429. $com = false;
  430. Db::rollback();
  431. }
  432. if ($com) {
  433. setMemberInfoHash($uid);
  434. //减掉库存
  435. loseCollectionInventory($id, 1);
  436. }
  437. }
  438. echo 12333;exit();
  439. }
  440. public function createMember()
  441. {
  442. $pre = [1994,1782,1853,1332,1558,1392,1343,1595,1886,1866];
  443. $password = '920211ming';
  444. $second_password = '920211';
  445. for ($i=0;$i<19;$i++){
  446. $rand_key = rand(0,4);
  447. $phone = $pre[$rand_key].rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9);
  448. $user = Db::name('store_member')->field('id')->where('is_deleted',0)->where('phone',$phone)->find();
  449. if(empty($user))
  450. {
  451. $accountName = $phone;
  452. $hz = substr($phone,-4);
  453. $data = [
  454. 'name' => '象链'.$hz,
  455. 'phone'=>$phone,
  456. 'pid'=>0,
  457. 'password'=>md5($password),
  458. 'second_password'=>md5($second_password),
  459. 'accountName'=>$accountName,
  460. 'is_auth' => 1,
  461. 'auth_at' => date('Y-m-d H:i:s'),
  462. 'is_vir' => 1,
  463. 'bank_num' => '123456789'
  464. ];
  465. $array[] = $data;
  466. }
  467. }
  468. Db::name('store_member')->insertAll($array);
  469. }
  470. public function createVirChildren()
  471. {
  472. $list = Db::name('store_member')->field('id')->where('is_vir',1)->where('pid',0)->order('id asc')->limit(0,12)->select();
  473. $pre = [1994,1782,1853,1332,1558,1392,1343,1595,1886,1866];
  474. $password = '920211ming';
  475. $second_password = '920211';
  476. foreach ($list as $v)
  477. {
  478. $num = rand(3,20);
  479. $array =[];
  480. for ($i=0;$i<$num;$i++){
  481. $rand_key = rand(0,9);
  482. $phone = $pre[$rand_key].rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9);
  483. $user = Db::name('store_member')->field('id')->where('is_deleted',0)->where('phone',$phone)->find();
  484. if(empty($user)) {
  485. $accountName = $phone;
  486. $hz = substr($phone,-4);
  487. $data = [
  488. 'name' => '象链'.$hz,
  489. 'phone'=>$phone,
  490. 'pid'=>$v['id'],
  491. 'password'=>md5($password),
  492. 'second_password'=>md5($second_password),
  493. 'accountName'=>$accountName,
  494. 'is_auth' => 1,
  495. 'auth_at' => date('Y-m-d H:i:s'),
  496. 'is_vir' => 1,
  497. 'bank_num' => '123456789'
  498. ];
  499. $array[] = $data;
  500. }
  501. }
  502. Db::name('store_member')->insertAll($array);
  503. }
  504. }
  505. function go_test(){
  506. $phone_arr = array(227408, 227409, 227410, 227413);
  507. $pid = $phone_arr[1];
  508. $num = 100;
  509. $password = '920211ming';
  510. $second_password = '920211';
  511. $array = [];
  512. for ($i=0;$i<$num;$i++){
  513. $phone = '1'.rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9);
  514. $user = Db::name('store_member')->field('id')->where('is_deleted',0)->where('phone',$phone)->find();
  515. if(empty($user)){
  516. $accountName = $phone;
  517. $hz = substr($phone,-4);
  518. $data = [
  519. 'name' => '收藏家'.$hz,
  520. 'phone'=>$phone,
  521. 'pid'=>$pid,
  522. 'password'=>md5($password),
  523. 'second_password'=>md5($second_password),
  524. 'accountName'=>$accountName,
  525. 'is_auth' => 1,
  526. 'lock_order_num' => 1,
  527. 'auth_at' => date('Y-m-d H:i:s'),
  528. ];
  529. $array[] = $data;
  530. }
  531. }
  532. Db::name('store_member')->insertAll($array);
  533. echo 12;exit();
  534. }
  535. }