mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 06:56:52 +01:00 
			
		
		
		
	 1900c04b71
			
		
	
	
		1900c04b71
		
			
		
	
	
	
	
		
			
			Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com> Co-authored-by: Boy132 <Boy132@users.noreply.github.com> Co-authored-by: Lance Pioch <git@lance.sh>
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Services\Api;
 | |
| 
 | |
| use App\Exceptions\Model\DataValidationException;
 | |
| use App\Models\ApiKey;
 | |
| use Illuminate\Support\Str;
 | |
| 
 | |
| class KeyCreationService
 | |
| {
 | |
|     private int $keyType = ApiKey::TYPE_NONE;
 | |
| 
 | |
|     /**
 | |
|      * Set the type of key that should be created. By default, an orphaned key will be
 | |
|      * created. These keys cannot be used for anything, and will not render in the UI.
 | |
|      */
 | |
|     public function setKeyType(int $type): self
 | |
|     {
 | |
|         $this->keyType = $type;
 | |
| 
 | |
|         return $this;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Create a new API key for the Panel using the permissions passed in the data request.
 | |
|      * This will automatically generate an identifier and an encrypted token that are
 | |
|      * stored in the database.
 | |
|      *
 | |
|      * @param  array<mixed>  $data
 | |
|      *
 | |
|      * @throws DataValidationException
 | |
|      */
 | |
|     public function handle(array $data): ApiKey
 | |
|     {
 | |
|         $data = array_merge($data, [
 | |
|             'key_type' => $this->keyType,
 | |
|             'identifier' => ApiKey::generateTokenIdentifier($this->keyType),
 | |
|             'token' => Str::random(ApiKey::KEY_LENGTH),
 | |
|         ]);
 | |
| 
 | |
|         if ($this->keyType !== ApiKey::TYPE_APPLICATION) {
 | |
|             unset($data['permissions']);
 | |
|         }
 | |
| 
 | |
|         return ApiKey::query()->forceCreate($data);
 | |
|     }
 | |
| }
 |