coolify/app/Http/Livewire/Destination/Show.php

28 lines
950 B
PHP
Raw Normal View History

2023-06-15 15:38:15 +02:00
<?php
namespace App\Http\Livewire\Destination;
use App\Models\Server;
use Illuminate\Support\Collection;
use Livewire\Component;
class Show extends Component
{
public Server $server;
public Collection|array $networks = [];
2023-06-15 15:38:15 +02:00
public function scan()
{
$alreadyAddedNetworks = $this->server->standaloneDockers;
$networks = instant_remote_process(['docker network ls --format "{{json .}}"'], $this->server, false);
$this->networks = format_docker_command_output_to_json($networks)->filter(function ($network) {
return $network['Name'] !== 'bridge' && $network['Name'] !== 'host' && $network['Name'] !== 'none';
})->filter(function ($network) use ($alreadyAddedNetworks) {
return !$alreadyAddedNetworks->contains('network', $network['Name']);
});
2023-06-22 09:38:44 +02:00
if ($this->networks->count() === 0) {
$this->emit('success', 'No new networks found.');
}
2023-06-15 15:38:15 +02:00
}
}