misc_pterodactyl-panel/app/Http/Middleware/Server/AccessingValidServer.php

104 lines
3.5 KiB
PHP
Raw Normal View History

<?php
2016-12-07 22:46:38 +00:00
namespace Pterodactyl\Http\Middleware;
2016-12-07 22:46:38 +00:00
use Closure;
use Illuminate\Http\Request;
use Pterodactyl\Models\Server;
2017-09-03 21:41:03 +00:00
use Illuminate\Contracts\Session\Session;
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;
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
class AccessingValidServer
{
/**
* @var \Illuminate\Contracts\Config\Repository
*/
2017-10-30 02:40:34 +00:00
private $config;
/**
* @var \Pterodactyl\Contracts\Repository\ServerRepositoryInterface
*/
2017-10-30 02:40:34 +00:00
private $repository;
2017-11-04 17:49:05 +00:00
/**
* @var \Illuminate\Contracts\Routing\ResponseFactory
*/
private $response;
/**
* @var \Illuminate\Contracts\Session\Session
*/
2017-10-30 02:40:34 +00:00
private $session;
/**
* AccessingValidServer constructor.
*
* @param \Illuminate\Contracts\Config\Repository $config
2017-11-04 17:49:05 +00:00
* @param \Illuminate\Contracts\Routing\ResponseFactory $response
* @param \Pterodactyl\Contracts\Repository\ServerRepositoryInterface $repository
* @param \Illuminate\Contracts\Session\Session $session
*/
public function __construct(
ConfigRepository $config,
2017-11-04 17:49:05 +00:00
ResponseFactory $response,
ServerRepositoryInterface $repository,
Session $session
) {
$this->config = $config;
$this->repository = $repository;
2017-11-04 17:49:05 +00:00
$this->response = $response;
$this->session = $session;
}
/**
* Determine if a given user has permission to access a server.
*
2017-08-22 03:10:48 +00:00
* @param \Illuminate\Http\Request $request
* @param \Closure $next
2017-10-30 02:40:34 +00:00
* @return \Illuminate\Http\Response|mixed
*
* @throws \Illuminate\Auth\AuthenticationException
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
* @throws \Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
*/
public function handle(Request $request, Closure $next)
{
$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);
if ($server->suspended) {
if ($isApiRequest) {
2017-11-04 17:49:05 +00:00
throw new AccessDeniedHttpException('Server is suspended and cannot be accessed.');
}
2017-11-04 17:49:05 +00:00
return $this->response->view('errors.suspended', [], 403);
}
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.
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-11-04 17:49:05 +00:00
return $this->response->view('errors.installing', [], 409);
}
// Store the server in the session.
// @todo remove from session. use request attributes.
$this->session->now('server_data.model', $server);
// Add server to the request attributes. This will replace sessions
// as files are updated.
$request->attributes->set('server', $server);
return $next($request);
}
}