cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
61 lines
1.7 KiB
PHP
61 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Controllers\Api\Application\Servers;
|
|
|
|
use Illuminate\Http\Response;
|
|
use Pterodactyl\Models\Server;
|
|
use Pterodactyl\Services\Servers\SuspensionService;
|
|
use Pterodactyl\Services\Servers\ReinstallServerService;
|
|
use Pterodactyl\Http\Requests\Api\Application\Servers\ServerWriteRequest;
|
|
use Pterodactyl\Http\Controllers\Api\Application\ApplicationApiController;
|
|
|
|
class ServerManagementController extends ApplicationApiController
|
|
{
|
|
/**
|
|
* ServerManagementController constructor.
|
|
*/
|
|
public function __construct(
|
|
private ReinstallServerService $reinstallServerService,
|
|
private SuspensionService $suspensionService
|
|
) {
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Suspend a server on the Panel.
|
|
*
|
|
* @throws \Throwable
|
|
*/
|
|
public function suspend(ServerWriteRequest $request, Server $server): Response
|
|
{
|
|
$this->suspensionService->toggle($server);
|
|
|
|
return $this->returnNoContent();
|
|
}
|
|
|
|
/**
|
|
* Unsuspend a server on the Panel.
|
|
*
|
|
* @throws \Throwable
|
|
*/
|
|
public function unsuspend(ServerWriteRequest $request, Server $server): Response
|
|
{
|
|
$this->suspensionService->toggle($server, SuspensionService::ACTION_UNSUSPEND);
|
|
|
|
return $this->returnNoContent();
|
|
}
|
|
|
|
/**
|
|
* Mark a server as needing to be reinstalled.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\DisplayException
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
*/
|
|
public function reinstall(ServerWriteRequest $request, Server $server): Response
|
|
{
|
|
$this->reinstallServerService->handle($server);
|
|
|
|
return $this->returnNoContent();
|
|
}
|
|
}
|