Fix styling

This commit is contained in:
Thijmen
2024-06-10 20:43:34 +00:00
committed by github-actions[bot]
parent 41fb6a1fc9
commit d86274cc37
429 changed files with 5307 additions and 2831 deletions

View File

@@ -8,9 +8,10 @@ use Lorisleiva\Actions\Concerns\AsAction;
class CheckProxy
{
use AsAction;
public function handle(Server $server, $fromUI = false)
{
if (!$server->isFunctional()) {
if (! $server->isFunctional()) {
return false;
}
if ($server->isBuildServer()) {
@@ -18,6 +19,7 @@ class CheckProxy
$server->proxy = null;
$server->save();
}
return false;
}
$proxyType = $server->proxyType();
@@ -25,12 +27,12 @@ class CheckProxy
return false;
}
['uptime' => $uptime, 'error' => $error] = $server->validateConnection();
if (!$uptime) {
if (! $uptime) {
throw new \Exception($error);
}
if (!$server->isProxyShouldRun()) {
if (! $server->isProxyShouldRun()) {
if ($fromUI) {
throw new \Exception("Proxy should not run. You selected the Custom Proxy.");
throw new \Exception('Proxy should not run. You selected the Custom Proxy.');
} else {
return false;
}
@@ -42,12 +44,14 @@ class CheckProxy
if ($status === 'running') {
return false;
}
return true;
} else {
$status = getContainerStatus($server, 'coolify-proxy');
if ($status === 'running') {
$server->proxy->set('status', 'running');
$server->save();
return false;
}
if ($server->settings->is_cloudflare_tunnel) {
@@ -76,6 +80,7 @@ class CheckProxy
return false;
}
}
return true;
}
}