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

140 lines
3.8 KiB
PHP
Raw Normal View History

2023-06-02 13:15:12 +00:00
<?php
2023-12-07 18:06:32 +00:00
namespace App\Livewire\Server\Proxy;
2023-06-02 13:15:12 +00:00
use App\Actions\Proxy\CheckProxy;
2023-07-14 11:38:24 +00:00
use App\Actions\Proxy\StartProxy;
use App\Events\ProxyStatusChanged;
2023-06-02 13:15:12 +00:00
use App\Models\Server;
use Illuminate\Process\InvokedProcess;
2024-09-23 17:51:31 +00:00
use Illuminate\Support\Facades\Process;
use Livewire\Component;
2023-06-02 13:15:12 +00:00
class Deploy extends Component
{
public Server $server;
2024-06-10 20:43:34 +00:00
public bool $traefikDashboardAvailable = false;
2024-06-10 20:43:34 +00:00
public ?string $currentRoute = null;
2024-06-10 20:43:34 +00:00
2023-10-13 12:35:02 +00:00
public ?string $serverIp = null;
public function getListeners()
{
$teamId = auth()->user()->currentTeam()->id;
2024-06-10 20:43:34 +00:00
return [
"echo-private:team.{$teamId},ProxyStatusChanged" => 'proxyStarted',
'proxyStatusUpdated',
'traefikDashboardAvailable',
'serverRefresh' => 'proxyStatusUpdated',
2024-06-10 20:43:34 +00:00
'checkProxy',
'startProxy',
2024-09-19 10:32:56 +00:00
'proxyChanged' => 'proxyStatusUpdated',
];
}
public function mount()
{
2023-10-13 12:35:02 +00:00
if ($this->server->id === 0) {
$this->serverIp = base_ip();
} else {
$this->serverIp = $this->server->ip;
}
$this->currentRoute = request()->route()->getName();
}
2024-06-10 20:43:34 +00:00
public function traefikDashboardAvailable(bool $data)
{
$this->traefikDashboardAvailable = $data;
}
2024-06-10 20:43:34 +00:00
public function proxyStarted()
2023-09-18 10:18:45 +00:00
{
CheckProxy::run($this->server, true);
$this->dispatch('proxyStatusUpdated');
2023-09-11 20:29:34 +00:00
}
2024-06-10 20:43:34 +00:00
public function proxyStatusUpdated()
2023-10-13 12:35:02 +00:00
{
$this->server->refresh();
2023-10-13 12:35:02 +00:00
}
2024-06-10 20:43:34 +00:00
2024-03-21 11:44:32 +00:00
public function restart()
{
try {
$this->stop(forceStop: false);
$this->dispatch('checkProxy');
} catch (\Throwable $e) {
return handleError($e, $this);
}
}
2024-06-10 20:43:34 +00:00
2023-10-13 12:35:02 +00:00
public function checkProxy()
{
try {
2023-10-17 17:00:23 +00:00
CheckProxy::run($this->server, true);
2023-12-07 18:06:32 +00:00
$this->dispatch('startProxyPolling');
$this->dispatch('proxyChecked');
} catch (\Throwable $e) {
return handleError($e, $this);
}
}
2024-06-10 20:43:34 +00:00
2023-09-11 20:29:34 +00:00
public function startProxy()
2023-06-02 13:15:12 +00:00
{
2023-09-18 10:18:45 +00:00
try {
2024-05-22 19:09:53 +00:00
$this->server->proxy->force_stop = false;
$this->server->save();
$activity = StartProxy::run($this->server, force: true);
$this->dispatch('activityMonitor', $activity->id, ProxyStatusChanged::class);
2023-09-18 10:18:45 +00:00
} catch (\Throwable $e) {
return handleError($e, $this);
2023-09-18 10:18:45 +00:00
}
2023-06-02 13:15:12 +00:00
}
public function stop(bool $forceStop = true)
2023-06-02 13:15:12 +00:00
{
2023-11-29 13:59:06 +00:00
try {
$containerName = $this->server->isSwarm() ? 'coolify-proxy_traefik' : 'coolify-proxy';
$timeout = 30;
$process = $this->stopContainer($containerName, $timeout);
$startTime = time();
while ($process->running()) {
if (time() - $startTime >= $timeout) {
$this->forceStopContainer($containerName);
break;
}
usleep(100000);
2023-11-29 13:59:06 +00:00
}
$this->removeContainer($containerName);
} catch (\Throwable $e) {
return handleError($e, $this);
} finally {
$this->server->proxy->force_stop = $forceStop;
$this->server->proxy->status = 'exited';
$this->server->save();
$this->dispatch('proxyStatusUpdated');
2023-11-29 13:59:06 +00:00
}
2023-06-02 13:15:12 +00:00
}
private function stopContainer(string $containerName, int $timeout): InvokedProcess
{
return Process::timeout($timeout)->start("docker stop --time=$timeout $containerName");
}
private function forceStopContainer(string $containerName)
{
instant_remote_process(["docker kill $containerName"], $this->server, throwError: false);
}
private function removeContainer(string $containerName)
{
instant_remote_process(["docker rm -f $containerName"], $this->server, throwError: false);
}
}