coolify/app/Http/Livewire/Server/PrivateKey.php

45 lines
1.2 KiB
PHP
Raw Normal View History

2023-05-03 12:38:57 +02:00
<?php
namespace App\Http\Livewire\Server;
use App\Models\Server;
2023-05-16 11:39:18 +02:00
use Illuminate\Support\Facades\Storage;
2023-05-03 12:38:57 +02:00
use Livewire\Component;
2023-06-16 13:13:09 +02:00
use Masmerise\Toaster\Toaster;
2023-05-03 12:38:57 +02:00
class PrivateKey extends Component
{
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 checkConnection()
{
try {
$uptime = instant_remote_process(['uptime'], $this->server, false);
if ($uptime) {
Toaster::success('Server is reachable with this private key.');
} else {
Toaster::error('Server is NOT reachable with this private key.');
}
} catch (\Exception $e) {
return general_error_handler(err: $e, that: $this);
}
}
2023-05-03 12:38:57 +02:00
public function setPrivateKey($private_key_id)
{
2023-06-15 14:18:49 +02:00
$this->server->update([
2023-05-03 12:38:57 +02:00
'private_key_id' => $private_key_id
]);
2023-06-15 14:18:49 +02:00
2023-05-16 11:39:18 +02:00
// Delete the old ssh mux file to force a new one to be created
2023-06-16 13:13:09 +02:00
Storage::disk('ssh-mux')->delete($this->server->muxFilename());
2023-06-15 14:18:49 +02:00
$this->server->refresh();
2023-06-16 13:13:09 +02:00
$this->checkConnection();
2023-05-03 12:38:57 +02:00
}
public function mount()
{
2023-06-15 09:15:41 +02:00
$this->parameters = getRouteParameters();
2023-05-03 12:38:57 +02:00
}
}