2019-12-15 15:17:32 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
2021-09-21 17:51:53 +08:00
|
|
|
use App\Models\Plan;
|
2019-12-15 15:17:32 +08:00
|
|
|
use Illuminate\Console\Command;
|
2020-02-28 01:21:14 +08:00
|
|
|
use App\Models\User;
|
2021-07-01 11:41:34 +08:00
|
|
|
use Illuminate\Support\Facades\DB;
|
2019-12-15 15:17:32 +08:00
|
|
|
|
2019-12-15 15:20:05 +08:00
|
|
|
class ResetTraffic extends Command
|
2019-12-15 15:17:32 +08:00
|
|
|
{
|
2020-09-14 17:43:47 +08:00
|
|
|
protected $builder;
|
2019-12-15 15:17:32 +08:00
|
|
|
/**
|
|
|
|
* 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();
|
2020-09-14 17:43:47 +08:00
|
|
|
$this->builder = User::where('expired_at', '!=', NULL)
|
2020-08-19 12:52:49 +08:00
|
|
|
->where('expired_at', '>', time());
|
2019-12-15 15:17:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the console command.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
2021-08-01 15:48:00 +08:00
|
|
|
ini_set('memory_limit', -1);
|
2021-09-21 17:51:53 +08:00
|
|
|
foreach (Plan::get() as $plan) {
|
|
|
|
switch ($plan->reset_traffic_method) {
|
|
|
|
case null: {
|
|
|
|
$resetTrafficMethod = config('v2board.reset_traffic_method', 0);
|
|
|
|
switch ((int)$resetTrafficMethod) {
|
|
|
|
// month first day
|
|
|
|
case 0:
|
|
|
|
$this->resetByMonthFirstDay($this->builder);
|
|
|
|
break;
|
|
|
|
// expire day
|
|
|
|
case 1:
|
|
|
|
$this->resetByExpireDay($this->builder);
|
|
|
|
break;
|
|
|
|
// no action
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 0: {
|
2021-11-11 01:25:45 +08:00
|
|
|
$builder = with(clone($this->builder))->where('plan_id', $plan->id);
|
2021-09-21 17:51:53 +08:00
|
|
|
$this->resetByMonthFirstDay($builder);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 1: {
|
2021-11-11 01:25:45 +08:00
|
|
|
$builder = with(clone($this->builder))->where('plan_id', $plan->id);
|
2021-09-21 17:51:53 +08:00
|
|
|
$this->resetByExpireDay($builder);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 2: {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-03-02 23:21:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-21 17:51:53 +08:00
|
|
|
private function resetByMonthFirstDay($builder):void
|
2020-03-02 23:21:27 +08:00
|
|
|
{
|
2020-03-06 16:23:49 +08:00
|
|
|
if ((string)date('d') === '01') {
|
2020-09-14 17:43:47 +08:00
|
|
|
$builder->update([
|
2020-03-06 16:23:49 +08:00
|
|
|
'u' => 0,
|
|
|
|
'd' => 0
|
|
|
|
]);
|
|
|
|
}
|
2020-03-02 23:21:27 +08:00
|
|
|
}
|
|
|
|
|
2021-09-21 17:51:53 +08:00
|
|
|
private function resetByExpireDay($builder):void
|
2020-03-02 23:21:27 +08:00
|
|
|
{
|
2020-03-02 23:36:19 +08:00
|
|
|
$lastDay = date('d', strtotime('last day of +0 months'));
|
2020-03-15 20:21:31 +08:00
|
|
|
$users = [];
|
2020-09-14 17:43:47 +08:00
|
|
|
foreach ($builder->get() as $item) {
|
2020-03-15 20:12:52 +08:00
|
|
|
$expireDay = date('d', $item->expired_at);
|
2020-04-01 00:51:45 +08:00
|
|
|
$today = date('d');
|
|
|
|
if ($expireDay === $today) {
|
|
|
|
array_push($users, $item->id);
|
|
|
|
}
|
|
|
|
|
2020-04-01 02:15:07 +08:00
|
|
|
if (($today === $lastDay) && $expireDay >= $lastDay) {
|
2020-03-15 20:21:31 +08:00
|
|
|
array_push($users, $item->id);
|
2020-03-15 20:12:52 +08:00
|
|
|
}
|
2020-03-02 23:21:27 +08:00
|
|
|
}
|
2020-04-01 00:51:45 +08:00
|
|
|
User::whereIn('id', $users)->update([
|
2020-03-15 20:21:31 +08:00
|
|
|
'u' => 0,
|
|
|
|
'd' => 0
|
|
|
|
]);
|
2019-12-15 15:17:32 +08:00
|
|
|
}
|
|
|
|
}
|