mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 18:04:46 +02:00

* Remove old admin * Remove controller test * Remove unused exceptions * Remove unused files * More small tweaks * Fix doc block * Remove unused service * Restore these * Add back autoDeploy * Revert "Add back autoDeploy" This reverts commit 630c1e08acf8056ce8e612f376fcd00c23d90aea. * Add these back * Add back exception * Remove ApiController again --------- Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com> Co-authored-by: Boy132 <mail@boy132.de> Co-authored-by: notCharles <charles@pelican.dev>
47 lines
1.1 KiB
PHP
47 lines
1.1 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.
|
|
*/
|
|
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');
|
|
}
|
|
}
|