This commit is contained in:
Tokumeikoi 2020-03-02 23:21:27 +08:00
parent 3763320261
commit 8f4ebe1764

View File

@ -43,20 +43,40 @@ class ResetTraffic extends Command
switch ($resetTrafficMethod) { switch ($resetTrafficMethod) {
// 1 a month // 1 a month
case 0: case 0:
$this->resetByMonthFirstDay($user);
break;
// expire day
case 1:
$this->resetByExpireDay($user);
break;
}
}
private function resetByMonthFirstDay(User $user):void
{
$user->update([ $user->update([
'u' => 0, 'u' => 0,
'd' => 0 'd' => 0
]); ]);
break; }
// expire day
case 1: private function resetByExpireDay(User $user):void
$startAt = strtotime(date('Y-m-d', time())); {
$date = date('Y-m-d', time());
$startAt = strtotime($date);
$endAt = $startAt + 24 * 3600;
$lastDay = (string)date('d', strtotime('last day of +0 months'));
if ($lastDay === '29') {
$endAt = $startAt + 72 * 3600;
}
if ($lastDay === '30') {
$endAt = $startAt + 48 * 3600;
}
$user->where('expired_at', '>=', $startAt) $user->where('expired_at', '>=', $startAt)
->where('expired_at', '<', $startAt + 24 * 3600) ->where('expired_at', '<', $endAt)
->update([ ->update([
'u' => 0, 'u' => 0,
'd' => 0 'd' => 0
]); ]);
} }
}
} }