v2board/app/Console/Kernel.php

57 lines
1.5 KiB
PHP
Raw Normal View History

2019-10-29 15:33:36 +08:00
<?php
namespace App\Console;
2022-01-27 01:46:26 +08:00
use App\Utils\CacheKey;
2019-10-29 15:33:36 +08:00
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
2022-01-27 01:46:26 +08:00
use Illuminate\Support\Facades\Cache;
2019-10-29 15:33:36 +08:00
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
//
];
/**
* Define the application's command schedule.
*
2020-01-11 13:36:52 +08:00
* @param \Illuminate\Console\Scheduling\Schedule $schedule
2019-10-29 15:33:36 +08:00
* @return void
*/
protected function schedule(Schedule $schedule)
{
2022-01-27 01:46:26 +08:00
Cache::put(CacheKey::get('SCHEDULE_LAST_CHECK_AT', null), time());
2019-12-30 21:05:48 +08:00
// v2board
2021-07-24 00:31:23 +08:00
$schedule->command('v2board:statistics')->dailyAt('0:10');
2019-12-30 15:13:11 +08:00
// check
2019-10-29 15:33:36 +08:00
$schedule->command('check:order')->everyMinute();
2019-11-29 02:34:19 +08:00
$schedule->command('check:commission')->everyMinute();
2022-01-22 02:06:53 +08:00
$schedule->command('check:ticket')->everyMinute();
2019-12-23 01:09:38 +08:00
// reset
2020-03-02 00:04:07 +08:00
$schedule->command('reset:traffic')->daily();
2021-10-01 16:37:49 +08:00
$schedule->command('reset:serverLog')->quarterly()->at('0:15');
2019-12-30 15:13:11 +08:00
// send
$schedule->command('send:remindMail')->dailyAt('11:30');
2021-09-05 10:32:33 +08:00
// horizon metrics
$schedule->command('horizon:snapshot')->everyFiveMinutes();
2019-10-29 15:33:36 +08:00
}
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
2020-01-11 13:36:52 +08:00
$this->load(__DIR__ . '/Commands');
2019-10-29 15:33:36 +08:00
require base_path('routes/console.php');
}
}