mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 14:16:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Pterodactyl - Panel
 | |
|  * Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
 | |
|  *
 | |
|  * This software is licensed under the terms of the MIT license.
 | |
|  * https://opensource.org/licenses/MIT
 | |
|  */
 | |
| 
 | |
| namespace Pterodactyl\Services\Eggs;
 | |
| 
 | |
| use Pterodactyl\Models\Egg;
 | |
| use Pterodactyl\Contracts\Repository\EggRepositoryInterface;
 | |
| use Pterodactyl\Exceptions\Service\Egg\NoParentConfigurationFoundException;
 | |
| 
 | |
| class EggUpdateService
 | |
| {
 | |
|     /**
 | |
|      * @var \Pterodactyl\Contracts\Repository\EggRepositoryInterface
 | |
|      */
 | |
|     protected $repository;
 | |
| 
 | |
|     /**
 | |
|      * EggUpdateService constructor.
 | |
|      *
 | |
|      * @param \Pterodactyl\Contracts\Repository\EggRepositoryInterface $repository
 | |
|      */
 | |
|     public function __construct(EggRepositoryInterface $repository)
 | |
|     {
 | |
|         $this->repository = $repository;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Update a service option.
 | |
|      *
 | |
|      * @param int|\Pterodactyl\Models\Egg $egg
 | |
|      * @param array $data
 | |
|      *
 | |
|      * @throws \Pterodactyl\Exceptions\Model\DataValidationException
 | |
|      * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
 | |
|      * @throws \Pterodactyl\Exceptions\Service\Egg\NoParentConfigurationFoundException
 | |
|      */
 | |
|     public function handle($egg, array $data)
 | |
|     {
 | |
|         if (! $egg instanceof Egg) {
 | |
|             $egg = $this->repository->find($egg);
 | |
|         }
 | |
| 
 | |
|         if (! is_null(array_get($data, 'config_from'))) {
 | |
|             $results = $this->repository->findCountWhere([
 | |
|                 ['nest_id', '=', $egg->nest_id],
 | |
|                 ['id', '=', array_get($data, 'config_from')],
 | |
|             ]);
 | |
| 
 | |
|             if ($results !== 1) {
 | |
|                 throw new NoParentConfigurationFoundException(trans('exceptions.nest.egg.must_be_child'));
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         $this->repository->withoutFreshModel()->update($egg->id, $data);
 | |
|     }
 | |
| }
 | 
