creationService = $creationService; $this->deletionService = $deletionService; } /** * Return all of the servers that currently exist on the Panel. * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function index(GetServersRequest $request): array { $perPage = $request->query('per_page', 10); if ($perPage < 1 || $perPage > 100) { throw new QueryValueOutOfRangeHttpException('per_page', 1, 100); } $servers = QueryBuilder::for(Server::query()) ->allowedFilters(['id', 'uuid', 'uuidShort', 'name', 'owner_id', 'node_id', 'external_id']) ->allowedSorts(['id', 'uuid', 'uuidShort', 'name', 'owner_id', 'node_id', 'status']) ->paginate($perPage); return $this->fractal->collection($servers) ->transformWith($this->getTransformer(ServerTransformer::class)) ->toArray(); } /** * Create a new server on the system. * * @throws \Throwable * @throws \Illuminate\Validation\ValidationException * @throws \Pterodactyl\Exceptions\DisplayException * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException * @throws \Pterodactyl\Exceptions\Service\Deployment\NoViableAllocationException * @throws \Pterodactyl\Exceptions\Service\Deployment\NoViableNodeException */ public function store(StoreServerRequest $request): JsonResponse { $server = $this->creationService->handle($request->validated(), $request->getDeploymentObject()); return $this->fractal->item($server) ->transformWith($this->getTransformer(ServerTransformer::class)) ->respond(Response::HTTP_CREATED); } /** * Show a single server transformed for the application API. * * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function view(GetServerRequest $request, Server $server): array { return $this->fractal->item($server) ->transformWith($this->getTransformer(ServerTransformer::class)) ->toArray(); } /** * Deletes a server. * * @throws \Pterodactyl\Exceptions\DisplayException * @throws \Throwable */ public function delete(ServerWriteRequest $request, Server $server, string $force = ''): Response { $this->deletionService->withForce($force === 'force')->handle($server); return $this->returnNoContent(); } }