mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 01:44:45 +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>
86 lines
2.0 KiB
PHP
86 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Transformers\Api\Application;
|
|
|
|
use App\Models\Egg;
|
|
use App\Models\Mount;
|
|
use App\Models\Node;
|
|
use App\Models\Server;
|
|
use League\Fractal\Resource\Collection;
|
|
use League\Fractal\Resource\NullResource;
|
|
|
|
class MountTransformer extends BaseTransformer
|
|
{
|
|
/**
|
|
* List of resources that can be included.
|
|
*/
|
|
protected array $availableIncludes = ['eggs', 'nodes', 'servers'];
|
|
|
|
/**
|
|
* Return the resource name for the JSONAPI output.
|
|
*/
|
|
public function getResourceName(): string
|
|
{
|
|
return Mount::RESOURCE_NAME;
|
|
}
|
|
|
|
public function transform(Mount $model): array
|
|
{
|
|
return $model->toArray();
|
|
}
|
|
|
|
/**
|
|
* Return the eggs associated with this mount.
|
|
*/
|
|
public function includeEggs(Mount $mount): Collection|NullResource
|
|
{
|
|
if (!$this->authorize(Egg::RESOURCE_NAME)) {
|
|
return $this->null();
|
|
}
|
|
|
|
$mount->loadMissing('eggs');
|
|
|
|
return $this->collection(
|
|
$mount->getRelation('eggs'),
|
|
$this->makeTransformer(EggTransformer::class),
|
|
'egg'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Return the nodes associated with this mount.
|
|
*/
|
|
public function includeNodes(Mount $mount): Collection|NullResource
|
|
{
|
|
if (!$this->authorize(Node::RESOURCE_NAME)) {
|
|
return $this->null();
|
|
}
|
|
|
|
$mount->loadMissing('nodes');
|
|
|
|
return $this->collection(
|
|
$mount->getRelation('nodes'),
|
|
$this->makeTransformer(NodeTransformer::class),
|
|
'node'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Return the servers associated with this mount.
|
|
*/
|
|
public function includeServers(Mount $mount): Collection|NullResource
|
|
{
|
|
if (!$this->authorize(Server::RESOURCE_NAME)) {
|
|
return $this->null();
|
|
}
|
|
|
|
$mount->loadMissing('servers');
|
|
|
|
return $this->collection(
|
|
$mount->getRelation('servers'),
|
|
$this->makeTransformer(ServerTransformer::class),
|
|
'server'
|
|
);
|
|
}
|
|
}
|