coolify/app/Livewire/Server/Resources.php

85 lines
2.1 KiB
PHP
Raw Normal View History

<?php
namespace App\Livewire\Server;
use App\Models\Server;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Illuminate\Support\Collection;
use Livewire\Component;
class Resources extends Component
{
use AuthorizesRequests;
2024-06-10 22:43:34 +02:00
public ?Server $server = null;
2024-06-10 22:43:34 +02:00
public $parameters = [];
2024-06-10 22:43:34 +02:00
public Collection $unmanagedContainers;
2024-06-10 22:43:34 +02:00
2024-02-16 22:15:18 +01:00
public function getListeners()
{
$teamId = auth()->user()->currentTeam()->id;
2024-06-10 22:43:34 +02:00
2024-02-16 22:15:18 +01:00
return [
"echo-private:team.{$teamId},ApplicationStatusChanged" => 'refreshStatus',
];
}
2024-06-10 22:43:34 +02:00
public function startUnmanaged($id)
{
$this->server->startUnmanaged($id);
$this->dispatch('success', 'Container started.');
$this->loadUnmanagedContainers();
}
2024-06-10 22:43:34 +02:00
public function restartUnmanaged($id)
{
$this->server->restartUnmanaged($id);
$this->dispatch('success', 'Container restarted.');
$this->loadUnmanagedContainers();
}
2024-06-10 22:43:34 +02:00
public function stopUnmanaged($id)
{
$this->server->stopUnmanaged($id);
$this->dispatch('success', 'Container stopped.');
$this->loadUnmanagedContainers();
}
2024-06-10 22:43:34 +02:00
public function refreshStatus()
{
2024-02-16 22:15:18 +01:00
$this->server->refresh();
$this->loadUnmanagedContainers();
2024-02-16 22:15:18 +01:00
$this->dispatch('success', 'Resource statuses refreshed.');
}
2024-06-10 22:43:34 +02:00
public function loadUnmanagedContainers()
{
try {
$this->unmanagedContainers = $this->server->loadUnmanagedContainers();
} catch (\Throwable $e) {
return handleError($e, $this);
}
}
2024-06-10 22:43:34 +02:00
public function mount()
{
$this->unmanagedContainers = collect();
$this->parameters = get_route_parameters();
try {
$this->server = Server::ownedByCurrentTeam()->whereUuid(request()->server_uuid)->first();
if (is_null($this->server)) {
return redirect()->route('server.index');
}
} catch (\Throwable $e) {
return handleError($e, $this);
}
}
2024-06-10 22:43:34 +02:00
public function render()
{
return view('livewire.server.resources');
}
}