alert = $alert; $this->allocationRepository = $allocationRepository; $this->repository = $repository; $this->locationRepository = $locationRepository; $this->nodeRepository = $nodeRepository; $this->suspensionService = $suspensionService; $this->transferService = $transferService; } /** * Starts a transfer of a server to a new node. * * @param \Illuminate\Http\Request $request * @param \Pterodactyl\Models\Server $server * @return \Illuminate\Http\RedirectResponse * * @throws \Throwable */ public function transfer(Request $request, Server $server) { $validatedData = $request->validate([ 'node_id' => 'required|exists:nodes,id', 'allocation_id' => 'required|bail|unique:servers|exists:allocations,id', 'allocation_additional' => 'nullable', ]); $node_id = $validatedData['node_id']; $allocation_id = intval($validatedData['allocation_id']); $additional_allocations = array_map('intval', $validatedData['allocation_additional'] ?? []); // Check if the node is viable for the transfer. $node = $this->nodeRepository->getNodeWithResourceUsage($node_id); if ($node->isViable($server->memory, $server->disk)) { //$this->assignAllocationsToServer($server, $node_id, $allocation_id, $additional_allocations); /*$transfer = new ServerTransfer; $transfer->server_id = $server->id; $transfer->old_node = $server->node_id; $transfer->new_node = $node_id; $transfer->old_allocation = $server->allocation_id; $transfer->new_allocation = $allocation_id; $transfer->old_additional_allocations = json_encode($server->allocations->where('id', '!=', $server->allocation_id)->pluck('id')); $transfer->new_additional_allocations = json_encode($additional_allocations); $transfer->save();*/ // Suspend the server and request an archive to be created. // $this->suspensionService->toggle($server, 'suspend'); $this->transferService->requestArchive($server); $this->alert->success(trans('admin/server.alerts.transfer_started'))->flash(); } else { $this->alert->danger(trans('admin/server.alerts.transfer_not_viable'))->flash(); } return redirect()->route('admin.servers.view.manage', $server->id); } private function assignAllocationsToServer(Server $server, int $node_id, int $allocation_id, array $additional_allocations) { $allocations = $additional_allocations; array_push($allocations, $allocation_id); $unassigned = $this->allocationRepository->getUnassignedAllocationIds($node_id); $updateIds = []; foreach ($allocations as $allocation) { if (! in_array($allocation, $unassigned)) { continue; } $updateIds[] = $allocation; } if (! empty($updateIds)) { $this->allocationRepository->updateWhereIn('id', $updateIds, ['server_id' => $server->id]); } } }