coolify/app/Http/Livewire/Server/ShowPrivateKey.php

73 lines
2.3 KiB
PHP
Raw Normal View History

2023-05-03 12:38:57 +02:00
<?php
namespace App\Http\Livewire\Server;
use App\Models\Server;
use Livewire\Component;
2023-08-30 11:06:44 +02:00
class ShowPrivateKey extends Component
2023-05-03 12:38:57 +02:00
{
2023-06-15 14:18:49 +02:00
public Server $server;
public $privateKeys;
2023-05-03 12:38:57 +02:00
public $parameters;
2023-06-16 13:13:09 +02:00
public function setPrivateKey($newPrivateKeyId)
{
try {
refresh_server_connection($this->server->privateKey);
$oldPrivateKeyId = $this->server->private_key_id;
$this->server->update([
'private_key_id' => $newPrivateKeyId
]);
$this->server->refresh();
refresh_server_connection($this->server->privateKey);
$this->checkConnection();
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
$this->server->update([
'private_key_id' => $oldPrivateKeyId
]);
$this->server->refresh();
refresh_server_connection($this->server->privateKey);
return handleError($e, $this);
}
}
2023-06-16 13:13:09 +02:00
public function checkConnection()
{
try {
['uptime' => $uptime, 'dockerVersion' => $dockerVersion] = validateServer($this->server, true);
2023-06-16 13:13:09 +02:00
if ($uptime) {
2023-09-18 11:49:26 +02:00
$this->server->settings->update([
'is_reachable' => true
]);
$this->emit('success', 'Server is reachable with this private key.');
} else {
2023-09-18 11:49:26 +02:00
$this->server->settings->update([
'is_reachable' => false,
'is_usable' => false
]);
2023-09-11 17:19:30 +02:00
$this->emit('error', 'Server is not reachable with this private key.');
return;
}
if ($dockerVersion) {
2023-09-18 11:49:26 +02:00
$this->server->settings->update([
'is_usable' => true
]);
$this->emit('success', 'Server is usable for Coolify.');
} else {
2023-09-18 11:49:26 +02:00
$this->server->settings->update([
'is_usable' => false
]);
2023-09-11 17:19:30 +02:00
$this->emit('error', 'Old (lower than 23) or no Docker version detected. Install Docker Engine on the General tab.');
2023-06-16 13:13:09 +02:00
}
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
return handleError($e, $this);
2023-06-16 13:13:09 +02:00
}
}
2023-05-03 12:38:57 +02:00
public function mount()
{
$this->parameters = get_route_parameters();
2023-05-03 12:38:57 +02:00
}
}