misc_pterodactyl-panel/app/Http/Controllers/Api/Client/ApiKeyController.php

86 lines
2.8 KiB
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Http\Controllers\Api\Client;
2021-03-05 17:03:12 +00:00
use Illuminate\Http\Response;
use Pterodactyl\Models\ApiKey;
use Pterodactyl\Exceptions\DisplayException;
use Illuminate\Contracts\Encryption\Encrypter;
use Pterodactyl\Services\Api\KeyCreationService;
use Pterodactyl\Repositories\Eloquent\ApiKeyRepository;
use Pterodactyl\Http\Requests\Api\Client\ClientApiRequest;
use Pterodactyl\Transformers\Api\Client\ApiKeyTransformer;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Pterodactyl\Http\Requests\Api\Client\Account\StoreApiKeyRequest;
use Pterodactyl\Transformers\Api\Client\PersonalAccessTokenTransformer;
class ApiKeyController extends ClientApiController
{
2021-03-05 17:03:12 +00:00
private Encrypter $encrypter;
2021-03-05 17:03:12 +00:00
private ApiKeyRepository $repository;
2021-03-05 17:03:12 +00:00
private KeyCreationService $keyCreationService;
/**
* ApiKeyController constructor.
*/
public function __construct(
Encrypter $encrypter,
2021-03-05 17:03:12 +00:00
ApiKeyRepository $repository,
KeyCreationService $keyCreationService
) {
parent::__construct();
$this->encrypter = $encrypter;
$this->repository = $repository;
2021-03-05 17:03:12 +00:00
$this->keyCreationService = $keyCreationService;
}
/**
* Returns all of the API keys that exist for the given client.
*
2021-03-05 17:03:12 +00:00
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
2021-03-05 17:03:12 +00:00
public function index(ClientApiRequest $request): array
{
return $this->fractal->collection($request->user()->tokens)
->transformWith($this->getTransformer(PersonalAccessTokenTransformer::class))
->toArray();
}
/**
* Store a new API key for a user's account.
*
* @throws \Pterodactyl\Exceptions\DisplayException
2021-03-05 17:03:12 +00:00
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
2021-03-05 17:03:12 +00:00
public function store(StoreApiKeyRequest $request): array
{
if ($request->user()->tokens->count() >= 10) {
2021-01-23 20:33:34 +00:00
throw new DisplayException('You have reached the account limit for number of API keys.');
}
// TODO: this should accept an array of different scopes to apply as permissions
// for the token. Right now it allows any account level permission.
$token = $request->user()->createToken($request->input('description'));
return $this->fractal->item($token->accessToken)
->transformWith($this->getTransformer(PersonalAccessTokenTransformer::class))
->addMeta([
'secret_token' => $token->plainTextToken,
])
->toArray();
}
/**
* Deletes a given API key.
*/
2021-03-05 17:03:12 +00:00
public function delete(ClientApiRequest $request, string $identifier): Response
{
$request->user()->tokens()->where('id', $identifier)->delete();
2021-03-05 17:03:12 +00:00
return $this->returnNoContent();
}
}