2023-06-02 13:15:12 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Livewire\Server\Proxy;
|
|
|
|
|
2023-09-18 09:49:26 +00:00
|
|
|
use App\Jobs\ContainerStatusJob;
|
2023-06-02 13:15:12 +00:00
|
|
|
use App\Models\Server;
|
|
|
|
use Livewire\Component;
|
|
|
|
|
|
|
|
class Status extends Component
|
|
|
|
{
|
|
|
|
public Server $server;
|
2023-08-08 09:51:36 +00:00
|
|
|
|
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-28 09:33:16 +00:00
|
|
|
dispatch_sync(new ContainerStatusJob($this->server));
|
|
|
|
$this->emit('proxyStatusUpdated');
|
2023-09-11 20:29:34 +00:00
|
|
|
} catch (\Throwable $e) {
|
2023-09-22 12:47:25 +00:00
|
|
|
return handleError($e, $this);
|
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()
|
|
|
|
{
|
2023-10-09 09:00:18 +00:00
|
|
|
if ($this->server->isFunctional()) {
|
|
|
|
$this->emit('success', 'Refreshed proxy status.');
|
|
|
|
$this->getProxyStatus();
|
|
|
|
}
|
2023-06-02 13:15:12 +00:00
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
}
|