2017-11-19 19:32:17 +00:00
|
|
|
<?php
|
|
|
|
|
2018-02-25 21:30:56 +00:00
|
|
|
namespace Pterodactyl\Http\Middleware\Api;
|
2017-11-19 19:32:17 +00:00
|
|
|
|
|
|
|
use Closure;
|
2018-05-28 20:23:40 +00:00
|
|
|
use Lcobucci\JWT\Parser;
|
2018-01-14 19:30:55 +00:00
|
|
|
use Cake\Chronos\Chronos;
|
2017-11-19 19:32:17 +00:00
|
|
|
use Illuminate\Http\Request;
|
2018-01-14 18:06:15 +00:00
|
|
|
use Pterodactyl\Models\ApiKey;
|
2017-11-19 20:05:13 +00:00
|
|
|
use Illuminate\Auth\AuthManager;
|
2018-01-13 22:06:19 +00:00
|
|
|
use Illuminate\Contracts\Encryption\Encrypter;
|
2018-05-28 21:59:48 +00:00
|
|
|
use Pterodactyl\Traits\Helpers\ProvidesJWTServices;
|
2017-11-19 20:05:13 +00:00
|
|
|
use Symfony\Component\HttpKernel\Exception\HttpException;
|
|
|
|
use Pterodactyl\Exceptions\Repository\RecordNotFoundException;
|
2017-11-19 19:32:17 +00:00
|
|
|
use Pterodactyl\Contracts\Repository\ApiKeyRepositoryInterface;
|
2017-11-19 20:05:13 +00:00
|
|
|
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
2017-11-19 19:32:17 +00:00
|
|
|
|
|
|
|
class AuthenticateKey
|
|
|
|
{
|
2018-05-28 21:59:48 +00:00
|
|
|
use ProvidesJWTServices;
|
|
|
|
|
2017-11-19 20:05:13 +00:00
|
|
|
/**
|
|
|
|
* @var \Illuminate\Auth\AuthManager
|
|
|
|
*/
|
|
|
|
private $auth;
|
|
|
|
|
2018-01-13 22:06:19 +00:00
|
|
|
/**
|
|
|
|
* @var \Illuminate\Contracts\Encryption\Encrypter
|
|
|
|
*/
|
|
|
|
private $encrypter;
|
|
|
|
|
2017-11-19 19:32:17 +00:00
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\ApiKeyRepositoryInterface
|
|
|
|
*/
|
|
|
|
private $repository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AuthenticateKey constructor.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Contracts\Repository\ApiKeyRepositoryInterface $repository
|
2017-11-19 20:05:13 +00:00
|
|
|
* @param \Illuminate\Auth\AuthManager $auth
|
2018-01-13 22:06:19 +00:00
|
|
|
* @param \Illuminate\Contracts\Encryption\Encrypter $encrypter
|
2017-11-19 19:32:17 +00:00
|
|
|
*/
|
2018-01-13 22:06:19 +00:00
|
|
|
public function __construct(ApiKeyRepositoryInterface $repository, AuthManager $auth, Encrypter $encrypter)
|
|
|
|
{
|
2017-11-19 20:05:13 +00:00
|
|
|
$this->auth = $auth;
|
2018-01-13 22:06:19 +00:00
|
|
|
$this->encrypter = $encrypter;
|
2017-11-19 19:32:17 +00:00
|
|
|
$this->repository = $repository;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle an API request by verifying that the provided API key
|
2018-01-13 22:06:19 +00:00
|
|
|
* is in a valid format and exists in the database.
|
2017-11-19 19:32:17 +00:00
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @param \Closure $next
|
2018-02-25 21:30:56 +00:00
|
|
|
* @param int $keyType
|
2017-11-19 20:05:13 +00:00
|
|
|
* @return mixed
|
2017-11-19 20:34:55 +00:00
|
|
|
*
|
2018-01-14 19:30:55 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
2017-11-19 19:32:17 +00:00
|
|
|
*/
|
2018-02-25 21:30:56 +00:00
|
|
|
public function handle(Request $request, Closure $next, int $keyType)
|
2017-11-19 19:32:17 +00:00
|
|
|
{
|
2017-11-19 20:05:13 +00:00
|
|
|
if (is_null($request->bearerToken())) {
|
2018-06-07 05:49:44 +00:00
|
|
|
throw new HttpException(401, null, null, ['WWW-Authenticate' => 'Bearer']);
|
2017-11-19 20:05:13 +00:00
|
|
|
}
|
|
|
|
|
2018-06-07 05:49:44 +00:00
|
|
|
$raw = $request->bearerToken();
|
2018-05-28 19:48:42 +00:00
|
|
|
|
2018-06-07 05:49:44 +00:00
|
|
|
// This is an internal JWT, treat it differently to get the correct user before passing it along.
|
|
|
|
if (strlen($raw) > ApiKey::IDENTIFIER_LENGTH + ApiKey::KEY_LENGTH) {
|
|
|
|
$model = $this->authenticateJWT($raw);
|
|
|
|
} else {
|
2018-05-28 21:59:48 +00:00
|
|
|
$model = $this->authenticateApiKey($raw, $keyType);
|
|
|
|
}
|
2018-05-28 20:23:40 +00:00
|
|
|
|
2018-06-07 05:49:44 +00:00
|
|
|
$this->auth->guard()->loginUsingId($model->user_id);
|
2018-05-28 21:59:48 +00:00
|
|
|
$request->attributes->set('api_key', $model);
|
2018-05-28 20:23:40 +00:00
|
|
|
|
2018-05-28 21:59:48 +00:00
|
|
|
return $next($request);
|
|
|
|
}
|
2018-05-28 20:23:40 +00:00
|
|
|
|
2018-05-28 21:59:48 +00:00
|
|
|
/**
|
|
|
|
* Authenticate an API request using a JWT rather than an API key.
|
|
|
|
*
|
|
|
|
* @param string $token
|
|
|
|
* @return \Pterodactyl\Models\ApiKey
|
|
|
|
*/
|
|
|
|
protected function authenticateJWT(string $token): ApiKey
|
|
|
|
{
|
|
|
|
$token = (new Parser)->parse($token);
|
|
|
|
|
|
|
|
// If the key cannot be verified throw an exception to indicate that a bad
|
|
|
|
// authorization header was provided.
|
|
|
|
if (! $token->verify($this->getJWTSigner(), $this->getJWTSigningKey())) {
|
|
|
|
throw new HttpException(401, null, null, ['WWW-Authenticate' => 'Bearer']);
|
2018-05-28 20:23:40 +00:00
|
|
|
}
|
|
|
|
|
2018-06-07 05:49:44 +00:00
|
|
|
// Run through the token validation and throw an exception if the token is not valid.
|
2018-06-16 21:05:39 +00:00
|
|
|
//
|
|
|
|
// The issued_at time is used for verification in order to allow rapid changing of session
|
|
|
|
// length on the Panel without having to wait on existing tokens to first expire.
|
|
|
|
$now = Chronos::now('utc');
|
2018-06-07 05:49:44 +00:00
|
|
|
if (
|
2018-06-16 21:05:39 +00:00
|
|
|
Chronos::createFromTimestampUTC($token->getClaim('nbf'))->gt($now)
|
2018-06-07 05:49:44 +00:00
|
|
|
|| $token->getClaim('iss') !== 'Pterodactyl Panel'
|
|
|
|
|| $token->getClaim('aud') !== config('app.url')
|
2018-06-16 21:05:39 +00:00
|
|
|
|| Chronos::createFromTimestampUTC($token->getClaim('iat'))->addMinutes(config('jwt.lifetime'))->lte($now)
|
2018-06-07 05:49:44 +00:00
|
|
|
) {
|
2018-06-16 21:05:39 +00:00
|
|
|
throw new AccessDeniedHttpException('The authentication parameters provided are not valid for accessing this resource.');
|
2018-06-07 05:49:44 +00:00
|
|
|
}
|
|
|
|
|
2018-05-28 21:59:48 +00:00
|
|
|
return (new ApiKey)->forceFill([
|
|
|
|
'user_id' => object_get($token->getClaim('user'), 'id', 0),
|
|
|
|
'key_type' => ApiKey::TYPE_ACCOUNT,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Authenticate an API key.
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @param int $keyType
|
|
|
|
* @return \Pterodactyl\Models\ApiKey
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
|
|
*/
|
|
|
|
protected function authenticateApiKey(string $key, int $keyType): ApiKey
|
|
|
|
{
|
|
|
|
$identifier = substr($key, 0, ApiKey::IDENTIFIER_LENGTH);
|
|
|
|
$token = substr($key, ApiKey::IDENTIFIER_LENGTH);
|
2018-01-13 22:06:19 +00:00
|
|
|
|
2017-11-19 20:05:13 +00:00
|
|
|
try {
|
2018-01-14 19:30:55 +00:00
|
|
|
$model = $this->repository->findFirstWhere([
|
|
|
|
['identifier', '=', $identifier],
|
2018-02-25 21:30:56 +00:00
|
|
|
['key_type', '=', $keyType],
|
2018-01-14 19:30:55 +00:00
|
|
|
]);
|
2017-11-19 20:05:13 +00:00
|
|
|
} catch (RecordNotFoundException $exception) {
|
|
|
|
throw new AccessDeniedHttpException;
|
|
|
|
}
|
|
|
|
|
2018-01-13 22:06:19 +00:00
|
|
|
if (! hash_equals($this->encrypter->decrypt($model->token), $token)) {
|
|
|
|
throw new AccessDeniedHttpException;
|
|
|
|
}
|
|
|
|
|
2018-01-14 19:30:55 +00:00
|
|
|
$this->repository->withoutFreshModel()->update($model->id, ['last_used_at' => Chronos::now()]);
|
2017-11-19 20:05:13 +00:00
|
|
|
|
2018-05-28 21:59:48 +00:00
|
|
|
return $model;
|
2017-11-19 19:32:17 +00:00
|
|
|
}
|
|
|
|
}
|