v2board/app/Console/Commands/ResetTraffic.php

84 lines
1.9 KiB
PHP
Raw Normal View History

2019-12-15 15:17:32 +08:00
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
2020-02-28 01:21:14 +08:00
use App\Models\User;
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
{
/**
* 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();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
2020-03-02 00:04:07 +08:00
$user = User::where('expired_at', '!=', NULL);
2020-03-02 23:36:19 +08:00
$resetTrafficMethod = config('v2board.reset_traffic_method', 0);
switch ((int)$resetTrafficMethod) {
2020-03-02 00:04:07 +08:00
// 1 a month
case 0:
2020-03-02 23:21:27 +08:00
$this->resetByMonthFirstDay($user);
2020-03-02 00:04:07 +08:00
break;
// expire day
case 1:
2020-03-02 23:21:27 +08:00
$this->resetByExpireDay($user);
break;
}
}
2020-03-06 16:21:08 +08:00
private function resetByMonthFirstDay($user):void
2020-03-02 23:21:27 +08:00
{
2020-03-06 16:21:08 +08:00
if ((string)date('d') !== '1') return
2020-03-02 23:21:27 +08:00
$user->update([
'u' => 0,
'd' => 0
]);
}
2020-03-06 16:21:08 +08:00
private function resetByExpireDay($user):void
2020-03-02 23:21:27 +08:00
{
$date = date('Y-m-d', time());
2020-03-02 23:36:19 +08:00
$startAt = strtotime((string)$date);
$endAt = (int)$startAt + 24 * 3600;
$lastDay = date('d', strtotime('last day of +0 months'));
if ((string)$lastDay === '29') {
$endAt = (int)$startAt + 72 * 3600;
2020-03-02 23:21:27 +08:00
}
2020-03-02 23:36:19 +08:00
if ((string)$lastDay === '30') {
$endAt = (int)$startAt + 48 * 3600;
2020-03-02 00:04:07 +08:00
}
2020-03-02 23:36:19 +08:00
$user->where('expired_at', '>=', (int)$startAt)
->where('expired_at', '<', (int)$endAt)
2020-03-02 23:21:27 +08:00
->update([
'u' => 0,
'd' => 0
]);
2019-12-15 15:17:32 +08:00
}
}