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.
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Http\Controllers\Api\Application\Nests;
 | 
						|
 | 
						|
use Pterodactyl\Models\Nest;
 | 
						|
use Pterodactyl\Contracts\Repository\NestRepositoryInterface;
 | 
						|
use Pterodactyl\Transformers\Api\Application\NestTransformer;
 | 
						|
use Pterodactyl\Http\Requests\Api\Application\Nests\GetNestsRequest;
 | 
						|
use Pterodactyl\Http\Controllers\Api\Application\ApplicationApiController;
 | 
						|
 | 
						|
class NestController extends ApplicationApiController
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var \Pterodactyl\Contracts\Repository\NestRepositoryInterface
 | 
						|
     */
 | 
						|
    private $repository;
 | 
						|
 | 
						|
    /**
 | 
						|
     * NestController constructor.
 | 
						|
     */
 | 
						|
    public function __construct(NestRepositoryInterface $repository)
 | 
						|
    {
 | 
						|
        parent::__construct();
 | 
						|
 | 
						|
        $this->repository = $repository;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return all Nests that exist on the Panel.
 | 
						|
     */
 | 
						|
    public function index(GetNestsRequest $request): array
 | 
						|
    {
 | 
						|
        $nests = $this->repository->paginated($request->query('per_page') ?? 50);
 | 
						|
 | 
						|
        return $this->fractal->collection($nests)
 | 
						|
            ->transformWith($this->getTransformer(NestTransformer::class))
 | 
						|
            ->toArray();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return information about a single Nest model.
 | 
						|
     */
 | 
						|
    public function view(GetNestsRequest $request, Nest $nest): array
 | 
						|
    {
 | 
						|
        return $this->fractal->item($nest)
 | 
						|
            ->transformWith($this->getTransformer(NestTransformer::class))
 | 
						|
            ->toArray();
 | 
						|
    }
 | 
						|
}
 |