misc_pterodactyl-panel/app/Http/Controllers/Api/Application/Locations/LocationController.php

105 lines
3.6 KiB
PHP
Raw Normal View History

2018-01-04 03:14:53 +00:00
<?php
2018-01-20 01:58:57 +00:00
namespace Pterodactyl\Http\Controllers\Api\Application\Locations;
2018-01-04 03:14:53 +00:00
use Illuminate\Http\Response;
use Pterodactyl\Models\Location;
use Illuminate\Http\JsonResponse;
2020-09-13 18:59:52 +00:00
use Spatie\QueryBuilder\QueryBuilder;
2018-01-04 03:14:53 +00:00
use Pterodactyl\Services\Locations\LocationUpdateService;
use Pterodactyl\Services\Locations\LocationCreationService;
use Pterodactyl\Services\Locations\LocationDeletionService;
use Pterodactyl\Transformers\Api\Application\LocationTransformer;
use Pterodactyl\Http\Controllers\Api\Application\ApplicationApiController;
2018-09-03 22:59:30 +00:00
use Pterodactyl\Http\Requests\Api\Application\Locations\GetLocationRequest;
2018-01-20 01:58:57 +00:00
use Pterodactyl\Http\Requests\Api\Application\Locations\GetLocationsRequest;
2018-11-20 05:04:05 +00:00
use Pterodactyl\Http\Requests\Api\Application\Locations\StoreLocationRequest;
use Pterodactyl\Http\Requests\Api\Application\Locations\DeleteLocationRequest;
2018-01-20 01:58:57 +00:00
use Pterodactyl\Http\Requests\Api\Application\Locations\UpdateLocationRequest;
2018-01-04 03:14:53 +00:00
class LocationController extends ApplicationApiController
2018-01-04 03:14:53 +00:00
{
/**
* LocationController constructor.
*/
public function __construct(
private LocationCreationService $creationService,
private LocationDeletionService $deletionService,
private LocationUpdateService $updateService
2018-01-04 03:14:53 +00:00
) {
parent::__construct();
2018-01-04 03:14:53 +00:00
}
/**
* Return all the locations currently registered on the Panel.
2018-01-04 03:14:53 +00:00
*/
public function index(GetLocationsRequest $request): array
2018-01-04 03:14:53 +00:00
{
2020-09-13 18:59:52 +00:00
$locations = QueryBuilder::for(Location::query())
->allowedFilters(['short', 'long'])
->allowedSorts(['id'])
->paginate($request->query('per_page') ?? 50);
2018-01-04 03:14:53 +00:00
return $this->fractal->collection($locations)
->transformWith($this->getTransformer(LocationTransformer::class))
2018-01-04 03:14:53 +00:00
->toArray();
}
/**
* Return a single location.
*/
public function view(GetLocationRequest $request, Location $location): array
2018-01-04 03:14:53 +00:00
{
return $this->fractal->item($location)
->transformWith($this->getTransformer(LocationTransformer::class))
2018-01-04 03:14:53 +00:00
->toArray();
}
/**
* Store a new location on the Panel and return an HTTP/201 response code with the
* new location attached.
*
2018-01-04 03:14:53 +00:00
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
*/
public function store(StoreLocationRequest $request): JsonResponse
2018-01-04 03:14:53 +00:00
{
$location = $this->creationService->handle($request->validated());
2018-01-04 03:14:53 +00:00
return $this->fractal->item($location)
->transformWith($this->getTransformer(LocationTransformer::class))
->addMeta([
'resource' => route('api.application.locations.view', [
'location' => $location->id,
]),
])
2018-01-04 03:14:53 +00:00
->respond(201);
}
/**
* Update a location on the Panel and return the updated record to the user.
*
2018-01-04 03:14:53 +00:00
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
*/
public function update(UpdateLocationRequest $request, Location $location): array
2018-01-04 03:14:53 +00:00
{
$location = $this->updateService->handle($location, $request->validated());
2018-01-04 03:14:53 +00:00
return $this->fractal->item($location)
->transformWith($this->getTransformer(LocationTransformer::class))
2018-01-04 03:14:53 +00:00
->toArray();
}
/**
* Delete a location from the Panel.
*
2018-01-04 03:14:53 +00:00
* @throws \Pterodactyl\Exceptions\Service\Location\HasActiveNodesException
*/
public function delete(DeleteLocationRequest $request, Location $location): Response
2018-01-04 03:14:53 +00:00
{
$this->deletionService->handle($location);
2018-01-04 03:14:53 +00:00
return response('', 204);
}
}