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;
|
|
|
|
public $privateKeys;
|
2023-05-03 10:38:57 +00:00
|
|
|
public $parameters;
|
2023-06-16 11:13:09 +00:00
|
|
|
|
2023-09-09 13:30:46 +00:00
|
|
|
public function setPrivateKey($newPrivateKeyId)
|
2023-08-08 09:51:36 +00:00
|
|
|
{
|
2023-09-09 13:30:46 +00:00
|
|
|
try {
|
|
|
|
$oldPrivateKeyId = $this->server->private_key_id;
|
2023-09-28 11:40:58 +00:00
|
|
|
refresh_server_connection($this->server->privateKey);
|
2023-09-09 13:30:46 +00:00
|
|
|
$this->server->update([
|
|
|
|
'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) {
|
2023-09-09 13:30:46 +00:00
|
|
|
$this->server->update([
|
|
|
|
'private_key_id' => $oldPrivateKeyId
|
|
|
|
]);
|
|
|
|
$this->server->refresh();
|
2023-09-14 08:12:58 +00:00
|
|
|
refresh_server_connection($this->server->privateKey);
|
2023-09-15 13:34:25 +00:00
|
|
|
return handleError($e, $this);
|
2023-09-09 13:30:46 +00:00
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
}
|
|
|
|
|
2023-10-09 13:08:28 +00:00
|
|
|
public function checkConnection()
|
2023-06-16 11:13:09 +00:00
|
|
|
{
|
|
|
|
try {
|
2023-10-09 09:00:18 +00:00
|
|
|
$uptime = $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.');
|
2023-09-09 13:30:46 +00:00
|
|
|
} else {
|
2023-12-07 18:06:32 +00:00
|
|
|
$this->dispatch('error', 'Server is not reachable. Please check your connection and private key configuration.');
|
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) {
|
2023-09-15 13:34:25 +00:00
|
|
|
return handleError($e, $this);
|
2023-06-16 11:13:09 +00:00
|
|
|
}
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-05-03 10:38:57 +00:00
|
|
|
public function mount()
|
|
|
|
{
|
2023-08-09 13:57:53 +00:00
|
|
|
$this->parameters = get_route_parameters();
|
2023-05-03 10:38:57 +00:00
|
|
|
}
|
|
|
|
}
|