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

88 lines
2.7 KiB
PHP
Raw Normal View History

2023-05-03 07:23:45 +02:00
<?php
namespace App\Http\Livewire\Server;
2023-05-12 20:42:39 +02:00
use App\Actions\Proxy\CheckProxySettingsInSync;
2023-05-03 10:27:44 +02:00
use App\Actions\Proxy\InstallProxy;
2023-05-15 13:45:37 +02:00
use App\Enums\ProxyTypes;
use Illuminate\Support\Str;
2023-05-03 07:23:45 +02:00
use App\Models\Server;
use Livewire\Component;
class Proxy extends Component
{
public Server $server;
2023-05-15 13:45:37 +02:00
public ProxyTypes $selectedProxy = ProxyTypes::TRAEFIK_V2;
public $proxy_settings = null;
2023-05-03 07:23:45 +02:00
2023-06-02 15:15:12 +02:00
protected $listeners = ['serverValidated', 'saveConfiguration'];
2023-05-15 21:14:45 +02:00
public function serverValidated()
{
2023-06-02 15:15:12 +02:00
$this->server->refresh();
2023-05-15 21:14:45 +02:00
}
2023-06-08 08:39:00 +02:00
public function switchProxy()
{
2023-06-20 20:19:31 +02:00
$this->server->proxy->type = null;
2023-06-08 08:39:00 +02:00
$this->server->save();
}
2023-05-15 13:45:37 +02:00
public function installProxy()
2023-05-03 07:23:45 +02:00
{
2023-05-16 11:39:18 +02:00
if (
2023-06-20 20:19:31 +02:00
$this->server->proxy->last_applied_settings &&
$this->server->proxy->last_saved_settings !== $this->server->proxy->last_applied_settings
2023-05-16 11:39:18 +02:00
) {
$this->saveConfiguration($this->server);
}
2023-05-03 10:27:44 +02:00
$activity = resolve(InstallProxy::class)($this->server);
2023-05-03 07:23:45 +02:00
$this->emit('newMonitorActivity', $activity->id);
}
2023-06-02 15:15:12 +02:00
public function setProxy(string $proxy_type)
2023-05-15 13:45:37 +02:00
{
2023-06-20 20:19:31 +02:00
$this->server->proxy->type = $proxy_type;
$this->server->proxy->status = 'exited';
2023-05-15 13:45:37 +02:00
$this->server->save();
}
public function stopProxy()
{
2023-05-24 15:25:08 +02:00
instant_remote_process([
2023-05-15 13:45:37 +02:00
"docker rm -f coolify-proxy",
], $this->server);
2023-06-20 20:19:31 +02:00
$this->server->proxy->status = 'exited';
2023-05-15 13:45:37 +02:00
$this->server->save();
}
2023-06-02 15:15:12 +02:00
public function saveConfiguration(Server $server)
2023-05-15 13:45:37 +02:00
{
try {
$proxy_path = config('coolify.proxy_config_path');
2023-05-15 21:48:36 +02:00
$this->proxy_settings = Str::of($this->proxy_settings)->trim()->value;
2023-05-15 13:45:37 +02:00
$docker_compose_yml_base64 = base64_encode($this->proxy_settings);
2023-06-20 20:19:31 +02:00
$server->proxy->last_saved_settings = Str::of($docker_compose_yml_base64)->pipe('md5')->value;
2023-06-02 15:15:12 +02:00
$server->save();
2023-05-24 15:25:08 +02:00
instant_remote_process([
2023-05-15 13:45:37 +02:00
"echo '$docker_compose_yml_base64' | base64 -d > $proxy_path/docker-compose.yml",
2023-06-02 15:15:12 +02:00
], $server);
2023-06-22 10:04:39 +02:00
$this->emit('success', 'Proxy configuration saved.');
2023-05-15 13:45:37 +02:00
} catch (\Exception $e) {
2023-06-09 15:55:21 +02:00
return general_error_handler(err: $e);
2023-05-15 13:45:37 +02:00
}
}
2023-05-15 22:17:31 +02:00
public function resetProxy()
2023-05-03 07:23:45 +02:00
{
2023-05-15 13:45:37 +02:00
try {
2023-05-15 22:06:08 +02:00
$this->proxy_settings = resolve(CheckProxySettingsInSync::class)($this->server, true);
2023-05-15 13:45:37 +02:00
} catch (\Exception $e) {
2023-06-09 15:55:21 +02:00
return general_error_handler(err: $e);
2023-05-15 13:45:37 +02:00
}
2023-05-03 07:23:45 +02:00
}
2023-05-15 22:17:31 +02:00
public function checkProxySettingsInSync()
{
try {
$this->proxy_settings = resolve(CheckProxySettingsInSync::class)($this->server);
} catch (\Exception $e) {
2023-06-09 15:55:21 +02:00
return general_error_handler(err: $e);
2023-05-15 22:17:31 +02:00
}
}
2023-05-03 07:23:45 +02:00
}