This commit is contained in:
Andras Bacsai 2023-06-22 21:17:53 +02:00
parent 37646bcfa0
commit 1304631aad
4 changed files with 47 additions and 35 deletions

View File

@ -44,7 +44,7 @@ public function installDocker()
public function validateServer()
{
try {
$this->uptime = instant_remote_process(['uptime'], $this->server, false);
$this->uptime = instant_remote_process(['uptime'], $this->server);
if ($this->uptime) {
$this->server->settings->is_reachable = true;
$this->server->settings->save();
@ -61,7 +61,10 @@ public function validateServer()
$this->emit('serverValidated');
}
} catch (\Exception $e) {
return general_error_handler(err: $e, that: $this);
$this->server->settings->is_reachable = false;
$this->server->settings->is_usable = false;
$this->server->settings->save();
return general_error_handler(customErrorMessage: "Server is not reachable. Reason: {$e->getMessage()}", that: $this);
}
}
public function delete()

View File

@ -21,6 +21,9 @@ public function checkConnection()
Toaster::success('Server is reachable with this private key.');
}
} catch (\Exception $e) {
$this->server->settings->is_reachable = false;
$this->server->settings->is_usable = false;
$this->server->settings->save();
return general_error_handler(customErrorMessage: "Server is not reachable. Reason: {$e->getMessage()}", that: $this);
}
}

View File

@ -66,6 +66,7 @@ public function saveConfiguration()
$this->server->proxy->last_saved_settings = Str::of($docker_compose_yml_base64)->pipe('md5')->value;
$this->server->proxy->redirect_url = $this->redirect_url;
$this->server->save();
instant_remote_process([
"echo '$docker_compose_yml_base64' | base64 -d > $proxy_path/docker-compose.yml",
], $this->server);

View File

@ -7,7 +7,8 @@
<div wire:loading wire:target="checkProxySettingsInSync">
<x-loading />
</div>
@isset($proxy_settings)
<div wire:loading.remove>
@if ($proxy_settings)
@if ($selectedProxy->value === 'TRAEFIK_V2')
<form wire:submit.prevent='saveConfiguration'>
<div class="flex items-center gap-2">
@ -22,7 +23,8 @@
@if (
$server->proxy->last_applied_settings &&
$server->proxy->last_saved_settings !== $server->proxy->last_applied_settings)
<div class="text-red-500 ">Configuration out of sync. Restart to get the new configs.
<div class="text-red-500 ">Configuration out of sync. Restart to get the new
configs.
</div>
@endif
@if ($server->id !== 0)
@ -41,7 +43,10 @@
</div>
</form>
@endif
@endisset
@else
<div class="">Server is not validated. Validate first.</div>
@endif
</div>
</div>
@else
<div>