mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
71 lines
2.2 KiB
PHP
71 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace App\Console;
|
|
|
|
use App\Jobs\CheckCleanup;
|
|
use App\Jobs\CheckQueueFailedJobs;
|
|
use App\Jobs\MaintainPluginState;
|
|
use App\Jobs\ManagePlugin;
|
|
use App\Jobs\UpdateIsSeedBoxFromUserRecordsCache;
|
|
use App\Utils\ThirdPartyJob;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Console\Scheduling\Event;
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Nexus\Database\NexusDB;
|
|
|
|
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)
|
|
{
|
|
$schedule->command('cache:prune-stale-tags')->hourly();
|
|
$schedule->command('exam:assign_cronjob')->everyMinute();
|
|
$schedule->command('exam:checkout_cronjob')->everyFiveMinutes();
|
|
$schedule->command('exam:update_progress --bulk=1')->hourly();
|
|
$schedule->command('backup:cronjob')->everyMinute();
|
|
$schedule->command('hr:update_status')->everyTenMinutes();
|
|
$schedule->command('hr:update_status --ignore_time=1')->hourly();
|
|
$schedule->command('user:delete_expired_token')->dailyAt('04:00');
|
|
$schedule->command('claim:settle')->hourly()->when(function () {
|
|
return Carbon::now()->format('d') == '01';
|
|
});
|
|
$schedule->command('meilisearch:import')->weeklyOn(1, "03:00");
|
|
$schedule->command('torrent:load_pieces_hash')->dailyAt("01:00");
|
|
$schedule->job(new CheckQueueFailedJobs())->everySixHours();
|
|
// $schedule->job(new ThirdPartyJob())->everyMinute();
|
|
$schedule->job(new MaintainPluginState())->everyMinute();
|
|
$schedule->job(new UpdateIsSeedBoxFromUserRecordsCache())->everySixHours();
|
|
$schedule->job(new CheckCleanup())->everyFifteenMinutes();
|
|
|
|
}
|
|
|
|
/**
|
|
* Register the commands for the application.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function commands()
|
|
{
|
|
$this->load(__DIR__.'/Commands');
|
|
|
|
require base_path('routes/console.php');
|
|
}
|
|
|
|
}
|