2018-02-28 03:28:43 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Middleware\Api\Client;
|
|
|
|
|
|
|
|
use Closure;
|
2021-08-05 05:20:43 +00:00
|
|
|
use Illuminate\Support\Str;
|
|
|
|
use Illuminate\Routing\Route;
|
|
|
|
use Pterodactyl\Models\Server;
|
2018-02-28 03:28:43 +00:00
|
|
|
use Illuminate\Container\Container;
|
2021-08-05 05:20:43 +00:00
|
|
|
use Illuminate\Database\Query\JoinClause;
|
|
|
|
use Illuminate\Contracts\Routing\Registrar;
|
2018-08-25 21:43:21 +00:00
|
|
|
use Pterodactyl\Contracts\Extensions\HashidsInterface;
|
2021-08-05 05:20:43 +00:00
|
|
|
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
2018-02-28 03:28:43 +00:00
|
|
|
|
2021-08-05 05:20:43 +00:00
|
|
|
class SubstituteClientApiBindings
|
2018-02-28 03:28:43 +00:00
|
|
|
{
|
2021-08-05 05:20:43 +00:00
|
|
|
private Registrar $router;
|
|
|
|
|
|
|
|
public function __construct(Registrar $router)
|
|
|
|
{
|
|
|
|
$this->router = $router;
|
|
|
|
}
|
|
|
|
|
2018-02-28 03:28:43 +00:00
|
|
|
/**
|
2021-08-05 05:20:43 +00:00
|
|
|
* Perform substitution of route parameters for the Client API.
|
2021-01-23 20:33:34 +00:00
|
|
|
*
|
2021-08-05 05:20:43 +00:00
|
|
|
* @param \Illuminate\Http\Request
|
|
|
|
* @param \Closure $next
|
2018-02-28 03:28:43 +00:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle($request, Closure $next)
|
|
|
|
{
|
2021-08-05 05:20:43 +00:00
|
|
|
$this->router->bind('server', function ($value) {
|
|
|
|
return Server::query()->where(Str::length($value) === 8 ? 'uuidShort' : 'uuid', $value)->firstOrFail();
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->router->bind('allocation', function ($value, $route) {
|
|
|
|
return $this->server($route)->allocations()->where('id', $value)->firstOrFail();
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->router->bind('schedule', function ($value, $route) {
|
|
|
|
return $this->server($route)->schedule()->where('id', $value)->firstOrFail();
|
2018-02-28 03:28:43 +00:00
|
|
|
});
|
|
|
|
|
2021-08-05 05:20:43 +00:00
|
|
|
$this->router->bind('database', function ($value, $route) {
|
2020-07-10 03:36:08 +00:00
|
|
|
$id = Container::getInstance()->make(HashidsInterface::class)->decodeFirst($value);
|
2018-08-25 21:43:21 +00:00
|
|
|
|
2021-08-05 05:20:43 +00:00
|
|
|
return $this->server($route)->where('id', $id)->firstOrFail();
|
2018-08-25 21:43:21 +00:00
|
|
|
});
|
|
|
|
|
2021-08-05 05:20:43 +00:00
|
|
|
$this->router->bind('backup', function ($value, $route) {
|
|
|
|
return $this->server($route)->backups()->where('uuid', $value)->firstOrFail();
|
2020-04-05 02:54:59 +00:00
|
|
|
});
|
|
|
|
|
2021-08-05 05:20:43 +00:00
|
|
|
$this->router->bind('user', function ($value, $route) {
|
|
|
|
// TODO: is this actually a valid binding for users on the server?
|
|
|
|
return $this->server($route)->subusers()
|
|
|
|
->join('users', function (JoinClause $join) {
|
|
|
|
$join->on('subusers.user_id', 'users.id')
|
|
|
|
->where('subusers.server_id', 'servers.id');
|
|
|
|
})
|
|
|
|
->where('users.uuid', $value)
|
|
|
|
->firstOrFail();
|
2020-08-20 03:21:12 +00:00
|
|
|
});
|
|
|
|
|
2021-08-05 05:20:43 +00:00
|
|
|
try {
|
|
|
|
/** @var \Illuminate\Routing\Route $route */
|
|
|
|
$this->router->substituteBindings($route = $request->route());
|
|
|
|
} catch (ModelNotFoundException $exception) {
|
|
|
|
if (isset($route) && $route->getMissing()) {
|
|
|
|
$route->getMissing()($request);
|
|
|
|
}
|
|
|
|
|
|
|
|
throw $exception;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $next($request);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Plucks the server model off the route. If no server model is present a
|
|
|
|
* ModelNotFound exception will be thrown.
|
|
|
|
*
|
|
|
|
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException
|
|
|
|
*/
|
|
|
|
private function server(Route $route): Server
|
|
|
|
{
|
|
|
|
$server = $route->parameter('server');
|
|
|
|
if (!$server instanceof Server) {
|
|
|
|
throw (new ModelNotFoundException())->setModel(Server::class, [$route->parameter('server')]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $server;
|
2018-02-28 03:28:43 +00:00
|
|
|
}
|
|
|
|
}
|