repository = $repository; } /** * Returns installation information for a server. * * @return \Illuminate\Http\JsonResponse * * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException */ public function index(Request $request, string $uuid) { $server = $this->repository->getByUuid($uuid); $egg = $server->egg; return JsonResponse::create([ 'container_image' => $egg->copy_script_container, 'entrypoint' => $egg->copy_script_entry, 'script' => $egg->copy_script_install, ]); } /** * Updates the installation state of a server. * * @return \Illuminate\Http\JsonResponse * * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException * @throws \Pterodactyl\Exceptions\Model\DataValidationException */ public function store(InstallationDataRequest $request, string $uuid) { $server = $this->repository->getByUuid($uuid); $this->repository->update($server->id, [ 'installed' => (string) $request->input('successful') === '1' ? 1 : 2, ], true, true); return JsonResponse::create([], Response::HTTP_NO_CONTENT); } }