coolify/app/Jobs/DeleteResourceJob.php

61 lines
2.0 KiB
PHP
Raw Normal View History

<?php
namespace App\Jobs;
use App\Actions\Application\StopApplication;
use App\Actions\Database\StopDatabase;
2023-12-08 18:32:08 +01:00
use App\Actions\Service\DeleteService;
2024-01-31 09:58:41 +01:00
use App\Actions\Service\StopService;
use App\Models\Application;
use App\Models\Service;
2023-10-24 14:31:28 +02:00
use App\Models\StandaloneMariadb;
2023-10-19 13:32:03 +02:00
use App\Models\StandaloneMongodb;
2023-10-24 14:31:28 +02:00
use App\Models\StandaloneMysql;
use App\Models\StandalonePostgresql;
use App\Models\StandaloneRedis;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldBeEncrypted;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\Artisan;
class DeleteResourceJob implements ShouldQueue, ShouldBeEncrypted
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
2023-10-24 14:31:28 +02:00
public function __construct(public Application|Service|StandalonePostgresql|StandaloneRedis|StandaloneMongodb|StandaloneMysql|StandaloneMariadb $resource)
{
}
public function handle()
{
try {
2024-01-31 09:58:41 +01:00
$this->resource->forceDelete();
switch ($this->resource->type()) {
case 'application':
StopApplication::run($this->resource);
break;
case 'standalone-postgresql':
case 'standalone-redis':
2023-10-19 13:32:03 +02:00
case 'standalone-mongodb':
2023-10-24 14:31:28 +02:00
case 'standalone-mysql':
case 'standalone-mariadb':
StopDatabase::run($this->resource);
break;
case 'service':
2024-01-31 09:58:41 +01:00
StopService::run($this->resource);
DeleteService::run($this->resource);
break;
2023-12-08 18:32:08 +01:00
}
} catch (\Throwable $e) {
ray($e->getMessage());
send_internal_notification('ContainerStoppingJob failed with: ' . $e->getMessage());
throw $e;
} finally {
Artisan::queue('cleanup:stucked-resources');
}
}
}