2018-01-20 01:58:57 +00:00
|
|
|
<?php
|
|
|
|
|
2018-01-20 03:47:06 +00:00
|
|
|
namespace Pterodactyl\Http\Controllers\Api\Application\Servers;
|
2018-01-20 01:58:57 +00:00
|
|
|
|
2018-01-20 19:48:02 +00:00
|
|
|
use Illuminate\Http\Response;
|
2018-01-20 03:47:06 +00:00
|
|
|
use Pterodactyl\Models\Server;
|
2018-01-28 23:14:14 +00:00
|
|
|
use Illuminate\Http\JsonResponse;
|
2020-09-13 19:21:44 +00:00
|
|
|
use Spatie\QueryBuilder\QueryBuilder;
|
2018-01-28 23:14:14 +00:00
|
|
|
use Pterodactyl\Services\Servers\ServerCreationService;
|
2018-01-20 19:48:02 +00:00
|
|
|
use Pterodactyl\Services\Servers\ServerDeletionService;
|
2018-01-20 03:47:06 +00:00
|
|
|
use Pterodactyl\Transformers\Api\Application\ServerTransformer;
|
2018-02-24 18:15:21 +00:00
|
|
|
use Pterodactyl\Http\Requests\Api\Application\Servers\GetServerRequest;
|
2018-01-20 03:47:06 +00:00
|
|
|
use Pterodactyl\Http\Requests\Api\Application\Servers\GetServersRequest;
|
2018-01-20 19:48:02 +00:00
|
|
|
use Pterodactyl\Http\Requests\Api\Application\Servers\ServerWriteRequest;
|
2018-01-28 23:14:14 +00:00
|
|
|
use Pterodactyl\Http\Requests\Api\Application\Servers\StoreServerRequest;
|
2018-01-20 03:47:06 +00:00
|
|
|
use Pterodactyl\Http\Controllers\Api\Application\ApplicationApiController;
|
2018-01-20 01:58:57 +00:00
|
|
|
|
2018-01-20 03:47:06 +00:00
|
|
|
class ServerController extends ApplicationApiController
|
2018-01-20 01:58:57 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* ServerController constructor.
|
|
|
|
*/
|
2018-01-28 23:14:14 +00:00
|
|
|
public function __construct(
|
2022-10-14 16:59:20 +00:00
|
|
|
private ServerCreationService $creationService,
|
|
|
|
private ServerDeletionService $deletionService
|
2018-01-28 23:14:14 +00:00
|
|
|
) {
|
2018-01-20 19:48:02 +00:00
|
|
|
parent::__construct();
|
2018-01-20 01:58:57 +00:00
|
|
|
}
|
|
|
|
|
2018-01-20 03:47:06 +00:00
|
|
|
/**
|
2022-10-14 16:59:20 +00:00
|
|
|
* Return all the servers that currently exist on the Panel.
|
2018-01-20 03:47:06 +00:00
|
|
|
*/
|
|
|
|
public function index(GetServersRequest $request): array
|
2018-01-20 01:58:57 +00:00
|
|
|
{
|
2020-09-13 19:21:44 +00:00
|
|
|
$servers = QueryBuilder::for(Server::query())
|
2022-06-26 17:26:12 +00:00
|
|
|
->allowedFilters(['uuid', 'uuidShort', 'name', 'description', 'image', 'external_id'])
|
2020-09-13 19:21:44 +00:00
|
|
|
->allowedSorts(['id', 'uuid'])
|
2021-03-26 16:03:51 +00:00
|
|
|
->paginate($request->query('per_page') ?? 50);
|
2018-01-20 01:58:57 +00:00
|
|
|
|
|
|
|
return $this->fractal->collection($servers)
|
2018-01-20 03:47:06 +00:00
|
|
|
->transformWith($this->getTransformer(ServerTransformer::class))
|
|
|
|
->toArray();
|
|
|
|
}
|
|
|
|
|
2018-01-28 23:14:14 +00:00
|
|
|
/**
|
|
|
|
* Create a new server on the system.
|
|
|
|
*
|
2019-11-16 21:33:01 +00:00
|
|
|
* @throws \Throwable
|
2018-01-28 23:14:14 +00:00
|
|
|
* @throws \Illuminate\Validation\ValidationException
|
|
|
|
* @throws \Pterodactyl\Exceptions\DisplayException
|
|
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
|
|
* @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(201);
|
|
|
|
}
|
|
|
|
|
2018-01-20 03:47:06 +00:00
|
|
|
/**
|
|
|
|
* Show a single server transformed for the application API.
|
|
|
|
*/
|
2022-05-22 18:10:01 +00:00
|
|
|
public function view(GetServerRequest $request, Server $server): array
|
2018-01-20 03:47:06 +00:00
|
|
|
{
|
2022-05-22 18:10:01 +00:00
|
|
|
return $this->fractal->item($server)
|
2018-01-20 03:47:06 +00:00
|
|
|
->transformWith($this->getTransformer(ServerTransformer::class))
|
2018-01-20 01:58:57 +00:00
|
|
|
->toArray();
|
|
|
|
}
|
2018-01-20 19:48:02 +00:00
|
|
|
|
|
|
|
/**
|
2022-10-14 16:59:20 +00:00
|
|
|
* Deletes a server.
|
|
|
|
*
|
2018-01-20 19:48:02 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\DisplayException
|
|
|
|
*/
|
|
|
|
public function delete(ServerWriteRequest $request, Server $server, string $force = ''): Response
|
|
|
|
{
|
|
|
|
$this->deletionService->withForce($force === 'force')->handle($server);
|
|
|
|
|
|
|
|
return $this->returnNoContent();
|
|
|
|
}
|
2018-01-20 01:58:57 +00:00
|
|
|
}
|