mirror of
https://github.com/lkddi/Xboard.git
synced 2026-04-03 18:40:52 +08:00
- Add command support for plugin management - Optimize plugin management page layout - Add email copy functionality for users - Convert payment methods and Telegram Bot to plugin system
74 lines
2.3 KiB
PHP
74 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace App\Console;
|
|
|
|
use App\Services\Plugin\PluginManager;
|
|
use App\Utils\CacheKey;
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use App\Services\UserOnlineService;
|
|
|
|
class Kernel extends ConsoleKernel
|
|
{
|
|
/**
|
|
* The Artisan commands provided by your application.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $commands = [
|
|
//
|
|
];
|
|
|
|
/**
|
|
* Define the application's command schedule.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
|
* @return void
|
|
*/
|
|
protected function schedule(Schedule $schedule): void
|
|
{
|
|
Cache::put(CacheKey::get('SCHEDULE_LAST_CHECK_AT', null), time());
|
|
// v2board
|
|
$schedule->command('xboard:statistics')->dailyAt('0:10')->onOneServer();
|
|
// check
|
|
$schedule->command('check:order')->everyMinute()->onOneServer();
|
|
$schedule->command('check:commission')->everyMinute()->onOneServer();
|
|
$schedule->command('check:ticket')->everyMinute()->onOneServer();
|
|
// reset
|
|
$schedule->command('reset:traffic')->everyMinute()->onOneServer();
|
|
$schedule->command('reset:log')->daily()->onOneServer();
|
|
// send
|
|
$schedule->command('send:remindMail', ['--force'])->dailyAt('11:30')->onOneServer();
|
|
// horizon metrics
|
|
$schedule->command('horizon:snapshot')->everyFiveMinutes()->onOneServer();
|
|
// backup Timing
|
|
// if (env('ENABLE_AUTO_BACKUP_AND_UPDATE', false)) {
|
|
// $schedule->command('backup:database', ['true'])->daily()->onOneServer();
|
|
// }
|
|
// 每分钟清理过期的在线状态
|
|
$schedule->call(function () {
|
|
app(UserOnlineService::class)->cleanExpiredOnlineStatus();
|
|
})->everyMinute()->name('cleanup:expired-online-status')->onOneServer();
|
|
|
|
app(PluginManager::class)->registerPluginSchedules($schedule);
|
|
|
|
}
|
|
|
|
/**
|
|
* Register the commands for the application.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function commands()
|
|
{
|
|
$this->load(__DIR__ . '/Commands');
|
|
|
|
try {
|
|
app(PluginManager::class)->initializeEnabledPlugins();
|
|
} catch (\Exception $e) {
|
|
}
|
|
require base_path('routes/console.php');
|
|
}
|
|
}
|