mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 03:56:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Pterodactyl\Http\Controllers\Api\Application\Nests;
 | |
| 
 | |
| use Pterodactyl\Models\Egg;
 | |
| use Pterodactyl\Models\Nest;
 | |
| use Pterodactyl\Contracts\Repository\EggRepositoryInterface;
 | |
| 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
 | |
| {
 | |
|     /**
 | |
|      * @var \Pterodactyl\Contracts\Repository\EggRepositoryInterface
 | |
|      */
 | |
|     private $repository;
 | |
| 
 | |
|     /**
 | |
|      * EggController constructor.
 | |
|      *
 | |
|      * @param \Pterodactyl\Contracts\Repository\EggRepositoryInterface $repository
 | |
|      */
 | |
|     public function __construct(EggRepositoryInterface $repository)
 | |
|     {
 | |
|         parent::__construct();
 | |
| 
 | |
|         $this->repository = $repository;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Return all eggs that exist for a given nest.
 | |
|      *
 | |
|      * @param \Pterodactyl\Http\Requests\Api\Application\Nests\Eggs\GetEggsRequest $request
 | |
|      * @return array
 | |
|      */
 | |
|     public function index(GetEggsRequest $request): array
 | |
|     {
 | |
|         $eggs = $this->repository->findWhere([
 | |
|             ['nest_id', '=', $request->getModel(Nest::class)->id],
 | |
|         ]);
 | |
| 
 | |
|         return $this->fractal->collection($eggs)
 | |
|             ->transformWith($this->getTransformer(EggTransformer::class))
 | |
|             ->toArray();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Return a single egg that exists on the specified nest.
 | |
|      *
 | |
|      * @param \Pterodactyl\Http\Requests\Api\Application\Nests\Eggs\GetEggRequest $request
 | |
|      * @return array
 | |
|      */
 | |
|     public function view(GetEggRequest $request): array
 | |
|     {
 | |
|         return $this->fractal->item($request->getModel(Egg::class))
 | |
|             ->transformWith($this->getTransformer(EggTransformer::class))
 | |
|             ->toArray();
 | |
|     }
 | |
| }
 | 
