2018-01-20 22:03:23 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Controllers\Api\Application\Servers;
|
|
|
|
|
|
|
|
use Pterodactyl\Models\Server;
|
2018-01-21 22:02:03 +00:00
|
|
|
use Pterodactyl\Services\Servers\BuildModificationService;
|
2018-01-20 22:03:23 +00:00
|
|
|
use Pterodactyl\Services\Servers\DetailsModificationService;
|
|
|
|
use Pterodactyl\Transformers\Api\Application\ServerTransformer;
|
|
|
|
use Pterodactyl\Http\Controllers\Api\Application\ApplicationApiController;
|
|
|
|
use Pterodactyl\Http\Requests\Api\Application\Servers\UpdateServerDetailsRequest;
|
2018-01-21 22:02:03 +00:00
|
|
|
use Pterodactyl\Http\Requests\Api\Application\Servers\UpdateServerBuildConfigurationRequest;
|
2018-01-20 22:03:23 +00:00
|
|
|
|
|
|
|
class ServerDetailsController extends ApplicationApiController
|
|
|
|
{
|
2021-03-05 17:03:12 +00:00
|
|
|
private BuildModificationService $buildModificationService;
|
|
|
|
private DetailsModificationService $detailsModificationService;
|
2018-01-20 22:03:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ServerDetailsController constructor.
|
|
|
|
*/
|
2018-01-27 18:38:56 +00:00
|
|
|
public function __construct(
|
|
|
|
BuildModificationService $buildModificationService,
|
|
|
|
DetailsModificationService $detailsModificationService
|
|
|
|
) {
|
2018-01-20 22:03:23 +00:00
|
|
|
parent::__construct();
|
|
|
|
|
2018-01-21 22:02:03 +00:00
|
|
|
$this->buildModificationService = $buildModificationService;
|
|
|
|
$this->detailsModificationService = $detailsModificationService;
|
2018-01-20 22:03:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-21 22:02:03 +00:00
|
|
|
* Update the details for a specific server.
|
|
|
|
*
|
2021-03-05 17:03:12 +00:00
|
|
|
* @throws \Throwable
|
2018-01-20 22:03:23 +00:00
|
|
|
*/
|
2021-01-01 22:55:30 +00:00
|
|
|
public function details(UpdateServerDetailsRequest $request, Server $server): array
|
2018-01-20 22:03:23 +00:00
|
|
|
{
|
2018-01-27 18:38:56 +00:00
|
|
|
$server = $this->detailsModificationService->returnUpdatedModel()->handle(
|
2021-01-23 21:39:23 +00:00
|
|
|
$server,
|
2021-01-23 20:33:34 +00:00
|
|
|
$request->validated()
|
2018-01-27 18:38:56 +00:00
|
|
|
);
|
2018-01-21 22:02:03 +00:00
|
|
|
|
|
|
|
return $this->fractal->item($server)
|
|
|
|
->transformWith($this->getTransformer(ServerTransformer::class))
|
|
|
|
->toArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the build details for a specific server.
|
|
|
|
*
|
2021-03-05 17:03:12 +00:00
|
|
|
* @throws \Throwable
|
2018-01-21 22:02:03 +00:00
|
|
|
*/
|
2019-12-22 21:45:40 +00:00
|
|
|
public function build(UpdateServerBuildConfigurationRequest $request, Server $server): array
|
2018-01-21 22:02:03 +00:00
|
|
|
{
|
2019-12-22 21:45:40 +00:00
|
|
|
$server = $this->buildModificationService->handle($server, $request->validated());
|
2018-01-20 22:03:23 +00:00
|
|
|
|
|
|
|
return $this->fractal->item($server)
|
|
|
|
->transformWith($this->getTransformer(ServerTransformer::class))
|
|
|
|
->toArray();
|
|
|
|
}
|
|
|
|
}
|