2018-01-11 05:19:03 +00:00
|
|
|
<?php
|
|
|
|
|
2018-01-20 01:58:57 +00:00
|
|
|
namespace Pterodactyl\Http\Controllers\Api\Application\Nodes;
|
2018-01-11 05:19:03 +00:00
|
|
|
|
2018-01-13 20:08:19 +00:00
|
|
|
use Pterodactyl\Models\Node;
|
2022-12-15 00:05:46 +00:00
|
|
|
use Illuminate\Http\Response;
|
2018-01-11 05:19:03 +00:00
|
|
|
use Pterodactyl\Models\Allocation;
|
2022-05-07 20:16:11 +00:00
|
|
|
use Spatie\QueryBuilder\QueryBuilder;
|
|
|
|
use Spatie\QueryBuilder\AllowedFilter;
|
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
2018-01-27 18:38:56 +00:00
|
|
|
use Pterodactyl\Services\Allocations\AssignmentService;
|
2018-01-11 05:19:03 +00:00
|
|
|
use Pterodactyl\Services\Allocations\AllocationDeletionService;
|
2022-12-15 00:05:46 +00:00
|
|
|
use Pterodactyl\Exceptions\Http\QueryValueOutOfRangeHttpException;
|
2018-01-20 03:47:06 +00:00
|
|
|
use Pterodactyl\Transformers\Api\Application\AllocationTransformer;
|
2018-01-27 18:38:56 +00:00
|
|
|
use Pterodactyl\Http\Controllers\Api\Application\ApplicationApiController;
|
2018-01-20 01:58:57 +00:00
|
|
|
use Pterodactyl\Http\Requests\Api\Application\Allocations\GetAllocationsRequest;
|
2018-01-27 18:38:56 +00:00
|
|
|
use Pterodactyl\Http\Requests\Api\Application\Allocations\StoreAllocationRequest;
|
|
|
|
use Pterodactyl\Http\Requests\Api\Application\Allocations\DeleteAllocationRequest;
|
2018-01-11 05:19:03 +00:00
|
|
|
|
2018-01-27 18:38:56 +00:00
|
|
|
class AllocationController extends ApplicationApiController
|
2018-01-11 05:19:03 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* AllocationController constructor.
|
|
|
|
*/
|
2018-01-27 18:38:56 +00:00
|
|
|
public function __construct(
|
2022-10-14 16:59:20 +00:00
|
|
|
private AssignmentService $assignmentService,
|
|
|
|
private AllocationDeletionService $deletionService
|
2018-01-27 18:38:56 +00:00
|
|
|
) {
|
|
|
|
parent::__construct();
|
2018-01-11 05:19:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-10-14 16:59:20 +00:00
|
|
|
* Return all the allocations that exist for a given node.
|
2018-01-11 05:19:03 +00:00
|
|
|
*/
|
2020-07-07 03:05:42 +00:00
|
|
|
public function index(GetAllocationsRequest $request, Node $node): array
|
2018-01-11 05:19:03 +00:00
|
|
|
{
|
2022-12-15 00:05:46 +00:00
|
|
|
$perPage = (int) $request->query('per_page', '10');
|
|
|
|
if ($perPage < 1 || $perPage > 100) {
|
|
|
|
throw new QueryValueOutOfRangeHttpException('per_page', 1, 100);
|
|
|
|
}
|
|
|
|
|
|
|
|
$allocations = QueryBuilder::for(Allocation::query()->where('node_id', '=', $node->id))
|
2022-05-07 20:16:11 +00:00
|
|
|
->allowedFilters([
|
2022-12-15 00:05:46 +00:00
|
|
|
'id', 'ip', 'port', 'alias',
|
|
|
|
AllowedFilter::callback('server_id', function (Builder $query, $value) {
|
|
|
|
if ($value === '0') {
|
|
|
|
$query->whereNull('server_id');
|
|
|
|
} else {
|
|
|
|
$query->where('server_id', '=', $value);
|
2022-05-07 20:16:11 +00:00
|
|
|
}
|
|
|
|
}),
|
|
|
|
])
|
2022-12-15 00:05:46 +00:00
|
|
|
->allowedSorts(['id', 'ip', 'port', 'server_id'])
|
|
|
|
->paginate($perPage);
|
2018-01-11 05:19:03 +00:00
|
|
|
|
|
|
|
return $this->fractal->collection($allocations)
|
2022-12-15 00:05:46 +00:00
|
|
|
->transformWith(AllocationTransformer::class)
|
2018-01-11 05:19:03 +00:00
|
|
|
->toArray();
|
|
|
|
}
|
|
|
|
|
2018-01-27 18:38:56 +00:00
|
|
|
/**
|
|
|
|
* Store new allocations for a given node.
|
|
|
|
*
|
2021-03-26 16:03:51 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\DisplayException
|
2018-03-10 19:10:40 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Service\Allocation\CidrOutOfRangeException
|
|
|
|
* @throws \Pterodactyl\Exceptions\Service\Allocation\InvalidPortMappingException
|
|
|
|
* @throws \Pterodactyl\Exceptions\Service\Allocation\PortOutOfRangeException
|
|
|
|
* @throws \Pterodactyl\Exceptions\Service\Allocation\TooManyPortsInRangeException
|
2018-01-27 18:38:56 +00:00
|
|
|
*/
|
2022-12-15 00:05:46 +00:00
|
|
|
public function store(StoreAllocationRequest $request, Node $node): Response
|
2018-01-27 18:38:56 +00:00
|
|
|
{
|
2020-07-07 03:05:42 +00:00
|
|
|
$this->assignmentService->handle($node, $request->validated());
|
2018-01-27 18:38:56 +00:00
|
|
|
|
2022-12-15 00:05:46 +00:00
|
|
|
return $this->returnNoContent();
|
2018-01-27 18:38:56 +00:00
|
|
|
}
|
|
|
|
|
2018-01-11 05:19:03 +00:00
|
|
|
/**
|
|
|
|
* Delete a specific allocation from the Panel.
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Service\Allocation\ServerUsingAllocationException
|
|
|
|
*/
|
2022-12-15 00:05:46 +00:00
|
|
|
public function delete(DeleteAllocationRequest $request, Node $node, Allocation $allocation): Response
|
2018-01-11 05:19:03 +00:00
|
|
|
{
|
2020-07-07 03:05:42 +00:00
|
|
|
$this->deletionService->handle($allocation);
|
2018-01-11 05:19:03 +00:00
|
|
|
|
2022-12-15 00:05:46 +00:00
|
|
|
return $this->returnNoContent();
|
2018-01-11 05:19:03 +00:00
|
|
|
}
|
|
|
|
}
|