2023-05-03 10:38:57 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Livewire\Server;
|
|
|
|
|
|
|
|
use App\Models\Server;
|
|
|
|
use Livewire\Component;
|
2023-06-16 11:13:09 +00:00
|
|
|
use Masmerise\Toaster\Toaster;
|
2023-05-03 10:38:57 +00:00
|
|
|
|
|
|
|
class PrivateKey extends Component
|
|
|
|
{
|
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-08-08 09:51:36 +00:00
|
|
|
public function setPrivateKey($private_key_id)
|
|
|
|
{
|
|
|
|
$this->server->update([
|
|
|
|
'private_key_id' => $private_key_id
|
|
|
|
]);
|
2023-08-16 15:18:50 +00:00
|
|
|
refresh_server_connection($this->server->privateKey);
|
2023-08-08 09:51:36 +00:00
|
|
|
$this->server->refresh();
|
|
|
|
$this->checkConnection();
|
|
|
|
}
|
|
|
|
|
2023-06-16 11:13:09 +00:00
|
|
|
public function checkConnection()
|
|
|
|
{
|
|
|
|
try {
|
2023-07-25 12:43:49 +00:00
|
|
|
['uptime' => $uptime, 'dockerVersion' => $dockerVersion] = validateServer($this->server);
|
2023-06-16 11:13:09 +00:00
|
|
|
if ($uptime) {
|
|
|
|
Toaster::success('Server is reachable with this private key.');
|
2023-07-25 12:43:49 +00:00
|
|
|
}
|
|
|
|
if ($dockerVersion) {
|
|
|
|
Toaster::success('Server is usable for Coolify.');
|
2023-06-16 11:13:09 +00:00
|
|
|
}
|
|
|
|
} catch (\Exception $e) {
|
2023-06-22 19:02:32 +00:00
|
|
|
return general_error_handler(customErrorMessage: "Server is not reachable. Reason: {$e->getMessage()}", that: $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
|
|
|
}
|
|
|
|
}
|