131 lines
4.4 KiB
PHP
131 lines
4.4 KiB
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Controllers\Api\Application\Nodes;
|
|
|
|
use Pterodactyl\Models\Node;
|
|
use Illuminate\Http\Response;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Spatie\QueryBuilder\QueryBuilder;
|
|
use Pterodactyl\Services\Nodes\NodeUpdateService;
|
|
use Pterodactyl\Services\Nodes\NodeCreationService;
|
|
use Pterodactyl\Services\Nodes\NodeDeletionService;
|
|
use Pterodactyl\Contracts\Repository\NodeRepositoryInterface;
|
|
use Pterodactyl\Transformers\Api\Application\NodeTransformer;
|
|
use Pterodactyl\Exceptions\Http\QueryValueOutOfRangeHttpException;
|
|
use Pterodactyl\Http\Requests\Api\Application\Nodes\GetNodeRequest;
|
|
use Pterodactyl\Http\Requests\Api\Application\Nodes\GetNodesRequest;
|
|
use Pterodactyl\Http\Requests\Api\Application\Nodes\StoreNodeRequest;
|
|
use Pterodactyl\Http\Requests\Api\Application\Nodes\DeleteNodeRequest;
|
|
use Pterodactyl\Http\Requests\Api\Application\Nodes\UpdateNodeRequest;
|
|
use Pterodactyl\Http\Controllers\Api\Application\ApplicationApiController;
|
|
|
|
class NodeController extends ApplicationApiController
|
|
{
|
|
private NodeRepositoryInterface $repository;
|
|
private NodeCreationService $creationService;
|
|
private NodeDeletionService $deletionService;
|
|
private NodeUpdateService $updateService;
|
|
|
|
/**
|
|
* NodeController constructor.
|
|
*/
|
|
public function __construct(
|
|
NodeRepositoryInterface $repository,
|
|
NodeCreationService $creationService,
|
|
NodeDeletionService $deletionService,
|
|
NodeUpdateService $updateService
|
|
) {
|
|
parent::__construct();
|
|
|
|
$this->repository = $repository;
|
|
$this->creationService = $creationService;
|
|
$this->deletionService = $deletionService;
|
|
$this->updateService = $updateService;
|
|
}
|
|
|
|
/**
|
|
* Return all of the nodes currently available on the Panel.
|
|
*
|
|
* @throws \Illuminate\Contracts\Container\BindingResolutionException
|
|
*/
|
|
public function index(GetNodesRequest $request): array
|
|
{
|
|
$perPage = $request->query('per_page', 10);
|
|
if ($perPage < 1 || $perPage > 100) {
|
|
throw new QueryValueOutOfRangeHttpException('per_page', 1, 100);
|
|
}
|
|
|
|
$nodes = QueryBuilder::for(Node::query())
|
|
->allowedFilters(['id', 'uuid', 'name', 'fqdn', 'daemon_token_id'])
|
|
->allowedSorts(['id', 'uuid', 'name', 'location_id', 'fqdn', 'memory', 'disk'])
|
|
->paginate($perPage);
|
|
|
|
return $this->fractal->collection($nodes)
|
|
->transformWith($this->getTransformer(NodeTransformer::class))
|
|
->toArray();
|
|
}
|
|
|
|
/**
|
|
* Return data for a single instance of a node.
|
|
*
|
|
* @throws \Illuminate\Contracts\Container\BindingResolutionException
|
|
*/
|
|
public function view(GetNodeRequest $request, Node $node): array
|
|
{
|
|
return $this->fractal->item($node)
|
|
->transformWith($this->getTransformer(NodeTransformer::class))
|
|
->toArray();
|
|
}
|
|
|
|
/**
|
|
* Create a new node on the Panel. Returns the created node and a HTTP/201
|
|
* status response on success.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
* @throws \Illuminate\Contracts\Container\BindingResolutionException
|
|
*/
|
|
public function store(StoreNodeRequest $request): JsonResponse
|
|
{
|
|
$node = $this->creationService->handle($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 an existing node on the Panel.
|
|
*
|
|
* @throws \Throwable
|
|
*/
|
|
public function update(UpdateNodeRequest $request, Node $node): array
|
|
{
|
|
$node = $this->updateService->handle(
|
|
$node,
|
|
$request->validated(),
|
|
false,
|
|
);
|
|
|
|
return $this->fractal->item($node)
|
|
->transformWith($this->getTransformer(NodeTransformer::class))
|
|
->toArray();
|
|
}
|
|
|
|
/**
|
|
* Deletes a given node from the Panel as long as there are no servers
|
|
* currently attached to it.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Service\HasActiveServersException
|
|
*/
|
|
public function delete(DeleteNodeRequest $request, Node $node): Response
|
|
{
|
|
$this->deletionService->handle($node);
|
|
|
|
return $this->returnNoContent();
|
|
}
|
|
}
|