coolify/app/Livewire/Server/Proxy.php

125 lines
3.3 KiB
PHP
Raw Normal View History

2023-05-03 05:23:45 +00:00
<?php
2023-12-07 18:06:32 +00:00
namespace App\Livewire\Server;
2023-05-03 05:23:45 +00:00
2023-09-18 10:18:45 +00:00
use App\Actions\Proxy\CheckConfiguration;
use App\Actions\Proxy\SaveConfiguration;
2023-05-03 05:23:45 +00:00
use App\Models\Server;
2024-06-10 20:43:34 +00:00
use Livewire\Component;
2023-05-03 05:23:45 +00:00
class Proxy extends Component
{
public Server $server;
2023-09-06 13:00:56 +00:00
public ?string $selectedProxy = null;
2024-06-10 20:43:34 +00:00
2023-05-15 11:45:37 +00:00
public $proxy_settings = null;
2024-06-10 20:43:34 +00:00
public bool $redirect_enabled = true;
2024-12-06 13:08:34 +00:00
2023-09-11 20:29:34 +00:00
public ?string $redirect_url = null;
2023-05-03 05:23:45 +00:00
public function getListeners()
{
$teamId = auth()->user()->currentTeam()->id;
return [
'saveConfiguration' => 'submit',
"echo-private:team.{$teamId},ProxyStatusChangedUI" => '$refresh',
];
}
protected $rules = [
'server.settings.generate_exact_labels' => 'required|boolean',
];
2023-06-22 12:18:17 +00:00
public function mount()
{
$this->selectedProxy = $this->server->proxyType();
$this->redirect_enabled = data_get($this->server, 'proxy.redirect_enabled', true);
2023-09-11 20:29:34 +00:00
$this->redirect_url = data_get($this->server, 'proxy.redirect_url');
2023-06-22 12:18:17 +00:00
}
// public function proxyStatusUpdated()
// {
// $this->dispatch('refresh')->self();
// }
public function changeProxy()
2023-06-08 06:39:00 +00:00
{
2023-07-14 11:38:24 +00:00
$this->server->proxy = null;
2023-06-08 06:39:00 +00:00
$this->server->save();
2024-12-06 13:08:34 +00:00
$this->dispatch('reloadWindow');
2023-06-08 06:39:00 +00:00
}
public function selectProxy($proxy_type)
2023-05-15 11:45:37 +00:00
{
try {
$this->server->changeProxy($proxy_type, async: false);
$this->selectedProxy = $this->server->proxy->type;
2024-12-06 13:08:34 +00:00
$this->dispatch('reloadWindow');
} catch (\Throwable $e) {
return handleError($e, $this);
}
2023-05-15 11:45:37 +00:00
}
public function instantSave()
{
try {
$this->validate();
$this->server->settings->save();
$this->dispatch('success', 'Settings saved.');
} catch (\Throwable $e) {
return handleError($e, $this);
}
}
public function instantSaveRedirect()
{
try {
$this->server->proxy->redirect_enabled = $this->redirect_enabled;
$this->server->save();
$this->server->setupDefaultRedirect();
$this->dispatch('success', 'Proxy configuration saved.');
} catch (\Throwable $e) {
return handleError($e, $this);
}
}
2023-07-28 12:44:26 +00:00
public function submit()
2023-05-15 11:45:37 +00:00
{
try {
2023-09-21 09:03:52 +00:00
SaveConfiguration::run($this->server, $this->proxy_settings);
2023-06-22 12:18:17 +00:00
$this->server->proxy->redirect_url = $this->redirect_url;
$this->server->save();
$this->server->setupDefaultRedirect();
2023-12-07 18:06:32 +00:00
$this->dispatch('success', 'Proxy configuration saved.');
2023-09-11 15:36:30 +00:00
} catch (\Throwable $e) {
return handleError($e, $this);
2023-05-15 11:45:37 +00:00
}
}
2023-07-28 12:44:26 +00:00
public function reset_proxy_configuration()
2023-05-03 05:23:45 +00:00
{
2023-05-15 11:45:37 +00:00
try {
2023-09-18 10:18:45 +00:00
$this->proxy_settings = CheckConfiguration::run($this->server, true);
2024-03-12 09:42:56 +00:00
SaveConfiguration::run($this->server, $this->proxy_settings);
$this->server->save();
$this->dispatch('success', 'Proxy configuration saved.');
2023-09-11 15:36:30 +00:00
} catch (\Throwable $e) {
return handleError($e, $this);
2023-05-15 11:45:37 +00:00
}
2023-05-03 05:23:45 +00:00
}
2023-09-11 20:29:34 +00:00
public function loadProxyConfiguration()
2023-05-15 20:17:31 +00:00
{
try {
2023-09-18 10:18:45 +00:00
$this->proxy_settings = CheckConfiguration::run($this->server);
2023-09-11 15:36:30 +00:00
} catch (\Throwable $e) {
return handleError($e, $this);
2023-05-15 20:17:31 +00:00
}
}
}