2023-03-17 14:33:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console;
|
|
|
|
|
2023-09-11 20:29:34 +00:00
|
|
|
use App\Enums\ProxyTypes;
|
2023-09-02 13:53:12 +00:00
|
|
|
use App\Jobs\ApplicationContainerStatusJob;
|
2023-07-14 09:27:08 +00:00
|
|
|
use App\Jobs\CheckResaleLicenseJob;
|
2023-08-15 12:11:38 +00:00
|
|
|
use App\Jobs\CleanupInstanceStuffsJob;
|
2023-08-10 13:52:54 +00:00
|
|
|
use App\Jobs\DatabaseBackupJob;
|
2023-09-02 13:53:12 +00:00
|
|
|
use App\Jobs\DatabaseContainerStatusJob;
|
2023-08-08 09:51:36 +00:00
|
|
|
use App\Jobs\DockerCleanupJob;
|
2023-05-25 12:23:49 +00:00
|
|
|
use App\Jobs\InstanceAutoUpdateJob;
|
2023-09-11 20:29:34 +00:00
|
|
|
use App\Jobs\ProxyContainerStatusJob;
|
2023-09-02 13:53:12 +00:00
|
|
|
use App\Models\Application;
|
2023-09-01 14:30:50 +00:00
|
|
|
use App\Models\InstanceSettings;
|
2023-08-08 15:28:36 +00:00
|
|
|
use App\Models\ScheduledDatabaseBackup;
|
2023-09-11 20:29:34 +00:00
|
|
|
use App\Models\Server;
|
2023-09-02 13:53:12 +00:00
|
|
|
use App\Models\StandalonePostgresql;
|
2023-03-17 14:33:48 +00: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-27 13:23:47 +00:00
|
|
|
if (isDev()) {
|
2023-06-06 06:43:01 +00:00
|
|
|
$schedule->command('horizon:snapshot')->everyMinute();
|
2023-08-15 12:11:38 +00:00
|
|
|
$schedule->job(new CleanupInstanceStuffsJob)->everyMinute();
|
2023-07-14 09:33:08 +00:00
|
|
|
// $schedule->job(new CheckResaleLicenseJob)->hourly();
|
2023-09-01 08:11:00 +00:00
|
|
|
$schedule->job(new DockerCleanupJob)->everyOddHour();
|
2023-06-06 06:43:01 +00:00
|
|
|
} else {
|
|
|
|
$schedule->command('horizon:snapshot')->everyFiveMinutes();
|
2023-09-01 14:30:50 +00:00
|
|
|
$schedule->job(new CleanupInstanceStuffsJob)->everyTenMinutes()->onOneServer();
|
2023-08-28 09:43:01 +00:00
|
|
|
$schedule->job(new CheckResaleLicenseJob)->hourly()->onOneServer();
|
|
|
|
$schedule->job(new DockerCleanupJob)->everyTenMinutes()->onOneServer();
|
2023-06-06 06:43:01 +00:00
|
|
|
}
|
2023-09-01 14:30:50 +00:00
|
|
|
$this->instance_auto_update($schedule);
|
2023-08-08 15:28:36 +00:00
|
|
|
$this->check_scheduled_backups($schedule);
|
2023-09-02 13:53:12 +00:00
|
|
|
$this->check_resources($schedule);
|
2023-09-11 20:29:34 +00:00
|
|
|
$this->check_proxies($schedule);
|
|
|
|
}
|
|
|
|
private function check_proxies($schedule)
|
|
|
|
{
|
|
|
|
$servers = Server::all()->where('settings.is_usable', true)->where('settings.is_reachable', true)->whereNotNull('proxy.type')->where('proxy.type', '!=', ProxyTypes::NONE->value);
|
|
|
|
foreach ($servers as $server) {
|
|
|
|
$schedule->job(new ProxyContainerStatusJob($server))->everyMinute()->onOneServer();
|
|
|
|
}
|
2023-09-02 13:53:12 +00:00
|
|
|
}
|
|
|
|
private function check_resources($schedule)
|
|
|
|
{
|
|
|
|
$applications = Application::all();
|
|
|
|
foreach ($applications as $application) {
|
|
|
|
$schedule->job(new ApplicationContainerStatusJob($application))->everyMinute()->onOneServer();
|
|
|
|
}
|
|
|
|
|
|
|
|
$postgresqls = StandalonePostgresql::all();
|
|
|
|
foreach ($postgresqls as $postgresql) {
|
|
|
|
$schedule->job(new DatabaseContainerStatusJob($postgresql))->everyMinute()->onOneServer();
|
|
|
|
}
|
2023-08-08 15:28:36 +00:00
|
|
|
}
|
2023-09-11 20:29:34 +00:00
|
|
|
private function instance_auto_update($schedule)
|
|
|
|
{
|
2023-09-01 14:30:50 +00:00
|
|
|
if (isDev()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$settings = InstanceSettings::get();
|
|
|
|
if ($settings->is_auto_update_enabled) {
|
|
|
|
$schedule->job(new InstanceAutoUpdateJob)->everyTenMinutes()->onOneServer();
|
|
|
|
}
|
|
|
|
}
|
2023-08-08 15:28:36 +00:00
|
|
|
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 15:18:50 +00:00
|
|
|
if (!$scheduled_backup->enabled) {
|
|
|
|
continue;
|
|
|
|
}
|
2023-09-11 20:29:34 +00:00
|
|
|
if (is_null(data_get($scheduled_backup, 'database'))) {
|
2023-09-09 11:18:49 +00:00
|
|
|
ray('database not found');
|
|
|
|
$scheduled_backup->delete();
|
|
|
|
continue;
|
|
|
|
}
|
2023-08-16 15:18:50 +00:00
|
|
|
|
2023-08-09 15:57:27 +00:00
|
|
|
if (isset(VALID_CRON_STRINGS[$scheduled_backup->frequency])) {
|
|
|
|
$scheduled_backup->frequency = VALID_CRON_STRINGS[$scheduled_backup->frequency];
|
|
|
|
}
|
2023-08-10 13:52:54 +00:00
|
|
|
$schedule->job(new DatabaseBackupJob(
|
2023-08-08 15:28:36 +00:00
|
|
|
backup: $scheduled_backup
|
2023-09-01 14:30:50 +00:00
|
|
|
))->cron($scheduled_backup->frequency)->onOneServer();
|
2023-08-08 15:28:36 +00:00
|
|
|
}
|
2023-03-17 14:33:48 +00:00
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-03-17 14:33:48 +00:00
|
|
|
protected function commands(): void
|
|
|
|
{
|
2023-04-28 07:00:47 +00:00
|
|
|
$this->load(__DIR__ . '/Commands');
|
2023-03-17 14:33:48 +00:00
|
|
|
|
|
|
|
require base_path('routes/console.php');
|
|
|
|
}
|
2023-07-14 09:27:08 +00:00
|
|
|
}
|