mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
37 lines
1.3 KiB
PHP
37 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Resources\Wings;
|
|
|
|
use Pterodactyl\Models\Server;
|
|
use Illuminate\Container\Container;
|
|
use Illuminate\Http\Resources\Json\ResourceCollection;
|
|
use Pterodactyl\Services\Eggs\EggConfigurationService;
|
|
use Pterodactyl\Services\Servers\ServerConfigurationStructureService;
|
|
|
|
class ServerConfigurationCollection extends ResourceCollection
|
|
{
|
|
/**
|
|
* Converts a collection of Server models into an array of configuration responses
|
|
* that can be understood by Wings. Make sure you've properly loaded the required
|
|
* relationships on the Server models before calling this function, otherwise you'll
|
|
* have some serious performance issues from all of the N+1 queries.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
*
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
$egg = Container::getInstance()->make(EggConfigurationService::class);
|
|
$configuration = Container::getInstance()->make(ServerConfigurationStructureService::class);
|
|
|
|
return $this->collection->map(function (Server $server) use ($configuration, $egg) {
|
|
return [
|
|
'uuid' => $server->uuid,
|
|
'settings' => $configuration->handle($server),
|
|
'process_configuration' => $egg->handle($server),
|
|
];
|
|
})->toArray();
|
|
}
|
|
}
|