2016-09-05 20:21:36 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pterodactyl - Panel
|
2017-01-24 22:57:08 +00:00
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
2016-09-05 20:21:36 +00:00
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2016-09-05 20:21:36 +00:00
|
|
|
*/
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2017-04-02 17:19:39 +00:00
|
|
|
namespace Pterodactyl\Transformers\User;
|
2016-09-05 20:21:36 +00:00
|
|
|
|
2017-04-02 17:19:39 +00:00
|
|
|
use Pterodactyl\Models\Server;
|
|
|
|
use Pterodactyl\Models\Allocation;
|
|
|
|
use League\Fractal\TransformerAbstract;
|
2016-09-05 20:21:36 +00:00
|
|
|
|
2017-04-02 17:19:39 +00:00
|
|
|
class AllocationTransformer extends TransformerAbstract
|
2016-09-05 20:21:36 +00:00
|
|
|
{
|
|
|
|
/**
|
2017-04-02 17:19:39 +00:00
|
|
|
* Server eloquent model.
|
2016-09-05 20:21:36 +00:00
|
|
|
*
|
2017-04-02 17:19:39 +00:00
|
|
|
* @return \Pterodactyl\Models\Server
|
|
|
|
*/
|
|
|
|
protected $server;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup allocation transformer with access to server data.
|
2016-09-05 20:21:36 +00:00
|
|
|
*/
|
2017-04-02 17:19:39 +00:00
|
|
|
public function __construct(Server $server)
|
2016-09-05 20:21:36 +00:00
|
|
|
{
|
2017-04-02 17:19:39 +00:00
|
|
|
$this->server = $server;
|
|
|
|
}
|
2017-02-11 01:26:38 +00:00
|
|
|
|
2017-04-02 17:19:39 +00:00
|
|
|
/**
|
|
|
|
* Return a generic transformed allocation array.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function transform(Allocation $allocation)
|
|
|
|
{
|
|
|
|
return [
|
2017-04-02 20:51:56 +00:00
|
|
|
'id' => $allocation->id,
|
2017-04-02 17:19:39 +00:00
|
|
|
'ip' => $allocation->alias,
|
|
|
|
'port' => $allocation->port,
|
|
|
|
'default' => ($allocation->id === $this->server->allocation_id),
|
|
|
|
];
|
2016-09-05 20:21:36 +00:00
|
|
|
}
|
|
|
|
}
|