update reset traffic method

This commit is contained in:
Tokumeikoi
2020-03-02 00:04:07 +08:00
parent 47d8dfd7c8
commit bb49fb15d1
5 changed files with 27 additions and 11 deletions

View File

@ -3,8 +3,6 @@
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\DB;
use App\Models\Plan;
use App\Models\User;
class ResetTraffic extends Command
@ -40,12 +38,25 @@ class ResetTraffic extends Command
*/
public function handle()
{
// get plans of cycle type
$plans = Plan::where('type', 0)->get();
$users = User::whereIn('plan_id', $plans);
$users->update([
'u' => 0,
'd' => 0
]);
$user = User::where('expired_at', '!=', NULL);
$resetTrafficMethod = config('v2board.reset_traffic_method', 0);
switch ($resetTrafficMethod) {
// 1 a month
case 0:
$user->update([
'u' => 0,
'd' => 0
]);
break;
// expire day
case 1:
$startAt = strtotime(date('Y-m-d', time()));
$user->where('expired_at', '>=', $startAt)
->where('expired_at', '<', $startAt + 24 * 3600)
->update([
'u' => 0,
'd' => 0
]);
}
}
}

View File

@ -30,7 +30,7 @@ class Kernel extends ConsoleKernel
$schedule->command('check:order')->everyMinute();
$schedule->command('check:commission')->everyMinute();
// reset
$schedule->command('reset:traffic')->monthly();
$schedule->command('reset:traffic')->daily();
$schedule->command('reset:serverLog')->monthly();
// send
$schedule->command('send:remindMail')->dailyAt('11:30');