lasthourcloud/app/Http/Livewire/Server/Proxy/Status.php

36 lines
921 B
PHP
Raw Normal View History

2023-06-02 13:15:12 +00:00
<?php
namespace App\Http\Livewire\Server\Proxy;
use App\Models\Server;
use Livewire\Component;
class Status extends Component
{
public Server $server;
2023-09-11 20:29:34 +00:00
protected $listeners = ['proxyStatusUpdated'];
2023-09-11 20:43:07 +00:00
public function proxyStatusUpdated()
{
2023-09-11 20:29:34 +00:00
$this->server->refresh();
}
public function getProxyStatus()
2023-06-02 13:15:12 +00:00
{
2023-09-11 20:29:34 +00:00
try {
2023-09-12 11:14:01 +00:00
if ($this->server->isFunctional()) {
2023-09-11 20:29:34 +00:00
$container = getContainerStatus(server: $this->server, container_id: 'coolify-proxy');
$this->server->proxy->status = $container;
$this->server->save();
$this->emit('proxyStatusUpdated');
}
} catch (\Throwable $e) {
return general_error_handler(err: $e);
2023-08-28 18:29:44 +00:00
}
2023-09-11 20:29:34 +00:00
}
2023-09-11 20:43:07 +00:00
public function getProxyStatusWithNoti()
{
$this->emit('success', 'Refreshed proxy status.');
2023-09-11 20:29:34 +00:00
$this->getProxyStatus();
2023-06-02 13:15:12 +00:00
}
}