48 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Pterodactyl\Http\Controllers\Api\Application\Servers;
 | |
| 
 | |
| use Pterodactyl\Models\User;
 | |
| use Pterodactyl\Models\Server;
 | |
| use Pterodactyl\Services\Servers\StartupModificationService;
 | |
| use Pterodactyl\Transformers\Api\Application\ServerTransformer;
 | |
| use Pterodactyl\Http\Controllers\Api\Application\ApplicationApiController;
 | |
| use Pterodactyl\Http\Requests\Api\Application\Servers\UpdateServerStartupRequest;
 | |
| 
 | |
| class StartupController extends ApplicationApiController
 | |
| {
 | |
|     /**
 | |
|      * @var \Pterodactyl\Services\Servers\StartupModificationService
 | |
|      */
 | |
|     private $modificationService;
 | |
| 
 | |
|     /**
 | |
|      * StartupController constructor.
 | |
|      */
 | |
|     public function __construct(StartupModificationService $modificationService)
 | |
|     {
 | |
|         parent::__construct();
 | |
| 
 | |
|         $this->modificationService = $modificationService;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Update the startup and environment settings for a specific server.
 | |
|      *
 | |
|      * @throws \Illuminate\Validation\ValidationException
 | |
|      * @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
 | |
|      * @throws \Pterodactyl\Exceptions\Model\DataValidationException
 | |
|      * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
 | |
|      */
 | |
|     public function index(UpdateServerStartupRequest $request): array
 | |
|     {
 | |
|         $server = $this->modificationService
 | |
|             ->setUserLevel(User::USER_LEVEL_ADMIN)
 | |
|             ->handle($request->getModel(Server::class), $request->validated());
 | |
| 
 | |
|         return $this->fractal->item($server)
 | |
|             ->transformWith($this->getTransformer(ServerTransformer::class))
 | |
|             ->toArray();
 | |
|     }
 | |
| }
 | 
