coolify/app/Livewire/Server/ShowPrivateKey.php

55 lines
1.6 KiB
PHP
Raw Normal View History

2023-05-03 12:38:57 +02:00
<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Server;
2023-05-03 12:38:57 +02:00
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 {
$oldPrivateKeyId = $this->server->private_key_id;
2023-09-28 13:40:58 +02:00
refresh_server_connection($this->server->privateKey);
$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-10-09 15:08:28 +02:00
public function checkConnection()
2023-06-16 13:13:09 +02:00
{
try {
2023-10-09 11:00:18 +02:00
$uptime = $this->server->validateConnection();
2023-06-16 13:13:09 +02:00
if ($uptime) {
2023-12-07 19:06:32 +01:00
$this->dispatch('success', 'Server is reachable.');
} else {
$this->dispatch('error', 'Server is not reachable.<br>Please validate your configuration and connection.<br><br>Check this <a target="_blank" class="underline" href="https://coolify.io/docs/configuration#openssh-server">documentation</a> for further help.');
2023-10-09 11:00:18 +02:00
return;
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
}
}