mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 03:36:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.8 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.
 | 
						|
     *
 | 
						|
     * @param \Pterodactyl\Services\Servers\StartupModificationService $modificationService
 | 
						|
     */
 | 
						|
    public function __construct(StartupModificationService $modificationService)
 | 
						|
    {
 | 
						|
        parent::__construct();
 | 
						|
 | 
						|
        $this->modificationService = $modificationService;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Update the startup and environment settings for a specific server.
 | 
						|
     *
 | 
						|
     * @param \Pterodactyl\Http\Requests\Api\Application\Servers\UpdateServerStartupRequest $request
 | 
						|
     * @return array
 | 
						|
     *
 | 
						|
     * @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();
 | 
						|
    }
 | 
						|
}
 |