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 * @throws \Illuminate\Contracts\Container\BindingResolutionException */ public function store(StoreApiKeyRequest $request): array { if ($request->user()->tokens->count() >= 10) { 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, $plaintext] = $request->user()->createToken($request->input('description')); return $this->fractal->item($token) ->transformWith($this->getTransformer(PersonalAccessTokenTransformer::class)) ->addMeta([ 'secret_token' => $plaintext, ]) ->toArray(); } /** * Deletes a given API key. */ public function delete(AccountApiRequest $request, string $id): Response { $request->user()->tokens()->where('token_id', $id)->delete(); return $this->returnNoContent(); } }