mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 21:04:44 +02:00

* use RESOURCE_NAME for requests * use RESOURCE_NAME for transformers * add permissions field to api key * add migration for new permissions field * update tests * remove debug log * set column type to "json" * remove default attribute to fix tests * fix default value for permissions * fix after merge * fix after merge * allow to "register" custom permissions * add "role" to default resource names * fix after merge * fix phpstan * fix migrations
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Transformers\Api\Application;
|
|
|
|
use League\Fractal\Resource\Item;
|
|
use App\Models\EggVariable;
|
|
use App\Models\Egg;
|
|
use League\Fractal\Resource\NullResource;
|
|
|
|
class ServerVariableTransformer extends BaseTransformer
|
|
{
|
|
/**
|
|
* List of resources that can be included.
|
|
*/
|
|
protected array $availableIncludes = ['parent'];
|
|
|
|
/**
|
|
* Return the resource name for the JSONAPI output.
|
|
*/
|
|
public function getResourceName(): string
|
|
{
|
|
return EggVariable::RESOURCE_NAME;
|
|
}
|
|
|
|
/**
|
|
* Return a generic transformed server variable array.
|
|
*/
|
|
public function transform(EggVariable $variable): array
|
|
{
|
|
return $variable->toArray();
|
|
}
|
|
|
|
/**
|
|
* Return the parent service variable data.
|
|
*
|
|
* @throws \App\Exceptions\Transformer\InvalidTransformerLevelException
|
|
*/
|
|
public function includeParent(EggVariable $variable): Item|NullResource
|
|
{
|
|
if (!$this->authorize(Egg::RESOURCE_NAME)) {
|
|
return $this->null();
|
|
}
|
|
|
|
$variable->loadMissing('variable');
|
|
|
|
return $this->item($variable->getRelation('variable'), $this->makeTransformer(EggVariableTransformer::class), 'variable');
|
|
}
|
|
}
|