coolify/app/Livewire/Destination/New/Docker.php

104 lines
3.3 KiB
PHP
Raw Normal View History

2023-05-02 12:47:52 +02:00
<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Destination\New;
2023-05-02 12:47:52 +02:00
use App\Models\Server;
use App\Models\StandaloneDocker as ModelsStandaloneDocker;
2023-12-15 15:48:01 +01:00
use App\Models\SwarmDocker;
2024-03-22 11:34:15 +01:00
use Illuminate\Support\Collection;
2023-05-02 12:47:52 +02:00
use Livewire\Component;
2023-05-04 10:45:09 +02:00
use Visus\Cuid2\Cuid2;
2023-05-02 12:47:52 +02:00
2023-12-15 15:48:01 +01:00
class Docker extends Component
2023-05-02 12:47:52 +02:00
{
public string $name;
public string $network;
2024-03-22 11:34:15 +01:00
public ?Collection $servers = null;
2023-06-15 14:41:39 +02:00
public Server $server;
2023-12-15 15:48:01 +01:00
public ?int $server_id = null;
public bool $is_swarm = false;
2023-05-02 12:47:52 +02:00
protected $rules = [
'name' => 'required|string',
'network' => 'required|string',
2023-12-15 15:48:01 +01:00
'server_id' => 'required|integer',
'is_swarm' => 'boolean'
2023-05-02 12:47:52 +02:00
];
2023-06-16 12:35:40 +02:00
protected $validationAttributes = [
'name' => 'name',
'network' => 'network',
2023-12-15 15:48:01 +01:00
'server_id' => 'server',
'is_swarm' => 'swarm'
2023-06-16 12:35:40 +02:00
];
2023-05-02 12:47:52 +02:00
public function mount()
{
2024-03-22 11:34:15 +01:00
if (is_null($this->servers)) {
$this->servers = Server::isReachable()->get();
2024-03-22 11:34:15 +01:00
}
2023-06-15 15:38:15 +02:00
if (request()->query('server_id')) {
$this->server_id = request()->query('server_id');
} else {
if ($this->servers->count() > 0) {
$this->server_id = $this->servers->first()->id;
2023-05-12 13:10:09 +02:00
}
2023-05-04 11:14:37 +02:00
}
2023-06-15 15:38:15 +02:00
if (request()->query('network_name')) {
$this->network = request()->query('network_name');
} else {
$this->network = new Cuid2(7);
}
2023-12-15 15:48:01 +01:00
$this->name = str("{$this->servers->first()->name}-{$this->network}")->kebab();
2023-07-28 13:31:47 +02:00
}
public function generate_name()
{
2023-07-28 13:31:47 +02:00
$this->server = Server::find($this->server_id);
2023-12-15 15:48:01 +01:00
$this->name = str("{$this->server->name}-{$this->network}")->kebab();
2023-05-02 12:47:52 +02:00
}
2023-05-02 12:47:52 +02:00
public function submit()
{
$this->validate();
2023-06-13 10:02:58 +02:00
try {
2023-06-15 14:41:39 +02:00
$this->server = Server::find($this->server_id);
2023-12-15 15:48:01 +01:00
if ($this->is_swarm) {
$found = $this->server->swarmDockers()->where('network', $this->network)->first();
if ($found) {
$this->dispatch('error', 'Network already added to this server.');
return;
} else {
$docker = SwarmDocker::create([
'name' => $this->name,
'network' => $this->network,
'server_id' => $this->server_id,
]);
}
2023-06-15 14:41:39 +02:00
} else {
2023-12-15 15:48:01 +01:00
$found = $this->server->standaloneDockers()->where('network', $this->network)->first();
if ($found) {
$this->dispatch('error', 'Network already added to this server.');
return;
} else {
$docker = ModelsStandaloneDocker::create([
'name' => $this->name,
'network' => $this->network,
'server_id' => $this->server_id,
]);
}
2023-06-13 10:02:58 +02:00
}
2023-06-15 14:41:39 +02:00
$this->createNetworkAndAttachToProxy();
2023-12-27 16:45:01 +01:00
return redirect()->route('destination.show', $docker->uuid);
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
return handleError($e, $this);
2023-06-13 10:02:58 +02:00
}
2023-05-02 12:47:52 +02:00
}
private function createNetworkAndAttachToProxy()
{
2023-09-22 08:52:07 +02:00
$connectProxyToDockerNetworks = connectProxyToNetworks($this->server);
instant_remote_process($connectProxyToDockerNetworks, $this->server, false);
}
}