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 (Server::where('team_id', currentTeam()->id) ->where('ip', $this->ip) ->exists()) { return $this->dispatch('error', 'This IP/Domain is already in use by another server in your team.'); } if (is_null($this->private_key_id)) { return $this->dispatch('error', 'You must select a private key'); } if (Team::serverLimitReached()) { return $this->dispatch('error', 'You have reached the server limit for your subscription.'); } $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, ]; if ($this->is_swarm_worker) { $payload['swarm_cluster'] = $this->selected_swarm_cluster; } if ($this->is_build_server) { data_forget($payload, 'proxy'); } $server = Server::create($payload); $server->proxy->set('status', 'exited'); $server->proxy->set('type', ProxyTypes::TRAEFIK->value); $server->save(); if ($this->is_build_server) { $this->is_swarm_manager = false; $this->is_swarm_worker = false; } else { $server->settings->is_swarm_manager = $this->is_swarm_manager; $server->settings->is_swarm_worker = $this->is_swarm_worker; } $server->settings->is_build_server = $this->is_build_server; $server->settings->save(); return redirect()->route('server.show', $server->uuid); } catch (\Throwable $e) { return handleError($e, $this); } } }