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

69 lines
1.8 KiB
PHP
Raw Normal View History

2023-06-02 15:15:12 +02:00
<?php
namespace App\Http\Livewire\Server\Proxy;
use App\Actions\Proxy\CheckProxy;
2023-07-14 13:38:24 +02:00
use App\Actions\Proxy\StartProxy;
2023-06-02 15:15:12 +02:00
use App\Models\Server;
use Livewire\Component;
class Deploy extends Component
{
public Server $server;
public bool $traefikDashboardAvailable = false;
public ?string $currentRoute = null;
2023-10-13 14:35:02 +02:00
public ?string $serverIp = null;
protected $listeners = ['proxyStatusUpdated', 'traefikDashboardAvailable', 'serverRefresh' => 'proxyStatusUpdated', "checkProxy", "startProxy"];
public function mount()
{
2023-10-13 14:35:02 +02:00
if ($this->server->id === 0) {
$this->serverIp = base_ip();
} else {
$this->serverIp = $this->server->ip;
}
$this->currentRoute = request()->route()->getName();
}
public function traefikDashboardAvailable(bool $data)
{
$this->traefikDashboardAvailable = $data;
}
2023-09-18 12:18:45 +02:00
public function proxyStatusUpdated()
{
2023-09-11 22:29:34 +02:00
$this->server->refresh();
}
2023-10-13 14:35:02 +02:00
public function ip()
{
}
public function checkProxy()
{
try {
2023-10-17 19:00:23 +02:00
CheckProxy::run($this->server, true);
$this->emit('startProxyPolling');
$this->emit('proxyChecked');
} catch (\Throwable $e) {
return handleError($e, $this);
}
}
2023-09-11 22:29:34 +02:00
public function startProxy()
2023-06-02 15:15:12 +02:00
{
2023-09-18 12:18:45 +02:00
try {
2023-09-18 12:29:50 +02:00
$activity = StartProxy::run($this->server);
2023-09-18 12:18:45 +02:00
$this->emit('newMonitorActivity', $activity->id);
} catch (\Throwable $e) {
return handleError($e, $this);
2023-09-18 12:18:45 +02:00
}
2023-06-02 15:15:12 +02:00
}
2023-06-02 15:15:12 +02:00
public function stop()
{
instant_remote_process([
"docker rm -f coolify-proxy",
], $this->server);
2023-06-20 20:19:31 +02:00
$this->server->proxy->status = 'exited';
2023-06-02 15:15:12 +02:00
$this->server->save();
$this->emit('proxyStatusUpdated');
}
}