coolify/app/Http/Livewire/Destination/New/StandaloneDocker.php

72 lines
2.3 KiB
PHP
Raw Normal View History

2023-05-02 12:47:52 +02:00
<?php
namespace App\Http\Livewire\Destination\New;
use App\Models\Server;
use App\Models\StandaloneDocker as ModelsStandaloneDocker;
2023-05-04 11:14:37 +02:00
use Illuminate\Database\Eloquent\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
class StandaloneDocker extends Component
{
public string $name;
public string $network;
2023-05-04 11:14:37 +02:00
public Collection $servers;
2023-06-15 14:41:39 +02:00
public Server $server;
2023-05-12 13:10:09 +02:00
public int|null $server_id = null;
2023-05-02 12:47:52 +02:00
protected $rules = [
'name' => 'required|string',
'network' => 'required|string',
'server_id' => 'required|integer'
];
public function mount()
{
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-05-24 14:26:50 +02:00
$this->name = generate_random_name();
2023-05-02 12:47:52 +02:00
}
2023-06-15 14:41:39 +02:00
private function createNetworkAndAttachToProxy()
{
instant_remote_process(['docker network create --attachable ' . $this->network], $this->server, throwError: false);
instant_remote_process(["docker network connect $this->network coolify-proxy"], $this->server, throwError: false);
}
2023-05-02 12:47:52 +02:00
public function submit()
{
2023-06-13 10:02:58 +02:00
2023-05-02 12:47:52 +02:00
$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);
$found = $this->server->standaloneDockers()->where('network', $this->network)->first();
2023-06-13 10:02:58 +02:00
if ($found) {
2023-06-15 14:41:39 +02:00
$this->createNetworkAndAttachToProxy();
2023-06-13 10:02:58 +02:00
$this->addError('network', 'Network already added to this server.');
return;
2023-06-15 14:41:39 +02:00
} else {
$docker = ModelsStandaloneDocker::create([
'name' => $this->name,
'network' => $this->network,
'server_id' => $this->server_id,
'team_id' => session('currentTeam')->id
]);
2023-06-13 10:02:58 +02:00
}
2023-06-15 14:41:39 +02:00
$this->createNetworkAndAttachToProxy();
2023-06-13 10:02:58 +02:00
return redirect()->route('destination.show', $docker->uuid);
} catch (\Exception $e) {
return general_error_handler(err: $e);
}
2023-05-02 12:47:52 +02:00
}
}