2017-01-27 21:34:46 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2017-01-27 21:34:46 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Middleware;
|
|
|
|
|
|
|
|
use Closure;
|
|
|
|
use Pterodactyl\Models\Node;
|
|
|
|
use Illuminate\Contracts\Auth\Guard;
|
|
|
|
|
|
|
|
class DaemonAuthenticate
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The Guard implementation.
|
|
|
|
*
|
2017-03-19 23:36:50 +00:00
|
|
|
* @var \Illuminate\Contracts\Auth\Guard
|
2017-01-27 21:34:46 +00:00
|
|
|
*/
|
|
|
|
protected $auth;
|
|
|
|
|
2017-05-03 00:11:56 +00:00
|
|
|
/**
|
|
|
|
* An array of route names to not apply this middleware to.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $except = [
|
|
|
|
'daemon.configuration',
|
|
|
|
];
|
|
|
|
|
2017-01-27 21:34:46 +00:00
|
|
|
/**
|
|
|
|
* Create a new filter instance.
|
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param \Illuminate\Contracts\Auth\Guard $auth
|
2017-01-27 21:34:46 +00:00
|
|
|
*/
|
|
|
|
public function __construct(Guard $auth)
|
|
|
|
{
|
|
|
|
$this->auth = $auth;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle an incoming request.
|
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @param \Closure $next
|
2017-01-27 21:34:46 +00:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle($request, Closure $next)
|
|
|
|
{
|
2017-05-03 00:11:56 +00:00
|
|
|
if (in_array($request->route()->getName(), $this->except)) {
|
|
|
|
return $next($request);
|
|
|
|
}
|
|
|
|
|
2017-01-27 21:34:46 +00:00
|
|
|
if (! $request->header('X-Access-Node')) {
|
|
|
|
return abort(403);
|
|
|
|
}
|
|
|
|
|
|
|
|
$node = Node::where('daemonSecret', $request->header('X-Access-Node'))->first();
|
|
|
|
if (! $node) {
|
2017-06-29 01:05:50 +00:00
|
|
|
return abort(401);
|
2017-01-27 21:34:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $next($request);
|
|
|
|
}
|
|
|
|
}
|