'required|string', 'description' => 'nullable|string', 'ip' => 'required', 'user' => 'required|string', 'port' => 'required|integer', 'is_swarm_manager' => 'required|boolean', 'is_swarm_worker' => 'required|boolean', ]; protected $validationAttributes = [ 'name' => 'Name', 'description' => 'Description', 'ip' => 'IP Address/Domain', 'user' => 'User', 'port' => 'Port', 'is_swarm_manager' => 'Swarm Manager', 'is_swarm_worker' => 'Swarm Worker', ]; public function mount() { $this->name = generate_random_name(); $this->private_key_id = $this->private_keys->first()->id; $this->swarm_managers = Server::isUsable()->get()->where('settings.is_swarm_manager', true); if ($this->swarm_managers->count() > 0) { $this->selected_swarm_cluster = $this->swarm_managers->first()->id; } } public function setPrivateKey(string $private_key_id) { $this->private_key_id = $private_key_id; } public function instantSave() { // $this->dispatch('success', 'Application settings updated!'); } public function submit() { $this->validate(); try { if (is_null($this->private_key_id)) { return $this->dispatch('error', 'You must select a private key'); } $payload = [ 'name' => $this->name, 'description' => $this->description, 'ip' => $this->ip, 'user' => $this->user, 'port' => $this->port, 'team_id' => currentTeam()->id, 'private_key_id' => $this->private_key_id, 'proxy' => [ "type" => ProxyTypes::TRAEFIK_V2->value, "status" => ProxyStatus::EXITED->value, ], ]; if ($this->is_swarm_worker) { $payload['swarm_cluster'] = $this->selected_swarm_cluster; } $server = Server::create($payload); $server->settings->is_swarm_manager = $this->is_swarm_manager; $server->settings->is_swarm_worker = $this->is_swarm_worker; $server->settings->save(); $server->addInitialNetwork(); return $this->redirectRoute('server.show', $server->uuid); } catch (\Throwable $e) { return handleError($e, $this); } } }