2020-03-23 01:15:38 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Controllers\Api\Client;
|
|
|
|
|
2021-03-05 17:03:12 +00:00
|
|
|
use Illuminate\Http\Response;
|
2020-03-23 01:15:38 +00:00
|
|
|
use Pterodactyl\Exceptions\DisplayException;
|
|
|
|
use Pterodactyl\Http\Requests\Api\Client\ClientApiRequest;
|
2021-08-05 04:36:57 +00:00
|
|
|
use Pterodactyl\Http\Requests\Api\Client\AccountApiRequest;
|
2020-03-23 01:15:38 +00:00
|
|
|
use Pterodactyl\Http\Requests\Api\Client\Account\StoreApiKeyRequest;
|
2021-07-28 04:23:11 +00:00
|
|
|
use Pterodactyl\Transformers\Api\Client\PersonalAccessTokenTransformer;
|
2020-03-23 01:15:38 +00:00
|
|
|
|
|
|
|
class ApiKeyController extends ClientApiController
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* 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
|
2020-03-23 01:15:38 +00:00
|
|
|
*/
|
2021-08-05 04:36:57 +00:00
|
|
|
public function index(AccountApiRequest $request): array
|
2020-03-23 01:15:38 +00:00
|
|
|
{
|
2021-07-28 04:23:11 +00:00
|
|
|
return $this->fractal->collection($request->user()->tokens)
|
2021-08-07 21:32:40 +00:00
|
|
|
->transformWith(PersonalAccessTokenTransformer::class)
|
2020-03-23 01:15:38 +00:00
|
|
|
->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
|
2020-03-23 01:15:38 +00:00
|
|
|
*/
|
2021-03-05 17:03:12 +00:00
|
|
|
public function store(StoreApiKeyRequest $request): array
|
2020-03-23 01:15:38 +00:00
|
|
|
{
|
2021-07-28 04:23:11 +00:00
|
|
|
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.');
|
2020-03-23 01:15:38 +00:00
|
|
|
}
|
|
|
|
|
2021-07-28 04:23:11 +00:00
|
|
|
// TODO: this should accept an array of different scopes to apply as permissions
|
|
|
|
// for the token. Right now it allows any account level permission.
|
2021-07-29 03:53:54 +00:00
|
|
|
[$token, $plaintext] = $request->user()->createToken($request->input('description'));
|
2020-03-23 01:15:38 +00:00
|
|
|
|
2021-07-29 03:53:54 +00:00
|
|
|
return $this->fractal->item($token)
|
2021-08-07 21:32:40 +00:00
|
|
|
->transformWith(PersonalAccessTokenTransformer::class)
|
2020-03-23 01:15:38 +00:00
|
|
|
->addMeta([
|
2021-07-29 03:53:54 +00:00
|
|
|
'secret_token' => $plaintext,
|
2020-03-23 01:15:38 +00:00
|
|
|
])
|
|
|
|
->toArray();
|
|
|
|
}
|
|
|
|
|
2020-03-23 02:10:49 +00:00
|
|
|
/**
|
|
|
|
* Deletes a given API key.
|
|
|
|
*/
|
2021-08-05 04:36:57 +00:00
|
|
|
public function delete(AccountApiRequest $request, string $id): Response
|
2020-03-23 01:15:38 +00:00
|
|
|
{
|
2021-07-29 03:53:54 +00:00
|
|
|
$request->user()->tokens()->where('token_id', $id)->delete();
|
2020-03-23 02:10:49 +00:00
|
|
|
|
2021-03-05 17:03:12 +00:00
|
|
|
return $this->returnNoContent();
|
2020-03-23 01:15:38 +00:00
|
|
|
}
|
|
|
|
}
|