1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-27 20:32:28 +01:00
Pterodactyl-Panel/app/Http/Middleware/Api/Application/AuthenticateUser.php

28 lines
787 B
PHP
Raw Normal View History

2018-01-19 04:36:15 +01:00
<?php
2018-01-20 02:58:57 +01:00
namespace Pterodactyl\Http\Middleware\Api\Application;
2018-01-19 04:36:15 +01:00
use Closure;
use Illuminate\Http\Request;
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
class AuthenticateUser
{
/**
* Authenticate that the currently authenticated user is an administrator
* and should be allowed to proceede through the application API.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle(Request $request, Closure $next)
{
if (is_null($request->user()) || ! $request->user()->root_admin) {
2018-02-24 19:27:41 +01:00
throw new AccessDeniedHttpException('This account does not have permission to access the API.');
2018-01-19 04:36:15 +01:00
}
return $next($request);
}
}