lasthourcloud/app/Jobs/DeleteResourceJob.php

75 lines
2.6 KiB
PHP
Raw Normal View History

<?php
namespace App\Jobs;
use App\Actions\Application\StopApplication;
use App\Actions\Database\StopDatabase;
2023-12-08 17:32:08 +00:00
use App\Actions\Service\DeleteService;
use App\Models\Application;
use App\Models\Service;
2023-10-24 12:31:28 +00:00
use App\Models\StandaloneMariadb;
2023-10-19 11:32:03 +00:00
use App\Models\StandaloneMongodb;
2023-10-24 12:31:28 +00: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;
class DeleteResourceJob implements ShouldQueue, ShouldBeEncrypted
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
2023-10-24 12:31:28 +00:00
public function __construct(public Application|Service|StandalonePostgresql|StandaloneRedis|StandaloneMongodb|StandaloneMysql|StandaloneMariadb $resource)
{
}
public function handle()
{
try {
$server = $this->resource->destination->server;
2024-01-17 14:48:01 +00:00
$this->resource->delete();
if (!$server->isFunctional()) {
2024-01-17 14:48:01 +00:00
if ($this->resource->type() === 'service') {
ray('dispatching delete service');
DeleteService::dispatch($this->resource);
} else {
$this->resource->forceDelete();
}
return 'Server is not functional';
}
switch ($this->resource->type()) {
case 'application':
StopApplication::run($this->resource);
break;
case 'standalone-postgresql':
StopDatabase::run($this->resource);
break;
case 'standalone-redis':
StopDatabase::run($this->resource);
break;
2023-10-19 11:32:03 +00:00
case 'standalone-mongodb':
StopDatabase::run($this->resource);
break;
2023-10-24 12:31:28 +00:00
case 'standalone-mysql':
StopDatabase::run($this->resource);
break;
case 'standalone-mariadb':
StopDatabase::run($this->resource);
break;
}
2023-12-08 17:32:08 +00:00
if ($this->resource->type() === 'service') {
DeleteService::dispatch($this->resource);
} else {
2023-12-13 14:34:33 +00:00
$this->resource->forceDelete();
2023-12-08 17:32:08 +00:00
}
} catch (\Throwable $e) {
send_internal_notification('ContainerStoppingJob failed with: ' . $e->getMessage());
throw $e;
}
}
}