misc_pterodactyl-panel/app/Http/Middleware/Api/Client/Server/AuthenticateServerAccess.php

69 lines
2.3 KiB
PHP
Raw Normal View History

2018-08-25 22:07:42 +00:00
<?php
namespace Pterodactyl\Http\Middleware\Api\Client\Server;
use Illuminate\Http\Request;
use Pterodactyl\Models\Server;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Pterodactyl\Exceptions\Http\Server\ServerStateConflictException;
2018-08-25 22:07:42 +00:00
class AuthenticateServerAccess
{
/**
* Routes that this middleware should not apply to if the user is an admin.
*/
protected array $except = [
'api:client:server.ws',
];
2018-08-25 22:07:42 +00:00
/**
* AuthenticateServerAccess constructor.
*/
public function __construct()
2018-08-25 22:07:42 +00:00
{
}
/**
* Authenticate that this server exists and is not suspended or marked as installing.
*/
2022-11-29 17:53:59 +00:00
public function handle(Request $request, \Closure $next): mixed
2018-08-25 22:07:42 +00:00
{
/** @var \Pterodactyl\Models\User $user */
$user = $request->user();
2018-08-25 22:07:42 +00:00
$server = $request->route()->parameter('server');
2021-01-23 20:33:34 +00:00
if (!$server instanceof Server) {
throw new NotFoundHttpException(trans('exceptions.api.resource_not_found'));
2018-08-25 22:07:42 +00:00
}
// At the very least, ensure that the user trying to make this request is the
// server owner, a subuser, or a root admin. We'll leave it up to the controllers
// to authenticate more detailed permissions if needed.
2021-01-23 20:33:34 +00:00
if ($user->id !== $server->owner_id && !$user->root_admin) {
// Check for subuser status.
2021-01-23 20:33:34 +00:00
if (!$server->subusers->contains('user_id', $user->id)) {
throw new NotFoundHttpException(trans('exceptions.api.resource_not_found'));
}
}
try {
$server->validateCurrentState();
} catch (ServerStateConflictException $exception) {
// Still allow users to get information about their server if it is installing or
// being transferred.
if (!$request->routeIs('api:client:server.view')) {
if (($server->isSuspended() || $server->node->isUnderMaintenance()) && !$request->routeIs('api:client:server.resources')) {
throw $exception;
}
if (!$user->root_admin || !$request->routeIs($this->except)) {
throw $exception;
}
}
2018-08-25 22:07:42 +00:00
}
$request->attributes->set('server', $server);
return $next($request);
}
}