mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 15:26:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			118 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			118 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Http\Controllers\Api\Client;
 | 
						|
 | 
						|
use Pterodactyl\Models\ApiKey;
 | 
						|
use Illuminate\Http\JsonResponse;
 | 
						|
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;
 | 
						|
 | 
						|
class ApiKeyController extends ClientApiController
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var \Pterodactyl\Services\Api\KeyCreationService
 | 
						|
     */
 | 
						|
    private $keyCreationService;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var \Illuminate\Contracts\Encryption\Encrypter
 | 
						|
     */
 | 
						|
    private $encrypter;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var \Pterodactyl\Repositories\Eloquent\ApiKeyRepository
 | 
						|
     */
 | 
						|
    private $repository;
 | 
						|
 | 
						|
    /**
 | 
						|
     * ApiKeyController constructor.
 | 
						|
     *
 | 
						|
     * @param \Illuminate\Contracts\Encryption\Encrypter $encrypter
 | 
						|
     * @param \Pterodactyl\Services\Api\KeyCreationService $keyCreationService
 | 
						|
     * @param \Pterodactyl\Repositories\Eloquent\ApiKeyRepository $repository
 | 
						|
     */
 | 
						|
    public function __construct(
 | 
						|
        Encrypter $encrypter,
 | 
						|
        KeyCreationService $keyCreationService,
 | 
						|
        ApiKeyRepository $repository
 | 
						|
    ) {
 | 
						|
        parent::__construct();
 | 
						|
 | 
						|
        $this->encrypter = $encrypter;
 | 
						|
        $this->keyCreationService = $keyCreationService;
 | 
						|
        $this->repository = $repository;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns all of the API keys that exist for the given client.
 | 
						|
     *
 | 
						|
     * @param \Pterodactyl\Http\Requests\Api\Client\ClientApiRequest $request
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function index(ClientApiRequest $request)
 | 
						|
    {
 | 
						|
        return $this->fractal->collection($request->user()->apiKeys)
 | 
						|
            ->transformWith($this->getTransformer(ApiKeyTransformer::class))
 | 
						|
            ->toArray();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Store a new API key for a user's account.
 | 
						|
     *
 | 
						|
     * @param \Pterodactyl\Http\Requests\Api\Client\Account\StoreApiKeyRequest $request
 | 
						|
     * @return array
 | 
						|
     *
 | 
						|
     * @throws \Pterodactyl\Exceptions\DisplayException
 | 
						|
     * @throws \Pterodactyl\Exceptions\Model\DataValidationException
 | 
						|
     */
 | 
						|
    public function store(StoreApiKeyRequest $request)
 | 
						|
    {
 | 
						|
        if ($request->user()->apiKeys->count() >= 5) {
 | 
						|
            throw new DisplayException(
 | 
						|
                'You have reached the account limit for number of API keys.'
 | 
						|
            );
 | 
						|
        }
 | 
						|
 | 
						|
        $key = $this->keyCreationService->setKeyType(ApiKey::TYPE_ACCOUNT)->handle([
 | 
						|
            'user_id' => $request->user()->id,
 | 
						|
            'memo' => $request->input('description'),
 | 
						|
            'allowed_ips' => $request->input('allowed_ips') ?? [],
 | 
						|
        ]);
 | 
						|
 | 
						|
        return $this->fractal->item($key)
 | 
						|
            ->transformWith($this->getTransformer(ApiKeyTransformer::class))
 | 
						|
            ->addMeta([
 | 
						|
                'secret_token' => $this->encrypter->decrypt($key->token),
 | 
						|
            ])
 | 
						|
            ->toArray();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Deletes a given API key.
 | 
						|
     *
 | 
						|
     * @param \Pterodactyl\Http\Requests\Api\Client\ClientApiRequest $request
 | 
						|
     * @param string $identifier
 | 
						|
     * @return \Illuminate\Http\JsonResponse
 | 
						|
     */
 | 
						|
    public function delete(ClientApiRequest $request, string $identifier)
 | 
						|
    {
 | 
						|
        $response = $this->repository->deleteWhere([
 | 
						|
            'key_type' => ApiKey::TYPE_ACCOUNT,
 | 
						|
            'user_id' => $request->user()->id,
 | 
						|
            'identifier' => $identifier,
 | 
						|
        ]);
 | 
						|
 | 
						|
        if (! $response) {
 | 
						|
            throw new NotFoundHttpException;
 | 
						|
        }
 | 
						|
 | 
						|
        return JsonResponse::create([], JsonResponse::HTTP_NO_CONTENT);
 | 
						|
    }
 | 
						|
}
 |