123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\model\Apply;
- /**
- * 定时脚本
- */
- class Timedtask extends Api
- {
- protected $noNeedLogin = '*';
- protected $noNeedRight = '*';
- /**
- * 申请wx过期自动退还狗粮
- * @return void
- */
- public function refund()
- {
- $expirationTime = config('site.expirationTime');
- $data = Apply::all(['status' => 0]);
- foreach ($data as $k => $v) {
- if((strtotime($v['createtime'])+$expirationTime*60*60)<time()){
- \app\common\model\User::money($v['grain'],$v['uid'],'过期自动退还狗粮');
- //发送微信模板消息
- Apply::wxApplyMessage($v['nid'],$v['uid'],Date('Y-m-d H:i:s'),3);
- $v->save(['status'=>3,'refund_grain'=>$v['grain']]);
- }
- }
- }
- /**
- * 会员每月免费喜欢额度
- */
- public function freescore(){
- $freescore = config('site.freescore');
- $user = \app\common\model\User::all(['status'=>'normal']);
- foreach ($user as $k=>$v){
- $freescore_time = strtotime($v['freescore_time'])+(24*60*60)*30;
- if($freescore_time<time()){
- \app\common\model\User::score($freescore,$v['id'],'会员每月免费喜欢额度');
- $v->save(['freescore_time'=>date("Y-m-d H:i:s")]);
- }
- }
- }
- }
|