coolify/app/Livewire/Server/ShowPrivateKey.php

61 lines
2.1 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
2024-10-17 12:56:36 +00:00
public function mount()
{
$this->parameters = get_route_parameters();
}
public function setPrivateKey($privateKeyId)
{
2024-10-17 12:56:36 +00:00
$originalPrivateKeyId = $this->server->getOriginal('private_key_id');
try {
2024-10-17 12:56:36 +00:00
$this->server->update(['private_key_id' => $privateKeyId]);
['uptime' => $uptime, 'error' => $error] = $this->server->validateConnection();
if ($uptime) {
$this->dispatch('success', 'Private key updated successfully.');
} else {
throw new \Exception('Server is not reachable.<br><br>Check this <a target="_blank" class="underline" href="https://coolify.io/docs/knowledge-base/server/openssh">documentation</a> for further help.<br><br>Error: '.$error);
}
} catch (\Exception $e) {
2024-10-17 12:56:36 +00:00
$this->server->update(['private_key_id' => $originalPrivateKeyId]);
$this->server->validateConnection();
$this->dispatch('error', 'Failed to update private key: '.$e->getMessage());
2024-10-17 12:56:36 +00:00
} finally {
$this->dispatch('refreshServerShow');
$this->server->refresh();
}
}
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 {
$this->dispatch('error', 'Server is not reachable.<br><br>Check this <a target="_blank" class="underline" href="https://coolify.io/docs/knowledge-base/server/openssh">documentation</a> for further help.<br><br>Error: '.$error);
2024-10-17 20:08:23 +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);
2024-10-17 12:56:36 +00:00
} finally {
$this->dispatch('refreshServerShow');
$this->server->refresh();
2023-06-16 11:13:09 +00:00
}
}
2023-05-03 10:38:57 +00:00
}