alert = $alert; $this->nestRepository = $nestRepository; $this->locationRepository = $locationRepository; $this->repository = $repository; } /** * Return the mount overview page. * * @return \Illuminate\View\View */ public function index() { return view('admin.mounts.index', [ 'mounts' => $this->repository->getAllWithDetails(), ]); } /** * Return the mount view page. * * @param string $id * @return \Illuminate\View\View * * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException */ public function view($id) { $nests = Nest::query()->with('eggs')->get(); $locations = Location::query()->with('nodes')->get(); return view('admin.mounts.view', [ 'mount' => $this->repository->getWithRelations($id), 'nests' => $nests, 'locations' => $locations, ]); } /** * Handle request to create new mount. * * @param \Pterodactyl\Http\Requests\Admin\MountFormRequest $request * @return \Illuminate\Http\RedirectResponse * * @throws \Throwable */ public function create(MountFormRequest $request) { $model = (new Mount())->fill($request->validated()); $model->forceFill(['uuid' => Uuid::uuid4()->toString()]); $model->saveOrFail(); $mount = $model->fresh(); $this->alert->success('Mount was created successfully.')->flash(); return redirect()->route('admin.mounts.view', $mount->id); } /** * Handle request to update or delete location. * * @param \Pterodactyl\Http\Requests\Admin\MountFormRequest $request * @param \Pterodactyl\Models\Mount $mount * @return \Illuminate\Http\RedirectResponse * * @throws \Throwable */ public function update(MountFormRequest $request, Mount $mount) { if ($request->input('action') === 'delete') { return $this->delete($mount); } $mount->forceFill($request->validated())->save(); $this->alert->success('Mount was updated successfully.')->flash(); return redirect()->route('admin.mounts.view', $mount->id); } /** * Delete a location from the system. * * @param \Pterodactyl\Models\Mount $mount * @return \Illuminate\Http\RedirectResponse * * @throws \Exception */ public function delete(Mount $mount) { $mount->delete(); return redirect()->route('admin.mounts'); } /** * Adds eggs to the mount's many to many relation. * * @param \Illuminate\Http\Request $request * @param \Pterodactyl\Models\Mount $mount * @return \Illuminate\Http\RedirectResponse */ public function addEggs(Request $request, Mount $mount) { $validatedData = $request->validate([ 'eggs' => 'required|exists:eggs,id', ]); $eggs = $validatedData['eggs'] ?? []; if (count($eggs) > 0) { $mount->eggs()->attach($eggs); } $this->alert->success('Mount was updated successfully.')->flash(); return redirect()->route('admin.mounts.view', $mount->id); } /** * Adds nodes to the mount's many to many relation. * * @param \Illuminate\Http\Request $request * @param \Pterodactyl\Models\Mount $mount * @return \Illuminate\Http\RedirectResponse */ public function addNodes(Request $request, Mount $mount) { $data = $request->validate(['nodes' => 'required|exists:nodes,id']); $nodes = $data['nodes'] ?? []; if (count($nodes) > 0) { $mount->nodes()->attach($nodes); } $this->alert->success('Mount was updated successfully.')->flash(); return redirect()->route('admin.mounts.view', $mount->id); } /** * Deletes an egg from the mount's many to many relation. * * @param \Pterodactyl\Models\Mount $mount * @param int $egg_id * @return \Illuminate\Http\Response */ public function deleteEgg(Mount $mount, int $egg_id) { $mount->eggs()->detach($egg_id); return response('', 204); } /** * Deletes an node from the mount's many to many relation. * * @param \Pterodactyl\Models\Mount $mount * @param int $node_id * @return \Illuminate\Http\Response */ public function deleteNode(Mount $mount, int $node_id) { $mount->nodes()->detach($node_id); return response('', 204); } }