coolify/app/Http/Livewire/Server/New/ByIp.php

86 lines
2.3 KiB
PHP
Raw Normal View History

<?php
namespace App\Http\Livewire\Server\New;
2023-09-06 15:00:56 +02:00
use App\Enums\ProxyStatus;
use App\Enums\ProxyTypes;
use App\Models\Server;
use Livewire\Component;
class ByIp extends Component
{
public $private_keys;
2023-08-14 15:22:29 +02:00
public $limit_reached;
2023-05-12 15:39:07 +02:00
public int|null $private_key_id = null;
public $new_private_key_name;
public $new_private_key_description;
public $new_private_key_value;
2023-05-02 09:20:08 +02:00
public string $name;
2023-05-03 12:38:57 +02:00
public string|null $description = null;
public string $ip;
public string $user = 'root';
public int $port = 22;
2023-05-16 11:02:51 +02:00
public bool $is_part_of_swarm = false;
2023-05-12 15:39:07 +02:00
protected $rules = [
2023-06-16 12:35:40 +02:00
'name' => 'required|string',
'description' => 'nullable|string',
'ip' => 'required|ip',
'user' => 'required|string',
2023-05-12 15:39:07 +02:00
'port' => 'required|integer',
2023-06-16 12:35:40 +02:00
];
protected $validationAttributes = [
'name' => 'name',
'description' => 'description',
'ip' => 'ip',
'user' => 'user',
'port' => 'port',
2023-05-12 15:39:07 +02:00
];
public function mount()
{
2023-05-24 14:26:50 +02:00
$this->name = generate_random_name();
2023-05-16 11:02:51 +02:00
$this->private_key_id = $this->private_keys->first()->id;
}
2023-05-12 15:39:07 +02:00
public function setPrivateKey(string $private_key_id)
{
$this->private_key_id = $private_key_id;
}
2023-05-16 11:02:51 +02:00
public function instantSave()
{
2023-06-15 10:48:13 +02:00
$this->emit('success', 'Application settings updated!');
2023-05-16 11:02:51 +02:00
}
public function submit()
{
2023-06-16 12:35:40 +02:00
$this->validate();
2023-05-12 15:39:07 +02:00
try {
2023-09-12 13:14:01 +02:00
if (is_null($this->private_key_id)) {
2023-05-12 15:39:07 +02:00
return $this->emit('error', 'You must select a private key');
}
$server = Server::create([
'name' => $this->name,
'description' => $this->description,
'ip' => $this->ip,
'user' => $this->user,
'port' => $this->port,
2023-08-22 17:44:49 +02:00
'team_id' => currentTeam()->id,
2023-05-16 11:02:51 +02:00
'private_key_id' => $this->private_key_id,
2023-09-06 15:00:56 +02:00
'proxy' => [
"type" => ProxyTypes::TRAEFIK_V2->value,
"status" => ProxyStatus::EXITED->value,
]
2023-05-12 15:39:07 +02:00
]);
2023-05-16 11:02:51 +02:00
$server->settings->is_part_of_swarm = $this->is_part_of_swarm;
$server->settings->save();
2023-05-12 15:39:07 +02:00
return redirect()->route('server.show', $server->uuid);
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
return handleError($e);
2023-05-03 10:25:44 +02:00
}
}
}