misc_pterodactyl-panel/app/Http/Controllers/Api/Client/Servers/CommandController.php

55 lines
1.8 KiB
PHP
Raw Normal View History

2018-02-28 04:09:34 +00:00
<?php
namespace Pterodactyl\Http\Controllers\Api\Client\Servers;
use Illuminate\Http\Response;
use Pterodactyl\Models\Server;
use Pterodactyl\Facades\Activity;
2018-02-28 04:09:34 +00:00
use Psr\Http\Message\ResponseInterface;
use GuzzleHttp\Exception\BadResponseException;
use Symfony\Component\HttpKernel\Exception\HttpException;
use Pterodactyl\Repositories\Wings\DaemonCommandRepository;
2018-02-28 04:09:34 +00:00
use Pterodactyl\Http\Controllers\Api\Client\ClientApiController;
use Pterodactyl\Http\Requests\Api\Client\Servers\SendCommandRequest;
use Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException;
class CommandController extends ClientApiController
{
/**
* CommandController constructor.
*/
public function __construct(private DaemonCommandRepository $repository)
2018-02-28 04:09:34 +00:00
{
parent::__construct();
}
/**
* Send a command to a running server.
*
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
*/
public function index(SendCommandRequest $request, Server $server): Response
2018-02-28 04:09:34 +00:00
{
try {
$this->repository->setServer($server)->send($request->input('command'));
} catch (DaemonConnectionException $exception) {
$previous = $exception->getPrevious();
if ($previous instanceof BadResponseException) {
if (
$previous->getResponse() instanceof ResponseInterface
&& $previous->getResponse()->getStatusCode() === Response::HTTP_BAD_GATEWAY
) {
2021-01-23 20:33:34 +00:00
throw new HttpException(Response::HTTP_BAD_GATEWAY, 'Server must be online in order to send commands.', $exception);
2018-02-28 04:09:34 +00:00
}
}
throw $exception;
2018-02-28 04:09:34 +00:00
}
Activity::event('server:console.command')->property('command', $request->input('command'))->log();
2018-02-28 04:09:34 +00:00
return $this->returnNoContent();
}
}