Timedtask.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\model\Apply;
  5. /**
  6. * 定时脚本
  7. */
  8. class Timedtask extends Api
  9. {
  10. protected $noNeedLogin = '*';
  11. protected $noNeedRight = '*';
  12. /**
  13. * 申请wx过期自动退还狗粮
  14. * @return void
  15. */
  16. public function refund()
  17. {
  18. $expirationTime = config('site.expirationTime');
  19. $data = Apply::all(['status' => 0]);
  20. foreach ($data as $k => $v) {
  21. if((strtotime($v['createtime'])+$expirationTime*60*60)<time()){
  22. \app\common\model\User::money($v['grain'],$v['uid'],'过期自动退还狗粮');
  23. //发送微信模板消息
  24. Apply::wxApplyMessage($v['nid'],$v['uid'],Date('Y-m-d H:i:s'),3);
  25. $v->save(['status'=>3,'refund_grain'=>$v['grain']]);
  26. }
  27. }
  28. }
  29. /**
  30. * 会员每月免费喜欢额度
  31. */
  32. public function freescore(){
  33. $freescore = config('site.freescore');
  34. $user = \app\common\model\User::all(['status'=>'normal']);
  35. foreach ($user as $k=>$v){
  36. $freescore_time = strtotime($v['freescore_time'])+(24*60*60)*30;
  37. if($freescore_time<time()){
  38. \app\common\model\User::score($freescore,$v['id'],'会员每月免费喜欢额度');
  39. $v->save(['freescore_time'=>date("Y-m-d H:i:s")]);
  40. }
  41. }
  42. }
  43. }