Files
panel-pelican-dev/app/Http/Middleware/Api/Client/Server/AuthenticateServerAccess.php

69 lines
2.3 KiB
PHP
Raw Normal View History

2018-08-25 15:07:42 -07:00
<?php
2024-03-12 22:39:16 -04:00
namespace App\Http\Middleware\Api\Client\Server;
2018-08-25 15:07:42 -07:00
use Illuminate\Http\Request;
2024-03-12 22:39:16 -04:00
use App\Models\Server;
2018-08-25 15:07:42 -07:00
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
2024-03-12 22:39:16 -04:00
use App\Exceptions\Http\Server\ServerStateConflictException;
2018-08-25 15:07:42 -07:00
class AuthenticateServerAccess
{
/**
* Routes that this middleware should not apply to if the user is an admin.
*
* @var string[]
*/
protected array $except = [
'api:client:server.ws',
];
2018-08-25 15:07:42 -07:00
/**
* AuthenticateServerAccess constructor.
*/
public function __construct() {}
2018-08-25 15:07:42 -07:00
/**
* Authenticate that this server exists and is not suspended or marked as installing.
*/
2023-02-23 12:30:16 -07:00
public function handle(Request $request, \Closure $next): mixed
2018-08-25 15:07:42 -07:00
{
2024-03-12 22:39:16 -04:00
/** @var \App\Models\User $user */
$user = $request->user();
2018-08-25 15:07:42 -07:00
$server = $request->route()->parameter('server');
2021-01-23 12:33:34 -08:00
if (!$server instanceof Server) {
throw new NotFoundHttpException(trans('exceptions.api.resource_not_found'));
2018-08-25 15:07:42 -07:00
}
// At the very least, ensure that the user trying to make this request is the
// server owner, a subuser, or an admin. We'll leave it up to the controllers
// to authenticate more detailed permissions if needed.
if ($user->id !== $server->owner_id && $user->cannot('update server', $server)) {
// Check for subuser status.
2021-01-23 12:33:34 -08: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->cannot('update server', $server) || !$request->routeIs($this->except)) {
throw $exception;
}
}
2018-08-25 15:07:42 -07:00
}
$request->attributes->set('server', $server);
return $next($request);
}
}