140 lines
6.0 KiB
PHP
140 lines
6.0 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Jobs;
|
||
|
|
||
|
use App\Actions\Proxy\StartProxy;
|
||
|
use App\Models\Server;
|
||
|
use App\Notifications\Container\ContainerRestarted;
|
||
|
use App\Notifications\Container\ContainerStopped;
|
||
|
use App\Notifications\Server\Unreachable;
|
||
|
use Illuminate\Bus\Queueable;
|
||
|
use Illuminate\Contracts\Queue\ShouldBeEncrypted;
|
||
|
use Illuminate\Contracts\Queue\ShouldBeUnique;
|
||
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||
|
use Illuminate\Foundation\Bus\Dispatchable;
|
||
|
use Illuminate\Queue\InteractsWithQueue;
|
||
|
use Illuminate\Queue\Middleware\WithoutOverlapping;
|
||
|
use Illuminate\Queue\SerializesModels;
|
||
|
use Str;
|
||
|
|
||
|
class ContainerStatusJob implements ShouldQueue, ShouldBeUnique, ShouldBeEncrypted
|
||
|
{
|
||
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||
|
|
||
|
public $tries = 1;
|
||
|
public $timeout = 120;
|
||
|
|
||
|
public function __construct(public Server $server)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function middleware(): array
|
||
|
{
|
||
|
return [new WithoutOverlapping($this->server->uuid)];
|
||
|
}
|
||
|
|
||
|
public function uniqueId(): string
|
||
|
{
|
||
|
return $this->server->uuid;
|
||
|
}
|
||
|
|
||
|
private function checkServerConnection() {
|
||
|
ray("Checking server connection to {$this->server->ip}");
|
||
|
$uptime = instant_remote_process(['uptime'], $this->server, false);
|
||
|
if (!is_null($uptime)) {
|
||
|
ray('Server is up');
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
public function handle(): void
|
||
|
{
|
||
|
try {
|
||
|
ray()->clearAll();
|
||
|
$serverUptimeCheckNumber = 0;
|
||
|
$serverUptimeCheckNumberMax = 5;
|
||
|
while (true) {
|
||
|
if ($serverUptimeCheckNumber >= $serverUptimeCheckNumberMax) {
|
||
|
$this->server->settings()->update(['is_reachable' => false]);
|
||
|
$this->server->team->notify(new Unreachable($this->server));
|
||
|
return;
|
||
|
}
|
||
|
$result = $this->checkServerConnection();
|
||
|
if ($result) {
|
||
|
break;
|
||
|
}
|
||
|
$serverUptimeCheckNumber++;
|
||
|
sleep(5);
|
||
|
}
|
||
|
$containers = instant_remote_process(["docker container inspect $(docker container ls -q) --format '{{json .}}'"], $this->server);
|
||
|
$containers = format_docker_command_output_to_json($containers);
|
||
|
$applications = $this->server->applications();
|
||
|
$databases = $this->server->databases();
|
||
|
if ($this->server->isProxyShouldRun()) {
|
||
|
$foundProxyContainer = $containers->filter(function ($value, $key) {
|
||
|
return data_get($value, 'Name') === '/coolify-proxy';
|
||
|
})->first();
|
||
|
if (!$foundProxyContainer) {
|
||
|
resolve(StartProxy::class)($this->server, false);
|
||
|
$this->server->team->notify(new ContainerRestarted('coolify-proxy', $this->server));
|
||
|
}
|
||
|
}
|
||
|
foreach ($applications as $application) {
|
||
|
$uuid = data_get($application, 'uuid');
|
||
|
$foundContainer = $containers->filter(function ($value, $key) use ($uuid) {
|
||
|
return Str::startsWith(data_get($value, 'Name'), "/$uuid");
|
||
|
})->first();
|
||
|
|
||
|
if ($foundContainer) {
|
||
|
$containerStatus = data_get($foundContainer, 'State.Status');
|
||
|
$databaseStatus = data_get($application, 'status');
|
||
|
if ($containerStatus !== $databaseStatus) {
|
||
|
$application->update(['status' => $containerStatus]);
|
||
|
}
|
||
|
} else {
|
||
|
$databaseStatus = data_get($application, 'status');
|
||
|
if ($databaseStatus !== 'exited') {
|
||
|
$application->update(['status' => 'exited']);
|
||
|
$name = data_get($application, 'name');
|
||
|
$fqdn = data_get($application, 'fqdn');
|
||
|
$containerName = $name ? "$name ($fqdn)" : $fqdn;
|
||
|
$project = data_get($application, 'environment.project');
|
||
|
$environment = data_get($application, 'environment');
|
||
|
$url = base_url() . '/project/' . $project->uuid . "/" . $environment->name . "/application/" . $application->uuid;
|
||
|
$this->server->team->notify(new ContainerStopped($containerName, $this->server, $url));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
foreach ($databases as $database) {
|
||
|
$uuid = data_get($database, 'uuid');
|
||
|
$foundContainer = $containers->filter(function ($value, $key) use ($uuid) {
|
||
|
return Str::startsWith(data_get($value, 'Name'), "/$uuid");
|
||
|
})->first();
|
||
|
|
||
|
if ($foundContainer) {
|
||
|
$containerStatus = data_get($foundContainer, 'State.Status');
|
||
|
$databaseStatus = data_get($database, 'status');
|
||
|
if ($containerStatus !== $databaseStatus) {
|
||
|
$database->update(['status' => $containerStatus]);
|
||
|
}
|
||
|
} else {
|
||
|
$databaseStatus = data_get($database, 'status');
|
||
|
if ($databaseStatus !== 'exited') {
|
||
|
$database->update(['status' => 'exited']);
|
||
|
$name = data_get($database, 'name');
|
||
|
$containerName = $name;
|
||
|
$project = data_get($database, 'environment.project');
|
||
|
$environment = data_get($database, 'environment');
|
||
|
$url = base_url() . '/project/' . $project->uuid . "/" . $environment->name . "/database/" . $database->uuid;
|
||
|
$this->server->team->notify(new ContainerStopped($containerName, $this->server, $url));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
// TODO Monitor other containers not managed by Coolify
|
||
|
} catch (\Throwable $e) {
|
||
|
send_internal_notification('ContainerStatusJob failed with: ' . $e->getMessage());
|
||
|
ray($e->getMessage());
|
||
|
throw $e;
|
||
|
}
|
||
|
}
|
||
|
}
|