mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 03:36:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Controllers\Api\Application\Servers;
 | 
						|
 | 
						|
use App\Models\Server;
 | 
						|
use App\Services\Servers\BuildModificationService;
 | 
						|
use App\Services\Servers\DetailsModificationService;
 | 
						|
use App\Transformers\Api\Application\ServerTransformer;
 | 
						|
use App\Http\Controllers\Api\Application\ApplicationApiController;
 | 
						|
use App\Http\Requests\Api\Application\Servers\UpdateServerDetailsRequest;
 | 
						|
use App\Http\Requests\Api\Application\Servers\UpdateServerBuildConfigurationRequest;
 | 
						|
 | 
						|
class ServerDetailsController extends ApplicationApiController
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * ServerDetailsController constructor.
 | 
						|
     */
 | 
						|
    public function __construct(
 | 
						|
        private BuildModificationService $buildModificationService,
 | 
						|
        private DetailsModificationService $detailsModificationService
 | 
						|
    ) {
 | 
						|
        parent::__construct();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Update the details for a specific server.
 | 
						|
     *
 | 
						|
     * @throws \App\Exceptions\DisplayException
 | 
						|
     * @throws \App\Exceptions\Model\DataValidationException
 | 
						|
     */
 | 
						|
    public function details(UpdateServerDetailsRequest $request, Server $server): array
 | 
						|
    {
 | 
						|
        $updated = $this->detailsModificationService->returnUpdatedModel()->handle(
 | 
						|
            $server,
 | 
						|
            $request->validated()
 | 
						|
        );
 | 
						|
 | 
						|
        return $this->fractal->item($updated)
 | 
						|
            ->transformWith($this->getTransformer(ServerTransformer::class))
 | 
						|
            ->toArray();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Update the build details for a specific server.
 | 
						|
     *
 | 
						|
     * @throws \App\Exceptions\DisplayException
 | 
						|
     * @throws \App\Exceptions\Model\DataValidationException
 | 
						|
     */
 | 
						|
    public function build(UpdateServerBuildConfigurationRequest $request, Server $server): array
 | 
						|
    {
 | 
						|
        $server = $this->buildModificationService->handle($server, $request->validated());
 | 
						|
 | 
						|
        return $this->fractal->item($server)
 | 
						|
            ->transformWith($this->getTransformer(ServerTransformer::class))
 | 
						|
            ->toArray();
 | 
						|
    }
 | 
						|
}
 |