Timedtask.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  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. use function AlibabaCloud\Client\value;
  10. /**
  11. * @title 定时任务
  12. * Class Timedtask
  13. * @controller Timedtask
  14. * @group base
  15. */
  16. class Timedtask
  17. {
  18. /**
  19. * @title 取消订单定时任务
  20. * @desc 未支付的自动取消
  21. * @author Gavin
  22. * @url /api/Timedtask/cancelGoodsOrder
  23. * @method GET
  24. */
  25. public function cancelGoodsOrder(){
  26. $CancelTime = getCancelTime();
  27. if ($CancelTime<=0){
  28. die;
  29. }
  30. $redis = new Redis();
  31. $users = $redis->hkeys('buyUserInfo');
  32. if ($users){
  33. foreach ($users as &$value){
  34. $key = 'order_not_pay_'.$value;
  35. $len = $redis->hGetLen($key);
  36. if ($len){
  37. $list = $redis->hGetvals($key);
  38. foreach ($list as &$a){
  39. $info = json_decode($a,true);
  40. $cancel_time = strtotime($info['create_at'])+($CancelTime*60);
  41. if ($cancel_time<time()){
  42. $info['status'] = 2;
  43. $info['cancel_at'] = date('Y-m-d H:i:s');
  44. Db::name('store_order')->insert($info);
  45. //加上库存
  46. addCollectionInventory($info['c_id'],$info['num']);
  47. //减少用户购买数量
  48. DecrByCount($info['mid'],$info['c_id'],$info['num']);
  49. //删除数据
  50. $redis->hdel($key,$info['order_no']);
  51. }
  52. }
  53. }else{
  54. $redis->hdel('buyUserInfo',$value);
  55. }
  56. }
  57. }
  58. }
  59. /**
  60. * @title 二级市场未支付的自动取消
  61. * @desc 二级市场未支付的自动取消
  62. * @author Gavin
  63. * @url /api/Timedtask/SecondaryancelGoodsOrder
  64. * @method GET
  65. */
  66. public function SecondaryancelGoodsOrder(){
  67. $CancelTime = getConfigValue('secondary_cancel_time');
  68. if ($CancelTime<=0){
  69. die;
  70. }
  71. $list = Db::name('store_order_info_order')->where('status',0)->select();
  72. foreach ($list as &$v){
  73. $cancel_time = strtotime($v['create_at'])+($CancelTime*60);
  74. if ($cancel_time<time()){
  75. $info['status'] = 2;
  76. $info['cancel_at'] = date('Y-m-d H:i:s');
  77. Db::name('store_order_info_order')->where('id',$v['id'])->update($info);
  78. $cancle = [
  79. 'mid'=>$v['mid'],
  80. 'order_id'=>$v['id']
  81. ];
  82. Db::name('store_order_info_cancel_log')->insert($cancle);
  83. $time = date('Y-m-d H:i:s',time()-(60*60));
  84. $count = Db::name('store_order_info_cancel_log')->where('mid',$v['mid'])->where('create_at','gt',$time)->count();
  85. if ($count>2){
  86. $buy_time = date('Y-m-d H:i:s',time()+(24*60*60));
  87. Db::name('store_member')->where('id',$v['mid'])->update(['buy_time'=>$buy_time]);
  88. }
  89. }
  90. }
  91. }
  92. /**
  93. * @title 创建链账户
  94. * @desc 创建链账户
  95. * @author Gavin
  96. * @url /api/Timedtask/createAddress
  97. * @method GET
  98. */
  99. public function createAddress(){
  100. set_time_limit(0);
  101. $member = Db::name('store_member')
  102. ->where('wallet_address','eq','')
  103. //->whereNull('wallet_address')
  104. ->field('id,offline_account,phone,wallet_address')
  105. ->order('id asc')
  106. ->limit(30)
  107. ->select();
  108. foreach ($member as &$v){
  109. $name = $v['phone'];
  110. $operationId = $v['phone'];
  111. $operationId .= rand(10000,99999);
  112. $url = getIpAddress()."customNFT/createAccount?name=".$name."&operationId=".$operationId;
  113. $offlineaccount = file_get_contents($url);
  114. $offline_account = json_decode($offlineaccount,true);
  115. if (isset($offline_account) && isset($offline_account['account'])){
  116. Db::name('store_member')->where('id',$v['id'])
  117. ->update(['accountName'=>$operationId,'wallet_address'=>$offline_account['account'],'offline_account'=>$offlineaccount]);
  118. }
  119. }
  120. }
  121. /**
  122. * @title 创建链账户
  123. * @desc 创建链账户
  124. * @author Gavin
  125. * @url /api/Timedtask/createAddress
  126. * @method GET
  127. */
  128. public function member_id(){
  129. set_time_limit(0);
  130. $member = Db::name('store_member')
  131. ->where('is_pid','>',0)
  132. ->where('accountName', 'neq', 18888888888)
  133. //->whereNull('wallet_address')
  134. ->field('id,is_pid')
  135. ->order('id desc')
  136. ->limit(1000)
  137. ->select();
  138. foreach ($member as &$v){
  139. if(Db::name('store_order_info')->where('mid',$v['id'])->count()) {
  140. Db::name('store_member')->where('id', $v['id'])
  141. ->update(['pid' => $v['is_pid'], 'is_pid' => 0]);
  142. }
  143. }
  144. }
  145. public function member_pid(){
  146. set_time_limit(0);
  147. $status=Db::name('system_config')->where('name','=','user_status_up')->value('value');
  148. if($status==1) {
  149. $member = Db::name('store_member')
  150. ->where('spoofing', '=', 0)
  151. ->where('accountName', 'neq', 18888888888)
  152. ->field('id,is_pid,pid')
  153. ->order('id asc')
  154. ->limit(1000)
  155. ->select();
  156. foreach ($member as &$v) {
  157. Db::name('store_member')->where('id', $v['id'])->update(['spoofing' => 666]);
  158. if (Db::name('store_order_info')->where('mid', $v['id'])->where('is_destruction', '=', 1)->count()) {
  159. if ($v['is_pid'] > 0) {
  160. Db::name('store_member')->where('id', $v['id'])
  161. ->update(['pid' => $v['is_pid'], 'is_pid' => 0]);
  162. }
  163. } else {
  164. if ($v['pid'] > 0) {
  165. Db::name('store_member')->where('id', $v['id'])
  166. ->update(['is_pid' => $v['pid'], 'pid' => 0]);
  167. }
  168. }
  169. }
  170. }
  171. else{
  172. dump('没开启');
  173. }
  174. }
  175. public function menmber_pid_clear(){
  176. $member = Db::name('store_member')
  177. ->where('spoofing', 'neq', 66)
  178. ->field('id')
  179. ->order('id asc')
  180. ->limit(1000)
  181. ->select();
  182. foreach ($member as &$v) {
  183. Db::name('store_member')->where('id', $v['id'])->update(['pid' => 0,'is_pid'=>0,'spoofing'=>66]);
  184. }
  185. }
  186. public function member_invite(){
  187. $member = Db::name('store_member')
  188. ->where('accountName', 'neq', 18888888888)
  189. ->where('invite_img', 'neq', '')
  190. ->where('invite_address', 'neq', '')
  191. ->field('id')
  192. ->order('id asc')
  193. ->limit(1000)
  194. ->select();
  195. foreach ($member as &$v) {
  196. Db::name('store_member')->where('id', $v['id'])->update(['invite_img' => '','invite_address'=>'']);
  197. }
  198. }
  199. /**
  200. * 查询链上架回执
  201. * @url /api/Timedtask/setNftCheck
  202. */
  203. public function setNftCheck(){
  204. Db::name('hash2')->where('success',0)->chunk(30,function ($list){
  205. foreach ($list as &$v){
  206. $result =$this->checkhashSuccess($v['operationId']);
  207. $data['result'] = json_encode($result,true);
  208. if (isset($result) && $result['status']==1){
  209. $data['success'] = 1;
  210. $data['class_id'] =$result['class_id'];
  211. }
  212. Db::name('hash2')->where('id',$v['id'])->update($data);
  213. }
  214. },'id','asc');
  215. }
  216. /**
  217. * 创建nft
  218. * @url /api/Timedtask/createNft
  219. */
  220. public function createNft(){
  221. Db::name('store_order_info')
  222. ->whereIn('status','1,4,5')
  223. ->where('collectors_hash','eq','')
  224. ->whereNull('collectors_hash2')
  225. ->chunk(30,function ($list){
  226. foreach ($list as &$v){
  227. $name = get32Str(10);
  228. $operationId = $v['id'];
  229. $operationId .= rand(1000000,9999999);
  230. $to = Db::name('store_member')->where('id',$v['mid'])->value('wallet_address');
  231. $url = getIpAddress().'customNFT/createNft?classId='.$v['tokenid'].'&name='.$name.'&operationId='.$operationId.'&recipient='.$to;
  232. $res=curlRequest($url);
  233. $result=json_decode($res,true);
  234. if (isset($result) && isset($result['task_id'])){
  235. Db::name('store_order_info')->where('id',$v['id'])->update(['collectors_hash2'=>$result['task_id'],'nfttype'=>$operationId]);
  236. }
  237. }
  238. },'id','asc');
  239. }
  240. /**
  241. * 判断创建的nft是否成功
  242. * @url /api/Timedtask/checkcreateNft
  243. */
  244. public function checkcreateNft(){
  245. Db::name('store_order_info')
  246. ->whereIn('status','1,4,5')
  247. ->where('collectors_hash','eq','')
  248. ->whereNotNull('collectors_hash2')
  249. ->chunk(30,function ($list){
  250. foreach ($list as &$v){
  251. $result = $this->checkhashSuccess($v['collectors_hash2']);
  252. $data['result'] = json_encode($result,true);
  253. if (isset($result) && $result['status']==1){
  254. $data['tokenid'] = $result['class_id'];
  255. $data['collectors_hash'] = $result['tx_hash'];
  256. $data['nftid'] = $result['nft_id'];
  257. $data['collectors_hash_time'] = date('Y-m-d H:i:s');
  258. }
  259. Db::name('store_order_info')->where('id',$v['id'])->update($data);
  260. }
  261. },'id','asc');
  262. }
  263. /**
  264. * 转移nft
  265. * @url /api/Timedtask/judgeHash
  266. */
  267. public function judgeHash(){
  268. Db::name('store_order_info')
  269. ->where('status',3)
  270. ->where('collectors_hash','eq','')
  271. ->whereNull('collectors_hash2')
  272. ->chunk(30,function ($list){
  273. foreach ($list as &$v){
  274. $operationId = $v['id'];
  275. $operationId .= rand(10000000,99999999);
  276. $add = Db::name('store_member')->where('id',$v['to_mid'])->value('wallet_address');
  277. $to = Db::name('store_member')->where('id',$v['mid'])->value('wallet_address');
  278. $url = getIpAddress().'customNFT/transfer?classId='.$v['tokenid'].'&NFTId='.$v['nftid'].'&operationId='.$operationId.'&owner='.$add.'&recipient='.$to;
  279. dump($url);
  280. $res=curlRequest($url);
  281. $result=json_decode($res,true);
  282. dump($result);
  283. if (isset($result) && isset($result['task_id'])){
  284. Db::name('store_order_info')->where('id',$v['id'])->update(['collectors_hash2'=>$result['task_id'],'nfttype'=>$operationId]);
  285. }
  286. }
  287. },'id','asc');
  288. }
  289. /**
  290. * 判断转移的nft是否成功
  291. * @url /api/Timedtask/checkjudgeNft
  292. */
  293. public function checkjudgeNft(){
  294. Db::name('store_order_info')
  295. ->where('status',3)
  296. ->where('collectors_hash','eq','')
  297. ->whereNotNull('collectors_hash2')
  298. ->chunk(30,function ($list){
  299. foreach ($list as &$v){
  300. $result = $this->checkhashSuccess($v['collectors_hash2']);
  301. $data['result'] = json_encode($result,true);
  302. dump($result);
  303. if (isset($result) && $result['status']==1){
  304. $data['tokenid'] = $result['class_id'];
  305. $data['collectors_hash'] = $result['tx_hash'];
  306. $data['nftid'] = $result['nft_id'];
  307. }
  308. Db::name('store_order_info')->where('id',$v['id'])->update($data);
  309. }
  310. },'id','asc');
  311. }
  312. /**
  313. * 查询交易是否成功
  314. * @url /api/Timedtask/checkhashSuccess
  315. */
  316. public function checkhashSuccess($operationId){
  317. $url = getIpAddress().'customNFT/queryDealResult?operationId='.$operationId;
  318. $res=curlRequest($url);
  319. $result=json_decode($res,true);
  320. return $result;
  321. }
  322. /**
  323. * 判断转移的数据是否属于当前转移用户
  324. * @url /api/Timedtask/checkjudgeHashOwer
  325. */
  326. public function checkjudgeHashOwer(){
  327. $list = Db::name('store_order_info')
  328. ->where('status',3)
  329. ->where('collectors_hash','eq','')
  330. ->whereNull('collectors_hash2')
  331. ->order('id asc')
  332. ->limit(30)
  333. ->select();
  334. foreach ($list as &$v){
  335. if (time()>strtotime($v['collectors_hash_time'])+(3*60*60)){
  336. $url = getIpAddress().'customNFT/sNFT?classId='.$v['tokenid'].'&NFTId='.$v['nftid'];
  337. $res=json_decode(curlRequest($url),true);
  338. dump($res);
  339. if (isset($res)){
  340. $to = Db::name('store_member')->where('id',$v['to_mid'])->value('wallet_address');
  341. if ($to != $res['owner']){
  342. $operationId = $v['id'];
  343. $operationId .= rand(10000000,99999999);
  344. $add = $res['owner'];
  345. $url = getIpAddress().'customNFT/transfer?classId='.$v['tokenid'].'&NFTId='.$v['nftid'].'&operationId='.$operationId.'&owner='.$add.'&recipient='.$to;
  346. dump($url);
  347. $a = curlRequest($url);
  348. dump($a);
  349. }
  350. }
  351. }
  352. }
  353. }
  354. /**
  355. * redis 加锁
  356. */
  357. function redisCreateSetNx($id){
  358. $redis = new Redis();
  359. $key = 'hash_'.$id;
  360. $exptime = 450;
  361. $is_lock = $redis->setnx($key,time()+$exptime);
  362. if ($is_lock){
  363. return true;
  364. }else{
  365. //加锁失败的情况下,判断锁是否已经存在,如果存在切已经过期,删除锁,重新加锁
  366. $val = $redis->get($key);
  367. if ($val && $val<time()){
  368. $redis->del($key);
  369. }
  370. return $redis->setnx($key,time()+$exptime);
  371. }
  372. }
  373. /**
  374. * redis nonce加锁
  375. */
  376. function redisNonceSetNx(){
  377. $redis = new Redis();
  378. $key = 'noncenx';
  379. $exptime = 10;
  380. $is_lock = $redis->setnx($key,time()+$exptime);
  381. if ($is_lock){
  382. return true;
  383. }else{
  384. //加锁失败的情况下,判断锁是否已经存在,如果存在切已经过期,删除锁,重新加锁
  385. $val = $redis->get($key);
  386. if ($val && $val<time()){
  387. $redis->del($key);
  388. }
  389. return $redis->setnx($key,time()+$exptime);
  390. }
  391. }
  392. /**
  393. * 预约藏品前十五分钟发送短信
  394. * /api/Timedtask/sendSms
  395. */
  396. public function sendSms(){
  397. Db::name('store_collection_remind')->where('is_send',0)->chunk(50,function ($list){
  398. foreach ($list as &$v){
  399. $sell_time = Db::name('store_collection')->where('id',$v['c_id'])->value('sell_time');
  400. $t = (strtotime($sell_time)-time())/60;
  401. if ($t<=15 && $t>0){
  402. $result = $this->accessKeyClient($v['mobile'],$v['mid'],$v['c_id']);
  403. if ($result['Code'] === 'OK') {
  404. Db::name('store_collection_remind')->where('id',$v['id'])->update(['is_send'=>1]);
  405. }
  406. }
  407. }
  408. },'id','asc');
  409. }
  410. function accessKeyClient($mobile,$mid,$cid)
  411. {
  412. $ali_accesskey = 'LTAI5tSTBuRP5AnPBHDz8gTF';
  413. $ali_accesskey_secret = '7RVjRKv8cCaKW4hMMVZ1SFPkqeIbn4';
  414. $templateCode = 'SMS_243370550';
  415. AlibabaCloud::accessKeyClient($ali_accesskey, $ali_accesskey_secret)
  416. ->regionId('cn-hangzhou')
  417. ->asDefaultClient();
  418. $user = getMemberInfoHash($mid); //获取用户信息
  419. $coll_info = getCollectionInfoHash($cid);
  420. $post = [
  421. 'name'=>$user['name'],
  422. 'goodname'=>$coll_info['name'],
  423. 'pubtime'=>$coll_info['sell_time']
  424. ];
  425. $TemplateParam = json_encode($post,true);
  426. try {
  427. $result = AlibabaCloud::rpc()
  428. ->product('Dysmsapi')
  429. // ->scheme('https') // https | http
  430. ->version('2017-05-25')
  431. ->action('SendSms')
  432. ->method('POST')
  433. ->host('dysmsapi.aliyuncs.com')
  434. ->options([
  435. 'query' => [
  436. 'PhoneNumbers' => $mobile,
  437. 'SignName' => '同质科技',
  438. 'TemplateCode' => $templateCode,
  439. 'TemplateParam' => $TemplateParam
  440. ],
  441. ])
  442. ->request();
  443. $info = $result->toArray();
  444. return $info;
  445. } catch (ClientException $e) {
  446. echo $e->getErrorMessage() . PHP_EOL;
  447. } catch (ServerException $e) {
  448. echo $e->getErrorMessage() . PHP_EOL;
  449. }
  450. }
  451. public function texts(){
  452. $input = input();
  453. $cailiao1 = Db::name('store_order_info')
  454. ->where('c_id',8)
  455. ->where('mid',$input['id'])
  456. ->where('status','neq',2)
  457. ->where('is_destruction',0)
  458. ->limit(9)
  459. ->order('id asc')
  460. ->field('id')
  461. ->select();
  462. foreach ($cailiao1 as $k=>$v){
  463. Db::name('store_order_info')->where('id',$cailiao1[$k]['id'])->update(['is_destruction'=>1]);
  464. }
  465. $cailiao2 = Db::name('store_order_info')
  466. ->where('c_id',6)
  467. ->where('mid',$input['id'])
  468. ->where('status','neq',2)
  469. ->where('is_destruction',0)
  470. ->limit(1)
  471. ->order('id asc')
  472. ->field('id')
  473. ->find();
  474. Db::name('store_order_info')->where('id',$cailiao2['id'])->update(['is_destruction'=>1]);
  475. print_r($cailiao1);print_r('分割');print_r($cailiao2);
  476. }
  477. public function chongzhi(){
  478. $db = Db::name('sun_money')->where('status',1)->limit(100)->select();
  479. foreach ($db as $k=>$v){
  480. $db[$k]['name']=Db::name('store_member')->where('phone',$db[$k]['phone'])->value('id');
  481. memberMoneyChange($db[$k]['money'],3,$db[$k]['name'],'平台奖励',1,0,['order_id'=>0,'source'=>2]);
  482. Db::name('sun_money')->where('id', $db[$k]['id'])->update(['status'=>2]);
  483. }
  484. print_r($db);
  485. }
  486. }