mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 01:11:46 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			157 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			157 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Console\Commands;
 | |
| 
 | |
| use App\Services\OrderService;
 | |
| use Illuminate\Console\Command;
 | |
| use App\Models\Order;
 | |
| use App\Models\User;
 | |
| use App\Models\Plan;
 | |
| use App\Utils\Helper;
 | |
| use App\Models\Coupon;
 | |
| use Illuminate\Support\Facades\DB;
 | |
| 
 | |
| class CheckOrder extends Command
 | |
| {
 | |
|     /**
 | |
|      * The name and signature of the console command.
 | |
|      *
 | |
|      * @var string
 | |
|      */
 | |
|     protected $signature = 'check:order';
 | |
| 
 | |
|     /**
 | |
|      * The console command description.
 | |
|      *
 | |
|      * @var string
 | |
|      */
 | |
|     protected $description = '订单检查任务';
 | |
| 
 | |
|     /**
 | |
|      * Create a new command instance.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function __construct()
 | |
|     {
 | |
|         parent::__construct();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Execute the console command.
 | |
|      *
 | |
|      * @return mixed
 | |
|      */
 | |
|     public function handle()
 | |
|     {
 | |
|         $orders = Order::get();
 | |
|         foreach ($orders as $item) {
 | |
|             switch ($item->status) {
 | |
|                 // cancel
 | |
|                 case 0:
 | |
|                     if (strtotime($item->created_at) <= (time() - 1800)) {
 | |
|                         $orderService = new OrderService($item);
 | |
|                         $orderService->cancel();
 | |
|                     }
 | |
|                     break;
 | |
|                 case 1:
 | |
|                     $this->orderHandle($item);
 | |
|                     break;
 | |
|             }
 | |
| 
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     private function orderHandle(Order $order)
 | |
|     {
 | |
|         $user = User::find($order->user_id);
 | |
|         $plan = Plan::find($order->plan_id);
 | |
| 
 | |
|         if ($order->refund_amount) {
 | |
|             $user->balance = $user->balance + $order->refund_amount;
 | |
|         }
 | |
|         DB::beginTransaction();
 | |
|         if ($order->surplus_order_ids) {
 | |
|             try {
 | |
|                 Order::whereIn('id', json_decode($order->surplus_order_ids))->update([
 | |
|                     'status' => 4
 | |
|                 ]);
 | |
|             } catch (\Exception $e) {
 | |
|                 DB::rollback();
 | |
|                 abort(500, '开通失败');
 | |
|             }
 | |
|         }
 | |
|         switch ((string)$order->cycle) {
 | |
|             case 'onetime_price':
 | |
|                 $this->buyByOneTime($order, $user, $plan);
 | |
|                 break;
 | |
|             case 'reset_price':
 | |
|                 $this->buyReset($user);
 | |
|                 break;
 | |
|             default:
 | |
|                 $this->buyByCycle($order, $user, $plan);
 | |
|         }
 | |
|         if (!$user->save()) {
 | |
|             DB::rollBack();
 | |
|             abort(500, '开通失败');
 | |
|         }
 | |
|         $order->status = 3;
 | |
|         if (!$order->save()) {
 | |
|             DB::rollBack();
 | |
|             abort(500, '开通失败');
 | |
|         }
 | |
| 
 | |
|         DB::commit();
 | |
|     }
 | |
| 
 | |
|     private function buyReset(User $user)
 | |
|     {
 | |
|         $user->u = 0;
 | |
|         $user->d = 0;
 | |
|     }
 | |
| 
 | |
|     private function buyByCycle(Order $order, User $user, Plan $plan)
 | |
|     {
 | |
|         // change plan process
 | |
|         if ((int)$order->type === 3) {
 | |
|             $user->expired_at = time();
 | |
|         }
 | |
|         $user->transfer_enable = $plan->transfer_enable * 1073741824;
 | |
|         // 当续费清空流量或用户先前是一次性订阅
 | |
|         if ((int)config('v2board.renew_reset_traffic_enable', 1) || $user->expired_at === NULL) {
 | |
|             $user->u = 0;
 | |
|             $user->d = 0;
 | |
|         }
 | |
|         $user->plan_id = $plan->id;
 | |
|         $user->group_id = $plan->group_id;
 | |
|         $user->expired_at = $this->getTime($order->cycle, $user->expired_at);
 | |
|     }
 | |
| 
 | |
|     private function buyByOneTime(Order $order, User $user, Plan $plan)
 | |
|     {
 | |
|         $user->transfer_enable = $plan->transfer_enable * 1073741824;
 | |
|         $user->u = 0;
 | |
|         $user->d = 0;
 | |
|         $user->plan_id = $plan->id;
 | |
|         $user->group_id = $plan->group_id;
 | |
|         $user->expired_at = NULL;
 | |
|     }
 | |
| 
 | |
|     private function getTime($str, $timestamp)
 | |
|     {
 | |
|         if ($timestamp < time()) {
 | |
|             $timestamp = time();
 | |
|         }
 | |
|         switch ($str) {
 | |
|             case 'month_price':
 | |
|                 return strtotime('+1 month', $timestamp);
 | |
|             case 'quarter_price':
 | |
|                 return strtotime('+3 month', $timestamp);
 | |
|             case 'half_year_price':
 | |
|                 return strtotime('+6 month', $timestamp);
 | |
|             case 'year_price':
 | |
|                 return strtotime('+12 month', $timestamp);
 | |
|         }
 | |
|     }
 | |
| }
 |