e313dff674
Changes the API internals to use normal Laravel binding which automatically supports nested-models and can determine their relationships. This removes a lot of confusingly complex internal logic and replaces it with standard Laravel code. This also removes a deprecated "getModel" method and fully replaces it with a "parameter" method that does stricter type-checking.
33 lines
1.1 KiB
PHP
33 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Controllers\Api\Application\Nests;
|
|
|
|
use Pterodactyl\Models\Egg;
|
|
use Pterodactyl\Models\Nest;
|
|
use Pterodactyl\Transformers\Api\Application\EggTransformer;
|
|
use Pterodactyl\Http\Requests\Api\Application\Nests\Eggs\GetEggRequest;
|
|
use Pterodactyl\Http\Requests\Api\Application\Nests\Eggs\GetEggsRequest;
|
|
use Pterodactyl\Http\Controllers\Api\Application\ApplicationApiController;
|
|
|
|
class EggController extends ApplicationApiController
|
|
{
|
|
/**
|
|
* Return all eggs that exist for a given nest.
|
|
*/
|
|
public function index(GetEggsRequest $request, Nest $nest): array
|
|
{
|
|
return $this->fractal->collection($nest->eggs)
|
|
->transformWith($this->getTransformer(EggTransformer::class))
|
|
->toArray();
|
|
}
|
|
|
|
/**
|
|
* Return a single egg that exists on the specified nest.
|
|
*/
|
|
public function view(GetEggRequest $request, Nest $nest, Egg $egg): array
|
|
{
|
|
return $this->fractal->item($egg)
|
|
->transformWith($this->getTransformer(EggTransformer::class))
|
|
->toArray();
|
|
}
|
|
}
|