| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 | 
							- <?php
 
- namespace App\Console\Commands;
 
- use App\Components\Callback;
 
- use App\Components\Helpers;
 
- use App\Http\Models\Order;
 
- use App\Http\Models\User;
 
- use App\Http\Models\UserLabel;
 
- use DB;
 
- use Exception;
 
- use Illuminate\Console\Command;
 
- use Log;
 
- class ServiceTimer extends Command
 
- {
 
- 	use Callback;
 
- 	protected $signature = 'serviceTimer';
 
- 	protected $description = '服务计时器';
 
- 	protected static $systemConfig;
 
- 	public function __construct()
 
- 	{
 
- 		parent::__construct();
 
- 		self::$systemConfig = Helpers::systemConfig();
 
- 	}
 
- 	public function handle()
 
- 	{
 
- 		$jobStartTime = microtime(TRUE);
 
- 		// 扣减用户到期商品的流量
 
- 		$this->decGoodsTraffic();
 
- 		$jobEndTime = microtime(TRUE);
 
- 		$jobUsedTime = round(($jobEndTime-$jobStartTime), 4);
 
- 		Log::info('执行定时任务【'.$this->description.'】,耗时'.$jobUsedTime.'秒');
 
- 	}
 
- 	// 扣减用户到期商品的流量
 
- 	private function decGoodsTraffic()
 
- 	{
 
- 		//获取失效的套餐
 
- 		$orderList = Order::query()->with(['goods'])->where('status', 2)->where('is_expire', 0)->whereHas('goods', function($q){ $q->where('type', 2); })->where('expire_at', '<=', date('Y-m-d H:i:s'))->get();
 
- 		if($orderList->isNotEmpty()){
 
- 			DB::beginTransaction();
 
- 			try{
 
- 				foreach($orderList as $order){
 
- 					// 过期本订单
 
- 					Order::query()->where('oid', $order->oid)->update(['is_expire' => 1]);
 
- 					// 过期生效中的加油包
 
- 					Order::query()
 
- 						->with(['goods'])
 
- 						->where('user_id', $order->user_id)
 
- 						->where('status', 2)
 
- 						->where('is_expire', 0)
 
- 						->whereHas('goods', function($q){
 
- 							$q->where('type', 1);
 
- 						})->update(['is_expire' => 1]);
 
- 					if(empty($order->user) || empty($order->goods)){
 
- 						continue;
 
- 					}
 
- 					// 清理全部流量
 
- 					Helpers::addUserTrafficModifyLog($order->user_id, $order->oid, $order->user->transfer_enable, 0, '[定时任务]用户所购商品到期,扣减商品对应的流量');
 
- 					User::query()->where('id', $order->user_id)->update(['u' => 0, 'd' => 0, 'transfer_enable' => 0, 'reset_time' => NULL]);
 
- 					// 删除对应用户的所有标签
 
- 					UserLabel::query()->where('user_id', $order->user_id)->delete();
 
- 					// 检查该订单对应用户是否有预支付套餐
 
- 					$prepaidOrder = Order::query()->where('user_id', $order->user_id)->where('status', 3)->orderBy('oid', 'asc')->first();
 
- 					if($prepaidOrder){
 
- 						$this->activePrepaidOrder($prepaidOrder->oid);
 
- 					}
 
- 				}
 
- 				DB::commit();
 
- 			} catch(Exception $e){
 
- 				Log::error($this->description.':'.$e);
 
- 				DB::rollBack();
 
- 			}
 
- 		}
 
- 	}
 
- }
 
 
  |