2017-04-02 04:49:53 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2017-04-02 04:49:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Pterodactyl\Transformers\User;
|
|
|
|
|
|
|
|
use Pterodactyl\Models\Server;
|
|
|
|
use League\Fractal\TransformerAbstract;
|
|
|
|
|
|
|
|
class ServerTransformer extends TransformerAbstract
|
|
|
|
{
|
2017-04-02 17:19:39 +00:00
|
|
|
/**
|
|
|
|
* List of resources that can be included.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $availableIncludes = [
|
|
|
|
'allocations',
|
|
|
|
'subusers',
|
|
|
|
'stats',
|
|
|
|
];
|
|
|
|
|
2017-04-02 04:49:53 +00:00
|
|
|
/**
|
|
|
|
* Return a generic transformed server array.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function transform(Server $server)
|
|
|
|
{
|
|
|
|
return [
|
2017-04-02 20:51:56 +00:00
|
|
|
'id' => $server->uuidShort,
|
2017-04-02 04:49:53 +00:00
|
|
|
'uuid' => $server->uuid,
|
|
|
|
'name' => $server->name,
|
2017-04-02 17:19:39 +00:00
|
|
|
'description' => $server->description,
|
2017-04-02 04:49:53 +00:00
|
|
|
'node' => $server->node->name,
|
2017-04-02 17:19:39 +00:00
|
|
|
'limits' => [
|
|
|
|
'memory' => $server->memory,
|
|
|
|
'swap' => $server->swap,
|
|
|
|
'disk' => $server->disk,
|
|
|
|
'io' => $server->io,
|
|
|
|
'cpu' => $server->cpu,
|
|
|
|
'oom_disabled' => (bool) $server->oom_disabled,
|
|
|
|
],
|
2017-04-02 04:49:53 +00:00
|
|
|
];
|
|
|
|
}
|
2017-04-02 17:19:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a generic array of allocations for this server.
|
|
|
|
*
|
|
|
|
* @return \Leauge\Fractal\Resource\Collection
|
|
|
|
*/
|
|
|
|
public function includeAllocations(Server $server)
|
|
|
|
{
|
|
|
|
$allocations = $server->allocations;
|
|
|
|
|
2017-04-02 20:51:56 +00:00
|
|
|
return $this->collection($allocations, new AllocationTransformer($server), 'allocation');
|
2017-04-02 17:19:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a generic array of subusers for this server.
|
|
|
|
*
|
|
|
|
* @return \Leauge\Fractal\Resource\Collection
|
|
|
|
*/
|
|
|
|
public function includeSubusers(Server $server)
|
|
|
|
{
|
|
|
|
$server->load('subusers.permissions', 'subusers.user');
|
|
|
|
|
2017-04-02 20:51:56 +00:00
|
|
|
return $this->collection($server->subusers, new SubuserTransformer, 'subuser');
|
2017-04-02 17:19:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a generic array of allocations for this server.
|
|
|
|
*
|
|
|
|
* @return \Leauge\Fractal\Resource\Item
|
|
|
|
*/
|
|
|
|
public function includeStats(Server $server)
|
|
|
|
{
|
2017-04-02 20:51:56 +00:00
|
|
|
return $this->item($server->guzzleClient(), new StatsTransformer, 'stat');
|
2017-04-02 17:19:39 +00:00
|
|
|
}
|
2017-04-02 04:49:53 +00:00
|
|
|
}
|