misc_pterodactyl-panel/app/Transformers/Api/Application/NodeTransformer.php

84 lines
2.3 KiB
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Transformers\Api\Application;
use Pterodactyl\Models\Node;
use League\Fractal\Resource\Item;
use League\Fractal\Resource\Collection;
use League\Fractal\Resource\NullResource;
2018-01-13 20:08:19 +00:00
use Pterodactyl\Services\Acl\Api\AdminAcl;
2022-12-15 00:05:46 +00:00
use Pterodactyl\Transformers\Api\Transformer;
2022-12-15 00:05:46 +00:00
class NodeTransformer extends Transformer
{
/**
* List of resources that can be included.
*/
protected array $availableIncludes = ['allocations', 'location', 'servers'];
/**
* Return the resource name for the JSONAPI output.
*/
public function getResourceName(): string
{
return Node::RESOURCE_NAME;
}
/**
2018-01-13 20:08:19 +00:00
* Return a node transformed into a format that can be consumed by the
* external administrative API.
*/
2022-12-15 00:05:46 +00:00
public function transform(Node $model): array
{
2022-12-15 01:08:50 +00:00
$response = $model->toArray();
2018-01-13 20:08:19 +00:00
2022-12-15 00:05:46 +00:00
$response['created_at'] = self::formatTimestamp($model->created_at);
$response['updated_at'] = self::formatTimestamp($model->updated_at);
2018-01-13 20:08:19 +00:00
2022-12-15 00:05:46 +00:00
$resources = $model->servers()->select(['memory', 'disk'])->get();
$response['allocated_resources'] = [
'memory' => $resources->sum('memory'),
'disk' => $resources->sum('disk'),
];
2018-01-13 20:08:19 +00:00
return $response;
}
/**
2022-12-15 00:05:46 +00:00
* Return the allocations associated with this node.
*/
public function includeAllocations(Node $node): Collection|NullResource
{
2021-01-23 20:33:34 +00:00
if (!$this->authorize(AdminAcl::RESOURCE_ALLOCATIONS)) {
2018-01-13 20:08:19 +00:00
return $this->null();
}
2022-12-15 00:05:46 +00:00
return $this->collection($node->allocations, new AllocationTransformer());
}
/**
2022-12-15 00:05:46 +00:00
* Return the location associated with this node.
*/
public function includeLocation(Node $node): Item|NullResource
{
2021-01-23 20:33:34 +00:00
if (!$this->authorize(AdminAcl::RESOURCE_LOCATIONS)) {
2018-01-13 20:08:19 +00:00
return $this->null();
}
2022-12-15 00:05:46 +00:00
return $this->item($node->location, new LocationTransformer());
}
/**
2022-12-15 00:05:46 +00:00
* Return the servers associated with this node.
*/
public function includeServers(Node $node): Collection|NullResource
{
2021-01-23 20:33:34 +00:00
if (!$this->authorize(AdminAcl::RESOURCE_SERVERS)) {
2018-01-13 20:08:19 +00:00
return $this->null();
}
2022-12-15 00:05:46 +00:00
return $this->collection($node->servers, new ServerTransformer());
}
}