88 lines
2.4 KiB
PHP
88 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire\Terminal;
|
|
|
|
use App\Models\Server;
|
|
use Livewire\Attributes\On;
|
|
use Livewire\Component;
|
|
|
|
class Index extends Component
|
|
{
|
|
public $selected_uuid = 'default';
|
|
|
|
public $servers = [];
|
|
|
|
public $containers = [];
|
|
|
|
public bool $isLoadingContainers = true;
|
|
|
|
public function mount()
|
|
{
|
|
$this->servers = Server::isReachable()->get()->filter(function ($server) {
|
|
return $server->isTerminalEnabled();
|
|
});
|
|
}
|
|
|
|
public function loadContainers()
|
|
{
|
|
try {
|
|
$this->containers = $this->getAllActiveContainers();
|
|
} catch (\Exception $e) {
|
|
return handleError($e, $this);
|
|
} finally {
|
|
$this->isLoadingContainers = false;
|
|
}
|
|
}
|
|
|
|
private function getAllActiveContainers()
|
|
{
|
|
return collect($this->servers)->flatMap(function ($server) {
|
|
if (! $server->isFunctional()) {
|
|
return [];
|
|
}
|
|
|
|
return $server->loadAllContainers()->map(function ($container) use ($server) {
|
|
$state = data_get_str($container, 'State')->lower();
|
|
if ($state->contains('running')) {
|
|
return [
|
|
'name' => data_get($container, 'Names'),
|
|
'connection_name' => data_get($container, 'Names'),
|
|
'uuid' => data_get($container, 'Names'),
|
|
'status' => data_get_str($container, 'State')->lower(),
|
|
'server' => $server,
|
|
'server_uuid' => $server->uuid,
|
|
];
|
|
}
|
|
|
|
return null;
|
|
})->filter();
|
|
})->sortBy('name');
|
|
}
|
|
|
|
public function updatedSelectedUuid()
|
|
{
|
|
$this->connectToContainer();
|
|
}
|
|
|
|
#[On('connectToContainer')]
|
|
public function connectToContainer()
|
|
{
|
|
if ($this->selected_uuid === 'default') {
|
|
$this->dispatch('error', 'Please select a server or a container.');
|
|
|
|
return;
|
|
}
|
|
$container = collect($this->containers)->firstWhere('uuid', $this->selected_uuid);
|
|
$this->dispatch('send-terminal-command',
|
|
isset($container),
|
|
$container['connection_name'] ?? $this->selected_uuid,
|
|
$container['server_uuid'] ?? $this->selected_uuid
|
|
);
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.terminal.index');
|
|
}
|
|
}
|