lasthourcloud/app/Livewire/Server/ShowPrivateKey.php

60 lines
1.7 KiB
PHP
Raw Normal View History

2023-05-03 10:38:57 +00:00
<?php
2023-12-07 18:06:32 +00:00
namespace App\Livewire\Server;
2023-05-03 10:38:57 +00:00
use App\Models\Server;
use Livewire\Component;
2023-08-30 09:06:44 +00:00
class ShowPrivateKey extends Component
2023-05-03 10:38:57 +00:00
{
2023-06-15 12:18:49 +00:00
public Server $server;
2024-06-10 20:43:34 +00:00
2023-06-15 12:18:49 +00:00
public $privateKeys;
2024-06-10 20:43:34 +00:00
2023-05-03 10:38:57 +00:00
public $parameters;
2023-06-16 11:13:09 +00:00
public function setPrivateKey($newPrivateKeyId)
{
try {
$oldPrivateKeyId = $this->server->private_key_id;
2023-09-28 11:40:58 +00:00
refresh_server_connection($this->server->privateKey);
$this->server->update([
2024-06-10 20:43:34 +00:00
'private_key_id' => $newPrivateKeyId,
]);
$this->server->refresh();
refresh_server_connection($this->server->privateKey);
$this->checkConnection();
2023-09-11 15:36:30 +00:00
} catch (\Throwable $e) {
$this->server->update([
2024-06-10 20:43:34 +00:00
'private_key_id' => $oldPrivateKeyId,
]);
$this->server->refresh();
refresh_server_connection($this->server->privateKey);
2024-06-10 20:43:34 +00:00
return handleError($e, $this);
}
}
2023-10-09 13:08:28 +00:00
public function checkConnection()
2023-06-16 11:13:09 +00:00
{
try {
2024-04-16 13:42:38 +00:00
['uptime' => $uptime, 'error' => $error] = $this->server->validateConnection();
2023-06-16 11:13:09 +00:00
if ($uptime) {
2023-12-07 18:06:32 +00:00
$this->dispatch('success', 'Server is reachable.');
} else {
2024-04-16 13:42:38 +00:00
ray($error);
2024-03-27 10:07:29 +00:00
$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/knowledge-base/server/openssh">documentation</a> for further help.');
2024-06-10 20:43:34 +00:00
2023-10-09 09:00:18 +00:00
return;
2023-06-16 11:13:09 +00:00
}
2023-09-11 15:36:30 +00:00
} catch (\Throwable $e) {
return handleError($e, $this);
2023-06-16 11:13:09 +00:00
}
}
2023-05-03 10:38:57 +00:00
public function mount()
{
$this->parameters = get_route_parameters();
2023-05-03 10:38:57 +00:00
}
}