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

199 lines
5.7 KiB
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Transformers\Api\Application;
use Pterodactyl\Models\Server;
use League\Fractal\Resource\Item;
use League\Fractal\Resource\Collection;
use League\Fractal\Resource\NullResource;
2018-01-19 03:56:12 +00:00
use Pterodactyl\Services\Acl\Api\AdminAcl;
2022-12-15 00:05:46 +00:00
use Pterodactyl\Transformers\Api\Transformer;
use Pterodactyl\Services\Servers\EnvironmentService;
2022-12-15 00:05:46 +00:00
class ServerTransformer extends Transformer
{
private EnvironmentService $environmentService;
/**
* List of resources that can be included.
*/
protected array $availableIncludes = [
'allocations',
'user',
'subusers',
2018-01-19 03:56:12 +00:00
'nest',
'egg',
'variables',
'location',
'node',
'databases',
'transfer',
];
/**
* Perform dependency injection.
*/
public function handle(EnvironmentService $environmentService)
{
$this->environmentService = $environmentService;
}
/**
* Return the resource name for the JSONAPI output.
*/
public function getResourceName(): string
{
return Server::RESOURCE_NAME;
}
/**
* Return a generic transformed server array.
*/
2022-12-15 00:05:46 +00:00
public function transform(Server $model): array
{
return [
2022-12-15 00:05:46 +00:00
'id' => $model->getKey(),
'external_id' => $model->external_id,
'uuid' => $model->uuid,
'identifier' => $model->uuidShort,
'name' => $model->name,
'description' => $model->description,
'status' => $model->status,
'limits' => [
2022-12-15 00:05:46 +00:00
'cpu' => $model->cpu,
'disk' => $model->disk,
'io' => $model->io,
'memory' => $model->memory,
'oom_disabled' => $model->oom_disabled,
'swap' => $model->swap,
'threads' => $model->threads,
],
'feature_limits' => [
2022-12-15 00:05:46 +00:00
'allocations' => $model->allocation_limit,
'backups' => $model->backup_limit,
'databases' => $model->database_limit,
],
2023-01-12 19:25:58 +00:00
'owner_id' => $model->owner_id,
2022-12-15 00:05:46 +00:00
'node_id' => $model->node_id,
'allocation_id' => $model->allocation_id,
'nest_id' => $model->nest_id,
'egg_id' => $model->egg_id,
'container' => [
2022-12-15 00:05:46 +00:00
'startup' => $model->startup,
'image' => $model->image,
'environment' => $this->environmentService->handle($model),
],
2022-12-15 00:05:46 +00:00
'created_at' => self::formatTimestamp($model->created_at),
'updated_at' => self::formatTimestamp($model->updated_at),
];
}
/**
* Return a generic array of allocations for this server.
*/
public function includeAllocations(Server $server): Collection|NullResource
{
2021-01-23 20:33:34 +00:00
if (!$this->authorize(AdminAcl::RESOURCE_ALLOCATIONS)) {
2018-01-19 03:56:12 +00:00
return $this->null();
}
2022-12-15 00:05:46 +00:00
return $this->collection($server->allocations, new AllocationTransformer());
}
/**
* Return a generic array of data about subusers for this server.
*/
public function includeSubusers(Server $server): Collection|NullResource
{
2021-01-23 20:33:34 +00:00
if (!$this->authorize(AdminAcl::RESOURCE_USERS)) {
2018-01-19 03:56:12 +00:00
return $this->null();
}
2022-12-15 00:05:46 +00:00
return $this->collection($server->subusers, new SubuserTransformer());
}
/**
* Return a generic array of data about subusers for this server.
*/
public function includeUser(Server $server): Item|NullResource
{
2021-01-23 20:33:34 +00:00
if (!$this->authorize(AdminAcl::RESOURCE_USERS)) {
2018-01-19 03:56:12 +00:00
return $this->null();
}
2022-12-15 00:05:46 +00:00
return $this->item($server->user, new UserTransformer());
}
/**
2018-01-19 03:56:12 +00:00
* Return a generic array with nest information for this server.
*/
public function includeNest(Server $server): Item|NullResource
2018-03-02 00:43:39 +00:00
{
2021-01-23 20:33:34 +00:00
if (!$this->authorize(AdminAcl::RESOURCE_NESTS)) {
2018-03-02 00:43:39 +00:00
return $this->null();
}
2022-12-15 00:05:46 +00:00
return $this->item($server->nest, new NestTransformer());
2018-03-02 00:43:39 +00:00
}
/**
* Return a generic array with egg information for this server.
*/
public function includeEgg(Server $server): Item|NullResource
{
2021-01-23 20:33:34 +00:00
if (!$this->authorize(AdminAcl::RESOURCE_EGGS)) {
2018-01-19 03:56:12 +00:00
return $this->null();
}
2022-12-15 00:05:46 +00:00
return $this->item($server->egg, new EggTransformer());
}
/**
* Return a generic array of data about subusers for this server.
*/
public function includeVariables(Server $server): Collection|NullResource
{
2021-01-23 20:33:34 +00:00
if (!$this->authorize(AdminAcl::RESOURCE_SERVERS)) {
2018-01-19 03:56:12 +00:00
return $this->null();
}
2022-12-15 00:05:46 +00:00
return $this->collection($server->variables, new ServerVariableTransformer());
}
/**
* Return a generic array with location information for this server.
*/
public function includeLocation(Server $server): Item|NullResource
{
2021-01-23 20:33:34 +00:00
if (!$this->authorize(AdminAcl::RESOURCE_LOCATIONS)) {
2018-01-19 03:56:12 +00:00
return $this->null();
}
2022-12-15 00:05:46 +00:00
return $this->item($server->location, new LocationTransformer());
}
/**
* Return a generic array with node information for this server.
*/
public function includeNode(Server $server): Item|NullResource
{
2021-01-23 20:33:34 +00:00
if (!$this->authorize(AdminAcl::RESOURCE_NODES)) {
2018-01-19 03:56:12 +00:00
return $this->null();
}
2022-12-15 00:05:46 +00:00
return $this->item($server->node, new NodeTransformer());
}
/**
* Return a generic array with database information for this server.
*/
public function includeDatabases(Server $server): Collection|NullResource
{
2021-01-23 20:33:34 +00:00
if (!$this->authorize(AdminAcl::RESOURCE_SERVER_DATABASES)) {
return $this->null();
}
2022-12-15 00:05:46 +00:00
return $this->collection($server->databases, new ServerDatabaseTransformer());
}
}