Files
animethemes-server/app/Console/Kernel.php
T
2026-07-09 14:04:08 -03:00

173 lines
5.5 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Console;
use App\Console\Commands\Models\SyncLikeAggregatesCommand;
use App\Console\Commands\Models\UpdateAnimeDateCommand;
use App\Console\Commands\Repositories\Storage\Admin\DumpReconcileCommand;
use App\Console\Commands\Storage\Admin\AdminDumpCommand;
use App\Console\Commands\Storage\Admin\AuthDumpCommand;
use App\Console\Commands\Storage\Admin\ContentDumpCommand;
use App\Console\Commands\Storage\Admin\DocumentDumpCommand;
use App\Console\Commands\Storage\Admin\DumpPruneCommand;
use App\Console\Commands\Storage\Admin\ListDumpCommand;
use App\Console\Commands\Storage\Admin\UserDumpCommand;
use App\Models\BaseModel;
use Illuminate\Auth\Console\ClearResetsCommand;
use Illuminate\Cache\Console\PruneStaleTagsCommand;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Database\Console\MonitorCommand as MonitorDatabaseCommand;
use Illuminate\Database\Console\PruneCommand as PruneModelsCommand;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
use Illuminate\Queue\Console\MonitorCommand as MonitorQueueCommand;
use Illuminate\Queue\Console\PruneBatchesCommand;
use Illuminate\Queue\Console\PruneFailedJobsCommand;
use Laravel\Horizon\Console\SnapshotCommand;
use Laravel\Sanctum\Console\Commands\PruneExpired;
use Propaganistas\LaravelDisposableEmail\Console\UpdateDisposableDomainsCommand;
class Kernel extends ConsoleKernel
{
/**
* Define the application's command schedule.
*
* @noinspection PhpMissingParentCallCommonInspection
*/
protected function schedule(Schedule $schedule): void
{
$schedule->command(ClearResetsCommand::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->everyFifteenMinutes();
$schedule->command(ContentDumpCommand::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->daily();
$schedule->command(AdminDumpCommand::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->weeklyOn(Schedule::MONDAY);
$schedule->command(AuthDumpCommand::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->weeklyOn(Schedule::MONDAY);
$schedule->command(DocumentDumpCommand::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->weeklyOn(Schedule::MONDAY);
$schedule->command(ListDumpCommand::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->weeklyOn(Schedule::MONDAY);
$schedule->command(UserDumpCommand::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->weeklyOn(Schedule::MONDAY);
$schedule->command(DumpReconcileCommand::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->dailyAt('00:10');
$schedule->command(DumpPruneCommand::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->dailyAt('00:15');
$schedule->command(MonitorDatabaseCommand::class, ['--max' => 100])
->withoutOverlapping()
->runInBackground()
->storeOutput()
->everyMinute();
$schedule->command(MonitorQueueCommand::class, ['queues' => 'default', '--max' => 100])
->withoutOverlapping()
->runInBackground()
->storeOutput()
->everyMinute();
$schedule->command(PruneBatchesCommand::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->daily();
$schedule->command(PruneExpired::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->daily();
$schedule->command(PruneFailedJobsCommand::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->daily();
$schedule->command(PruneModelsCommand::class, ['--except' => [BaseModel::class]])
->withoutOverlapping()
->runInBackground()
->storeOutput()
->daily();
$schedule->command(PruneStaleTagsCommand::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->hourly();
$schedule->command(SnapshotCommand::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->everyFiveMinutes();
$schedule->command(SyncLikeAggregatesCommand::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->daily();
$schedule->command(UpdateAnimeDateCommand::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->dailyAt('23:30');
$schedule->command(UpdateDisposableDomainsCommand::class)
->withoutOverlapping()
->runInBackground()
->storeOutput()
->weekly();
}
/**
* Register the commands for the application.
*
* @noinspection PhpMissingParentCallCommonInspection
*/
protected function commands(): void
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}