*/ public function index(GetNodesRequest $request): array { $nodes = QueryBuilder::for(Node::query()) ->allowedFilters(['uuid', 'name', 'fqdn', 'daemon_token_id']) ->allowedSorts(['id', 'uuid', 'memory', 'disk', 'cpu']) ->paginate($request->query('per_page') ?? 50); return $this->fractal->collection($nodes) ->transformWith($this->getTransformer(NodeTransformer::class)) ->toArray(); } /** * View node * * Return data for a single instance of a node. * * @return array */ public function view(GetNodeRequest $request, Node $node): array { return $this->fractal->item($node) ->transformWith($this->getTransformer(NodeTransformer::class)) ->toArray(); } /** * Create node * * Create a new node on the Panel. Returns the created node and an HTTP/201 * status response on success. * * @throws \App\Exceptions\Model\DataValidationException */ public function store(StoreNodeRequest $request): JsonResponse { $node = Node::create($request->validated()); return $this->fractal->item($node) ->transformWith($this->getTransformer(NodeTransformer::class)) ->addMeta([ 'resource' => route('api.application.nodes.view', [ 'node' => $node->id, ]), ]) ->respond(201); } /** * Update node * * Update an existing node on the Panel. * * @return array * * @throws \Throwable */ public function update(UpdateNodeRequest $request, Node $node): array { try { $node = $this->updateService->handle( $node, $request->validated(), $request->input('reset_secret') === true ); } catch (Exception $exception) { report($exception); } return $this->fractal->item($node) ->transformWith($this->getTransformer(NodeTransformer::class)) ->toArray(); } /** * Delete node * * Deletes a given node from the Panel as long as there are no servers * currently attached to it. * * @throws \App\Exceptions\Service\HasActiveServersException */ public function delete(DeleteNodeRequest $request, Node $node): JsonResponse { $this->deletionService->handle($node); return new JsonResponse([], JsonResponse::HTTP_NO_CONTENT); } }