2023-03-17 15:33:48 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console;
|
|
|
|
|
2023-07-14 11:27:08 +02:00
|
|
|
use App\Jobs\CheckResaleLicenseJob;
|
2023-08-15 14:11:38 +02:00
|
|
|
use App\Jobs\CleanupInstanceStuffsJob;
|
2023-08-10 15:52:54 +02:00
|
|
|
use App\Jobs\DatabaseBackupJob;
|
2023-08-08 11:51:36 +02:00
|
|
|
use App\Jobs\DockerCleanupJob;
|
2023-05-25 14:23:49 +02:00
|
|
|
use App\Jobs\InstanceAutoUpdateJob;
|
2023-07-07 15:50:36 +02:00
|
|
|
use App\Jobs\ProxyCheckJob;
|
2023-08-16 17:18:50 +02:00
|
|
|
use App\Jobs\ResourceStatusJob;
|
2023-08-08 17:28:36 +02:00
|
|
|
use App\Models\ScheduledDatabaseBackup;
|
2023-03-17 15:33:48 +01:00
|
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
|
|
|
|
|
|
class Kernel extends ConsoleKernel
|
|
|
|
{
|
|
|
|
protected function schedule(Schedule $schedule): void
|
|
|
|
{
|
2023-08-11 20:48:52 +02:00
|
|
|
// $schedule->call(fn() => $this->check_scheduled_backups($schedule))->everyTenSeconds();
|
2023-08-27 15:23:47 +02:00
|
|
|
if (isDev()) {
|
2023-06-06 08:43:01 +02:00
|
|
|
$schedule->command('horizon:snapshot')->everyMinute();
|
2023-08-16 17:18:50 +02:00
|
|
|
$schedule->job(new ResourceStatusJob)->everyMinute();
|
2023-07-14 13:03:58 +02:00
|
|
|
$schedule->job(new ProxyCheckJob)->everyFiveMinutes();
|
2023-08-15 14:11:38 +02:00
|
|
|
$schedule->job(new CleanupInstanceStuffsJob)->everyMinute();
|
2023-08-08 17:28:36 +02:00
|
|
|
|
2023-07-14 11:33:08 +02:00
|
|
|
// $schedule->job(new CheckResaleLicenseJob)->hourly();
|
|
|
|
// $schedule->job(new DockerCleanupJob)->everyOddHour();
|
2023-06-15 11:23:48 +02:00
|
|
|
// $schedule->job(new InstanceAutoUpdateJob(true))->everyMinute();
|
2023-06-06 08:43:01 +02:00
|
|
|
} else {
|
|
|
|
$schedule->command('horizon:snapshot')->everyFiveMinutes();
|
2023-08-28 11:43:01 +02:00
|
|
|
$schedule->job(new CleanupInstanceStuffsJob)->everyMinute()->onOneServer();
|
|
|
|
$schedule->job(new ResourceStatusJob)->everyMinute()->onOneServer();
|
|
|
|
$schedule->job(new CheckResaleLicenseJob)->hourly()->onOneServer();
|
|
|
|
$schedule->job(new ProxyCheckJob)->everyFiveMinutes()->onOneServer();
|
|
|
|
$schedule->job(new DockerCleanupJob)->everyTenMinutes()->onOneServer();
|
2023-06-15 11:23:48 +02:00
|
|
|
$schedule->job(new InstanceAutoUpdateJob)->everyTenMinutes();
|
2023-06-06 08:43:01 +02:00
|
|
|
}
|
2023-08-08 17:28:36 +02:00
|
|
|
$this->check_scheduled_backups($schedule);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function check_scheduled_backups($schedule)
|
|
|
|
{
|
|
|
|
ray('check_scheduled_backups');
|
|
|
|
$scheduled_backups = ScheduledDatabaseBackup::all();
|
|
|
|
if ($scheduled_backups->isEmpty()) {
|
|
|
|
ray('no scheduled backups');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
foreach ($scheduled_backups as $scheduled_backup) {
|
2023-08-16 17:18:50 +02:00
|
|
|
if (!$scheduled_backup->enabled) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2023-08-09 17:57:27 +02:00
|
|
|
if (isset(VALID_CRON_STRINGS[$scheduled_backup->frequency])) {
|
|
|
|
$scheduled_backup->frequency = VALID_CRON_STRINGS[$scheduled_backup->frequency];
|
|
|
|
}
|
2023-08-10 15:52:54 +02:00
|
|
|
$schedule->job(new DatabaseBackupJob(
|
2023-08-08 17:28:36 +02:00
|
|
|
backup: $scheduled_backup
|
|
|
|
))->cron($scheduled_backup->frequency);
|
|
|
|
}
|
2023-03-17 15:33:48 +01:00
|
|
|
}
|
2023-08-08 11:51:36 +02:00
|
|
|
|
2023-03-17 15:33:48 +01:00
|
|
|
protected function commands(): void
|
|
|
|
{
|
2023-04-28 09:00:47 +02:00
|
|
|
$this->load(__DIR__ . '/Commands');
|
2023-03-17 15:33:48 +01:00
|
|
|
|
|
|
|
require base_path('routes/console.php');
|
|
|
|
}
|
2023-07-14 11:27:08 +02:00
|
|
|
}
|