'Please select a server.', 'newProjectName' => 'Please enter a name for the new project.', ]; public function mount($project_uuid) { $this->project_uuid = $project_uuid; $this->project = Project::where('uuid', $project_uuid)->firstOrFail(); $this->environment = $this->project->environments->where('name', $this->environment_name)->first(); $this->project_id = $this->project->id; $this->servers = currentTeam()->servers; $this->newProjectName = $this->project->name . ' (clone)'; } public function render() { return view('livewire.project.clone-project'); } public function selectServer($server_id) { $this->selectedServer = $server_id; $this->server = $this->servers->where('id', $server_id)->first(); } public function clone() { try { $this->validate([ 'selectedServer' => 'required', 'newProjectName' => 'required', ]); $foundProject = Project::where('name', $this->newProjectName)->first(); if ($foundProject) { throw new \Exception('Project with the same name already exists.'); } $newProject = Project::create([ 'name' => $this->newProjectName, 'team_id' => currentTeam()->id, 'description' => $this->project->description . ' (clone)', ]); if ($this->environment->name !== 'production') { $newProject->environments()->create([ 'name' => $this->environment->name, ]); } $newEnvironment = $newProject->environments->where('name', $this->environment->name)->first(); // Clone Applications $applications = $this->environment->applications; $databases = $this->environment->databases(); $services = $this->environment->services; foreach ($applications as $application) { $uuid = (string)new Cuid2(7); $newApplication = $application->replicate()->fill([ 'uuid' => $uuid, 'fqdn' => generateFqdn($this->server, $uuid), 'status' => 'exited', 'environment_id' => $newEnvironment->id, 'destination_id' => $this->selectedServer, ]); $newApplication->save(); $environmentVaribles = $application->environment_variables()->get(); foreach ($environmentVaribles as $environmentVarible) { $newEnvironmentVariable = $environmentVarible->replicate()->fill([ 'application_id' => $newApplication->id, ]); $newEnvironmentVariable->save(); } $persistentVolumes = $application->persistentStorages()->get(); foreach ($persistentVolumes as $volume) { $newPersistentVolume = $volume->replicate()->fill([ 'name' => $newApplication->uuid . '-' . str($volume->name)->afterLast('-'), 'resource_id' => $newApplication->id, ]); $newPersistentVolume->save(); } } foreach ($databases as $database) { $uuid = (string)new Cuid2(7); $newDatabase = $database->replicate()->fill([ 'uuid' => $uuid, 'environment_id' => $newEnvironment->id, 'destination_id' => $this->selectedServer, ]); $newDatabase->save(); $environmentVaribles = $database->environment_variables()->get(); foreach ($environmentVaribles as $environmentVarible) { $payload = []; if ($database->type() === 'standalone-postgres') { $payload['standalone_postgresql_id'] = $newDatabase->id; } else if ($database->type() === 'standalone_redis') { $payload['standalone_redis_id'] = $newDatabase->id; } else if ($database->type() === 'standalone_mongodb') { $payload['standalone_mongodb_id'] = $newDatabase->id; } else if ($database->type() === 'standalone_mysql') { $payload['standalone_mysql_id'] = $newDatabase->id; }else if ($database->type() === 'standalone_mariadb') { $payload['standalone_mariadb_id'] = $newDatabase->id; } $newEnvironmentVariable = $environmentVarible->replicate()->fill($payload); $newEnvironmentVariable->save(); } } foreach ($services as $service) { $uuid = (string)new Cuid2(7); $newService = $service->replicate()->fill([ 'uuid' => $uuid, 'environment_id' => $newEnvironment->id, 'destination_id' => $this->selectedServer, ]); $newService->save(); $newService->parse(); } return redirect()->route('project.resources', [ 'project_uuid' => $newProject->uuid, 'environment_name' => $newEnvironment->name, ]); } catch (\Exception $e) { return handleError($e, $this); } } }