| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 | 
							- <?php
 
- namespace App\Console\Commands;
 
- use App\Models\Plan;
 
- use Illuminate\Console\Command;
 
- use App\Models\User;
 
- use Illuminate\Support\Facades\DB;
 
- class ResetTraffic extends Command
 
- {
 
-     protected $builder;
 
-     /**
 
-      * The name and signature of the console command.
 
-      *
 
-      * @var string
 
-      */
 
-     protected $signature = 'reset:traffic';
 
-     /**
 
-      * The console command description.
 
-      *
 
-      * @var string
 
-      */
 
-     protected $description = '流量清空';
 
-     /**
 
-      * Create a new command instance.
 
-      *
 
-      * @return void
 
-      */
 
-     public function __construct()
 
-     {
 
-         parent::__construct();
 
-         $this->builder = User::where('expired_at', '!=', NULL)
 
-             ->where('expired_at', '>', time());
 
-     }
 
-     /**
 
-      * Execute the console command.
 
-      *
 
-      * @return mixed
 
-      */
 
-     public function handle()
 
-     {
 
-         ini_set('memory_limit', -1);
 
-         $resetMethods = Plan::select(
 
-             DB::raw("GROUP_CONCAT(`id`) as plan_ids"),
 
-             DB::raw("reset_traffic_method as method")
 
-         )
 
-             ->groupBy('reset_traffic_method')
 
-             ->get()
 
-             ->toArray();
 
-         foreach ($resetMethods as $resetMethod) {
 
-             $planIds = explode(',', $resetMethod['plan_ids']);
 
-             switch (true) {
 
-                 case ($resetMethod['method'] === NULL): {
 
-                     $resetTrafficMethod = config('v2board.reset_traffic_method', 0);
 
-                     $builder = with(clone($this->builder))->whereIn('plan_id', $planIds);
 
-                     switch ((int)$resetTrafficMethod) {
 
-                         // month first day
 
-                         case 0:
 
-                             $this->resetByMonthFirstDay($builder);
 
-                             break;
 
-                         // expire day
 
-                         case 1:
 
-                             $this->resetByExpireDay($builder);
 
-                             break;
 
-                         // no action
 
-                         case 2:
 
-                             break;
 
-                     }
 
-                     break;
 
-                 }
 
-                 case ($resetMethod['method'] === 0): {
 
-                     $builder = with(clone($this->builder))->whereIn('plan_id', $planIds);
 
-                     $this->resetByMonthFirstDay($builder);
 
-                     break;
 
-                 }
 
-                 case ($resetMethod['method'] === 1): {
 
-                     $builder = with(clone($this->builder))->whereIn('plan_id', $planIds);
 
-                     $this->resetByExpireDay($builder);
 
-                     break;
 
-                 }
 
-                 case ($resetMethod['method'] === 2): {
 
-                     break;
 
-                 }
 
-             }
 
-         }
 
-     }
 
-     private function resetByMonthFirstDay($builder):void
 
-     {
 
-         if ((string)date('d') === '01') {
 
-             $builder->update([
 
-                 'u' => 0,
 
-                 'd' => 0
 
-             ]);
 
-         }
 
-     }
 
-     private function resetByExpireDay($builder):void
 
-     {
 
-         $lastDay = date('d', strtotime('last day of +0 months'));
 
-         $users = [];
 
-         foreach ($builder->get() as $item) {
 
-             $expireDay = date('d', $item->expired_at);
 
-             $today = date('d');
 
-             if ($expireDay === $today) {
 
-                 array_push($users, $item->id);
 
-             }
 
-             if (($today === $lastDay) && $expireDay >= $lastDay) {
 
-                 array_push($users, $item->id);
 
-             }
 
-         }
 
-         User::whereIn('id', $users)->update([
 
-             'u' => 0,
 
-             'd' => 0
 
-         ]);
 
-     }
 
- }
 
 
  |