2017-12-17 20:57:05 +00:00
|
|
|
<?php
|
|
|
|
|
2018-01-20 03:47:06 +00:00
|
|
|
namespace Pterodactyl\Transformers\Api\Application;
|
2017-12-17 20:57:05 +00:00
|
|
|
|
|
|
|
use Pterodactyl\Models\Allocation;
|
2018-01-13 20:08:19 +00:00
|
|
|
use Pterodactyl\Services\Acl\Api\AdminAcl;
|
2017-12-17 20:57:05 +00:00
|
|
|
|
2018-01-12 04:49:46 +00:00
|
|
|
class AllocationTransformer extends BaseTransformer
|
2017-12-17 20:57:05 +00:00
|
|
|
{
|
2018-01-11 05:19:03 +00:00
|
|
|
/**
|
|
|
|
* Relationships that can be loaded onto allocation transformations.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2018-01-13 20:08:19 +00:00
|
|
|
protected $availableIncludes = ['node', 'server'];
|
2018-01-11 05:19:03 +00:00
|
|
|
|
2018-01-26 03:26:06 +00:00
|
|
|
/**
|
|
|
|
* Return the resource name for the JSONAPI output.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getResourceName(): string
|
|
|
|
{
|
|
|
|
return Allocation::RESOURCE_NAME;
|
|
|
|
}
|
|
|
|
|
2017-12-17 20:57:05 +00:00
|
|
|
/**
|
|
|
|
* Return a generic transformed allocation array.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Models\Allocation $allocation
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function transform(Allocation $allocation)
|
|
|
|
{
|
2018-01-11 05:19:03 +00:00
|
|
|
return [
|
|
|
|
'id' => $allocation->id,
|
|
|
|
'ip' => $allocation->ip,
|
|
|
|
'alias' => $allocation->ip_alias,
|
|
|
|
'port' => $allocation->port,
|
|
|
|
'assigned' => ! is_null($allocation->server_id),
|
|
|
|
];
|
2017-12-17 20:57:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-11 05:19:03 +00:00
|
|
|
* Load the node relationship onto a given transformation.
|
2017-12-17 20:57:05 +00:00
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Models\Allocation $allocation
|
2018-01-13 20:08:19 +00:00
|
|
|
* @return \League\Fractal\Resource\Item|\League\Fractal\Resource\NullResource
|
2018-01-11 05:19:03 +00:00
|
|
|
*/
|
|
|
|
public function includeNode(Allocation $allocation)
|
|
|
|
{
|
2018-01-13 20:08:19 +00:00
|
|
|
if (! $this->authorize(AdminAcl::RESOURCE_NODES)) {
|
|
|
|
return $this->null();
|
2018-01-11 05:19:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$allocation->loadMissing('node');
|
|
|
|
|
2018-01-13 20:08:19 +00:00
|
|
|
return $this->item(
|
|
|
|
$allocation->getRelation('node'), $this->makeTransformer(NodeTransformer::class), 'node'
|
|
|
|
);
|
2018-01-11 05:19:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load the server relationship onto a given transformation.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Models\Allocation $allocation
|
2018-01-13 20:08:19 +00:00
|
|
|
* @return \League\Fractal\Resource\Item|\League\Fractal\Resource\NullResource
|
2017-12-17 20:57:05 +00:00
|
|
|
*/
|
2018-01-11 05:19:03 +00:00
|
|
|
public function includeServer(Allocation $allocation)
|
2017-12-17 20:57:05 +00:00
|
|
|
{
|
2018-01-13 20:08:19 +00:00
|
|
|
if (! $this->authorize(AdminAcl::RESOURCE_SERVERS)) {
|
|
|
|
return $this->null();
|
2018-01-11 05:19:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$allocation->loadMissing('server');
|
|
|
|
|
2018-01-13 20:08:19 +00:00
|
|
|
return $this->item(
|
|
|
|
$allocation->getRelation('server'), $this->makeTransformer(ServerTransformer::class), 'server'
|
|
|
|
);
|
2017-12-17 20:57:05 +00:00
|
|
|
}
|
|
|
|
}
|