2019-03-24 00:47:20 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Controllers\Api\Client\Servers;
|
|
|
|
|
|
|
|
use Pterodactyl\Models\Server;
|
2020-07-10 03:36:08 +00:00
|
|
|
use Illuminate\Http\JsonResponse;
|
|
|
|
use Pterodactyl\Models\Allocation;
|
2020-07-10 02:56:46 +00:00
|
|
|
use Pterodactyl\Exceptions\DisplayException;
|
|
|
|
use Pterodactyl\Repositories\Eloquent\ServerRepository;
|
2019-09-06 04:41:20 +00:00
|
|
|
use Pterodactyl\Repositories\Eloquent\AllocationRepository;
|
2019-03-24 00:47:20 +00:00
|
|
|
use Pterodactyl\Transformers\Api\Client\AllocationTransformer;
|
|
|
|
use Pterodactyl\Http\Controllers\Api\Client\ClientApiController;
|
|
|
|
use Pterodactyl\Http\Requests\Api\Client\Servers\Network\GetNetworkRequest;
|
2020-07-10 03:36:08 +00:00
|
|
|
use Pterodactyl\Http\Requests\Api\Client\Servers\Network\DeleteAllocationRequest;
|
|
|
|
use Pterodactyl\Http\Requests\Api\Client\Servers\Network\UpdateAllocationRequest;
|
2020-07-10 02:56:46 +00:00
|
|
|
use Pterodactyl\Http\Requests\Api\Client\Servers\Network\SetPrimaryAllocationRequest;
|
2019-03-24 00:47:20 +00:00
|
|
|
|
2020-07-10 03:36:08 +00:00
|
|
|
class NetworkAllocationController extends ClientApiController
|
2019-03-24 00:47:20 +00:00
|
|
|
{
|
|
|
|
/**
|
2019-09-06 04:41:20 +00:00
|
|
|
* @var \Pterodactyl\Repositories\Eloquent\AllocationRepository
|
2019-03-24 00:47:20 +00:00
|
|
|
*/
|
|
|
|
private $repository;
|
|
|
|
|
2020-07-10 02:56:46 +00:00
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Repositories\Eloquent\ServerRepository
|
|
|
|
*/
|
|
|
|
private $serverRepository;
|
|
|
|
|
2019-03-24 00:47:20 +00:00
|
|
|
/**
|
|
|
|
* NetworkController constructor.
|
|
|
|
*
|
2019-09-06 04:41:20 +00:00
|
|
|
* @param \Pterodactyl\Repositories\Eloquent\AllocationRepository $repository
|
2020-07-10 02:56:46 +00:00
|
|
|
* @param \Pterodactyl\Repositories\Eloquent\ServerRepository $serverRepository
|
2019-03-24 00:47:20 +00:00
|
|
|
*/
|
2020-07-10 02:56:46 +00:00
|
|
|
public function __construct(
|
|
|
|
AllocationRepository $repository,
|
|
|
|
ServerRepository $serverRepository
|
|
|
|
) {
|
2019-03-24 00:47:20 +00:00
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
$this->repository = $repository;
|
2020-07-10 02:56:46 +00:00
|
|
|
$this->serverRepository = $serverRepository;
|
2019-03-24 00:47:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lists all of the allocations available to a server and wether or
|
|
|
|
* not they are currently assigned as the primary for this server.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Http\Requests\Api\Client\Servers\Network\GetNetworkRequest $request
|
2019-09-06 04:41:20 +00:00
|
|
|
* @param \Pterodactyl\Models\Server $server
|
2019-03-24 00:47:20 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
2019-09-06 04:41:20 +00:00
|
|
|
public function index(GetNetworkRequest $request, Server $server): array
|
2019-03-24 00:47:20 +00:00
|
|
|
{
|
2020-07-10 02:56:46 +00:00
|
|
|
return $this->fractal->collection($server->allocations)
|
|
|
|
->transformWith($this->getTransformer(AllocationTransformer::class))
|
|
|
|
->toArray();
|
|
|
|
}
|
|
|
|
|
2020-07-10 03:36:08 +00:00
|
|
|
/**
|
|
|
|
* Set the primary allocation for a server.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Http\Requests\Api\Client\Servers\Network\UpdateAllocationRequest $request
|
|
|
|
* @param \Pterodactyl\Models\Server $server
|
|
|
|
* @param \Pterodactyl\Models\Allocation $allocation
|
|
|
|
* @return array
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
|
|
*/
|
|
|
|
public function update(UpdateAllocationRequest $request, Server $server, Allocation $allocation): array
|
|
|
|
{
|
|
|
|
$allocation = $this->repository->update($allocation->id, [
|
|
|
|
'notes' => $request->input('notes'),
|
|
|
|
]);
|
|
|
|
|
|
|
|
return $this->fractal->item($allocation)
|
|
|
|
->transformWith($this->getTransformer(AllocationTransformer::class))
|
|
|
|
->toArray();
|
|
|
|
}
|
|
|
|
|
2020-07-10 02:56:46 +00:00
|
|
|
/**
|
|
|
|
* Set the primary allocation for a server.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Http\Requests\Api\Client\Servers\Network\SetPrimaryAllocationRequest $request
|
|
|
|
* @param \Pterodactyl\Models\Server $server
|
2020-07-10 03:36:08 +00:00
|
|
|
* @param \Pterodactyl\Models\Allocation $allocation
|
2020-07-10 02:56:46 +00:00
|
|
|
* @return array
|
|
|
|
*
|
2020-07-10 03:36:08 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
2020-07-10 02:56:46 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
2020-07-10 03:36:08 +00:00
|
|
|
*/
|
|
|
|
public function setPrimary(SetPrimaryAllocationRequest $request, Server $server, Allocation $allocation): array
|
|
|
|
{
|
|
|
|
$this->serverRepository->update($server->id, ['allocation_id' => $allocation->id]);
|
|
|
|
|
|
|
|
return $this->fractal->item($allocation)
|
|
|
|
->transformWith($this->getTransformer(AllocationTransformer::class))
|
|
|
|
->toArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete an allocation from a server.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Http\Requests\Api\Client\Servers\Network\DeleteAllocationRequest $request
|
|
|
|
* @param \Pterodactyl\Models\Server $server
|
|
|
|
* @param \Pterodactyl\Models\Allocation $allocation
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\DisplayException
|
2020-07-10 02:56:46 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
2020-07-10 03:36:08 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
2020-07-10 02:56:46 +00:00
|
|
|
*/
|
2020-07-10 03:36:08 +00:00
|
|
|
public function delete(DeleteAllocationRequest $request, Server $server, Allocation $allocation)
|
2020-07-10 02:56:46 +00:00
|
|
|
{
|
2020-07-10 03:36:08 +00:00
|
|
|
if ($allocation->id === $server->allocation_id) {
|
2020-07-10 02:56:46 +00:00
|
|
|
throw new DisplayException(
|
2020-07-10 03:36:08 +00:00
|
|
|
'Cannot delete the primary allocation for a server.'
|
2020-07-10 02:56:46 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-07-10 03:36:08 +00:00
|
|
|
$this->repository->update($allocation->id, ['server_id' => null, 'notes' => null]);
|
2019-03-24 00:47:20 +00:00
|
|
|
|
2020-07-10 03:36:08 +00:00
|
|
|
return new JsonResponse([], JsonResponse::HTTP_NO_CONTENT);
|
2019-03-24 00:47:20 +00:00
|
|
|
}
|
|
|
|
}
|