2018-02-25 21:30:56 +00:00
|
|
|
<?php
|
|
|
|
|
2018-02-28 03:28:43 +00:00
|
|
|
namespace Pterodactyl\Http\Controllers\Api\Client;
|
2018-02-25 21:30:56 +00:00
|
|
|
|
2022-12-15 00:05:46 +00:00
|
|
|
use Pterodactyl\Transformers\Api\Transformer;
|
2018-02-28 03:28:43 +00:00
|
|
|
use Pterodactyl\Http\Controllers\Api\Application\ApplicationApiController;
|
2018-02-25 21:30:56 +00:00
|
|
|
|
|
|
|
abstract class ClientApiController extends ApplicationApiController
|
|
|
|
{
|
2020-07-07 04:25:00 +00:00
|
|
|
/**
|
|
|
|
* Returns only the includes which are valid for the given transformer.
|
|
|
|
*/
|
2022-12-15 00:05:46 +00:00
|
|
|
protected function getIncludesForTransformer(Transformer $transformer, array $merge = []): array
|
2020-07-07 04:25:00 +00:00
|
|
|
{
|
|
|
|
$filtered = array_filter($this->parseIncludes(), function ($datum) use ($transformer) {
|
|
|
|
return in_array($datum, $transformer->getAvailableIncludes());
|
|
|
|
});
|
|
|
|
|
|
|
|
return array_merge($filtered, $merge);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the parsed includes for this request.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
protected function parseIncludes(): array
|
2020-07-07 04:25:00 +00:00
|
|
|
{
|
2020-07-10 02:17:24 +00:00
|
|
|
$includes = $this->request->query('include') ?? [];
|
2020-07-07 04:25:00 +00:00
|
|
|
|
2021-01-23 20:33:34 +00:00
|
|
|
if (!is_string($includes)) {
|
2020-07-07 04:25:00 +00:00
|
|
|
return $includes;
|
|
|
|
}
|
|
|
|
|
|
|
|
return array_map(function ($item) {
|
|
|
|
return trim($item);
|
|
|
|
}, explode(',', $includes));
|
|
|
|
}
|
2018-02-25 21:30:56 +00:00
|
|
|
}
|