2015-12-06 18:58:49 +00:00
|
|
|
<?php
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2018-07-15 04:49:49 +00:00
|
|
|
namespace Pterodactyl\Http\Middleware\Server;
|
2015-12-06 18:58:49 +00:00
|
|
|
|
2016-12-07 22:46:38 +00:00
|
|
|
use Closure;
|
2017-02-02 23:21:36 +00:00
|
|
|
use Illuminate\Http\Request;
|
2015-12-06 18:58:49 +00:00
|
|
|
use Pterodactyl\Models\Server;
|
2017-11-04 17:49:05 +00:00
|
|
|
use Illuminate\Contracts\Routing\ResponseFactory;
|
2017-09-03 21:41:03 +00:00
|
|
|
use Illuminate\Contracts\Config\Repository as ConfigRepository;
|
|
|
|
use Pterodactyl\Contracts\Repository\ServerRepositoryInterface;
|
2017-11-04 17:49:05 +00:00
|
|
|
use Symfony\Component\HttpKernel\Exception\ConflictHttpException;
|
2020-12-17 17:34:26 +00:00
|
|
|
use Pterodactyl\Exceptions\Http\Server\ServerTransferringException;
|
2017-04-02 17:19:39 +00:00
|
|
|
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
2015-12-06 18:58:49 +00:00
|
|
|
|
2017-10-28 02:42:53 +00:00
|
|
|
class AccessingValidServer
|
2015-12-06 18:58:49 +00:00
|
|
|
{
|
2017-04-02 17:19:39 +00:00
|
|
|
/**
|
2017-09-03 02:35:33 +00:00
|
|
|
* @var \Illuminate\Contracts\Config\Repository
|
|
|
|
*/
|
2017-10-30 02:40:34 +00:00
|
|
|
private $config;
|
2017-09-03 02:35:33 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\ServerRepositoryInterface
|
|
|
|
*/
|
2017-10-30 02:40:34 +00:00
|
|
|
private $repository;
|
2017-04-02 17:19:39 +00:00
|
|
|
|
2017-11-04 17:49:05 +00:00
|
|
|
/**
|
|
|
|
* @var \Illuminate\Contracts\Routing\ResponseFactory
|
|
|
|
*/
|
|
|
|
private $response;
|
|
|
|
|
2017-09-03 02:35:33 +00:00
|
|
|
/**
|
2017-10-28 02:42:53 +00:00
|
|
|
* AccessingValidServer constructor.
|
2017-04-02 17:19:39 +00:00
|
|
|
*
|
2019-09-06 04:32:57 +00:00
|
|
|
* @param \Illuminate\Contracts\Config\Repository $config
|
|
|
|
* @param \Illuminate\Contracts\Routing\ResponseFactory $response
|
2017-09-03 02:35:33 +00:00
|
|
|
* @param \Pterodactyl\Contracts\Repository\ServerRepositoryInterface $repository
|
2017-04-02 17:19:39 +00:00
|
|
|
*/
|
2017-09-03 02:35:33 +00:00
|
|
|
public function __construct(
|
|
|
|
ConfigRepository $config,
|
2017-11-04 17:49:05 +00:00
|
|
|
ResponseFactory $response,
|
2018-07-15 04:49:49 +00:00
|
|
|
ServerRepositoryInterface $repository
|
2017-09-03 02:35:33 +00:00
|
|
|
) {
|
|
|
|
$this->config = $config;
|
|
|
|
$this->repository = $repository;
|
2017-11-04 17:49:05 +00:00
|
|
|
$this->response = $response;
|
2017-09-03 02:35:33 +00:00
|
|
|
}
|
2017-04-02 17:19:39 +00:00
|
|
|
|
2015-12-06 18:58:49 +00:00
|
|
|
/**
|
2017-09-03 02:35:33 +00:00
|
|
|
* Determine if a given user has permission to access a server.
|
2015-12-06 18:58:49 +00:00
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param \Illuminate\Http\Request $request
|
2019-09-06 04:32:57 +00:00
|
|
|
* @param \Closure $next
|
2017-10-30 02:40:34 +00:00
|
|
|
* @return \Illuminate\Http\Response|mixed
|
2017-09-03 02:35:33 +00:00
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
2017-09-24 01:45:25 +00:00
|
|
|
* @throws \Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException
|
|
|
|
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
|
2015-12-06 18:58:49 +00:00
|
|
|
*/
|
2017-02-02 23:21:36 +00:00
|
|
|
public function handle(Request $request, Closure $next)
|
2015-12-06 18:58:49 +00:00
|
|
|
{
|
2017-09-03 02:35:33 +00:00
|
|
|
$attributes = $request->route()->parameter('server');
|
|
|
|
$isApiRequest = $request->expectsJson() || $request->is(...$this->config->get('pterodactyl.json_routes', []));
|
|
|
|
$server = $this->repository->getByUuid($attributes instanceof Server ? $attributes->uuid : $attributes);
|
2017-04-02 17:19:39 +00:00
|
|
|
|
2017-09-03 02:35:33 +00:00
|
|
|
if ($server->suspended) {
|
|
|
|
if ($isApiRequest) {
|
2017-11-04 17:49:05 +00:00
|
|
|
throw new AccessDeniedHttpException('Server is suspended and cannot be accessed.');
|
2017-04-02 17:19:39 +00:00
|
|
|
}
|
|
|
|
|
2017-11-04 17:49:05 +00:00
|
|
|
return $this->response->view('errors.suspended', [], 403);
|
2017-09-03 02:35:33 +00:00
|
|
|
}
|
2017-04-02 17:19:39 +00:00
|
|
|
|
2017-10-30 02:40:34 +00:00
|
|
|
// Servers can have install statuses other than 1 or 0, so don't check
|
|
|
|
// for a bool-type operator here.
|
2017-09-03 02:35:33 +00:00
|
|
|
if ($server->installed !== 1) {
|
|
|
|
if ($isApiRequest) {
|
2017-11-04 17:49:05 +00:00
|
|
|
throw new ConflictHttpException('Server is still completing the installation process.');
|
2017-04-02 17:19:39 +00:00
|
|
|
}
|
2017-09-03 02:35:33 +00:00
|
|
|
|
2017-11-04 17:49:05 +00:00
|
|
|
return $this->response->view('errors.installing', [], 409);
|
2017-04-02 17:19:39 +00:00
|
|
|
}
|
|
|
|
|
2020-12-17 17:34:26 +00:00
|
|
|
if (! is_null($server->transfer)) {
|
2020-12-16 16:34:47 +00:00
|
|
|
if ($isApiRequest) {
|
2020-12-24 18:14:10 +00:00
|
|
|
throw new ServerTransferringException;
|
2020-12-16 16:34:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $this->response->view('errors.transferring', [], 409);
|
|
|
|
}
|
|
|
|
|
2017-10-19 03:32:19 +00:00
|
|
|
// Add server to the request attributes. This will replace sessions
|
|
|
|
// as files are updated.
|
|
|
|
$request->attributes->set('server', $server);
|
|
|
|
|
2017-09-03 02:35:33 +00:00
|
|
|
return $next($request);
|
2017-04-02 17:19:39 +00:00
|
|
|
}
|
2015-12-06 18:58:49 +00:00
|
|
|
}
|