v2board/app/Console/Commands/ResetTraffic.php

141 lines
4.1 KiB
PHP
Raw Normal View History

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;
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()
{
ini_set('memory_limit', -1);
2022-02-09 02:58:49 +08:00
$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']);
2022-03-05 13:37:49 +08:00
switch (true) {
case ($resetMethod['method'] === NULL): {
2021-09-21 17:51:53 +08:00
$resetTrafficMethod = config('v2board.reset_traffic_method', 0);
2022-02-09 02:58:49 +08:00
$builder = with(clone($this->builder))->whereIn('plan_id', $planIds);
2021-09-21 17:51:53 +08:00
switch ((int)$resetTrafficMethod) {
// month first day
case 0:
2022-02-09 02:58:49 +08:00
$this->resetByMonthFirstDay($builder);
2021-09-21 17:51:53 +08:00
break;
// expire day
case 1:
2022-02-09 02:58:49 +08:00
$this->resetByExpireDay($builder);
2021-09-21 17:51:53 +08:00
break;
// no action
case 2:
break;
2022-05-30 14:28:15 +08:00
// year
case 3:
$this->resetByYear($builder);
2021-09-21 17:51:53 +08:00
}
break;
}
2022-03-05 13:37:49 +08:00
case ($resetMethod['method'] === 0): {
2022-02-09 02:58:49 +08:00
$builder = with(clone($this->builder))->whereIn('plan_id', $planIds);
2021-09-21 17:51:53 +08:00
$this->resetByMonthFirstDay($builder);
break;
}
2022-03-05 13:37:49 +08:00
case ($resetMethod['method'] === 1): {
2022-02-09 02:58:49 +08:00
$builder = with(clone($this->builder))->whereIn('plan_id', $planIds);
2021-09-21 17:51:53 +08:00
$this->resetByExpireDay($builder);
break;
}
2022-03-05 13:37:49 +08:00
case ($resetMethod['method'] === 2): {
2021-09-21 17:51:53 +08:00
break;
}
2022-05-30 14:28:15 +08:00
case ($resetMethod['method'] === 3): {
$builder = with(clone($this->builder))->whereIn('plan_id', $planIds);
$this->resetByYear($builder);
break;
}
2021-09-21 17:51:53 +08:00
}
2020-03-02 23:21:27 +08:00
}
}
2022-05-30 14:28:15 +08:00
private function resetByYear($builder):void
{
if ((string)date('d') === '01' && (string)date('m') === '01') {
$builder->update([
'u' => 0,
'd' => 0
]);
}
}
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
}
}