mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 04:46:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers\Admin;
 | |
| 
 | |
| use Illuminate\Http\Request;
 | |
| use App\Models\Node;
 | |
| use App\Models\ApiKey;
 | |
| use Illuminate\Http\JsonResponse;
 | |
| use App\Http\Controllers\Controller;
 | |
| use App\Services\Api\KeyCreationService;
 | |
| 
 | |
| class NodeAutoDeployController extends Controller
 | |
| {
 | |
|     /**
 | |
|      * NodeAutoDeployController constructor.
 | |
|      */
 | |
|     public function __construct(
 | |
|         private KeyCreationService $keyCreationService
 | |
|     ) {
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Generates a new API key for the logged-in user with only permission to read
 | |
|      * nodes, and returns that as the deployment key for a node.
 | |
|      *
 | |
|      * @throws \App\Exceptions\Model\DataValidationException
 | |
|      */
 | |
|     public function __invoke(Request $request, Node $node): JsonResponse
 | |
|     {
 | |
|         $keys = $request->user()->apiKeys()
 | |
|             ->where('key_type', ApiKey::TYPE_APPLICATION)
 | |
|             ->get();
 | |
| 
 | |
|         /** @var ApiKey|null $key */
 | |
|         $key = $keys
 | |
|             ->filter(function (ApiKey $key) {
 | |
|                 foreach ($key->getAttributes() as $permission => $value) {
 | |
|                     if ($permission === 'r_nodes' && $value === 1) {
 | |
|                         return true;
 | |
|                     }
 | |
|                 }
 | |
| 
 | |
|                 return false;
 | |
|             })
 | |
|             ->first();
 | |
| 
 | |
|         // We couldn't find a key that exists for this user with only permission for
 | |
|         // reading nodes. Go ahead and create it now.
 | |
|         if (!$key) {
 | |
|             $key = $this->keyCreationService->setKeyType(ApiKey::TYPE_APPLICATION)->handle([
 | |
|                 'user_id' => $request->user()->id,
 | |
|                 'memo' => 'Automatically generated node deployment key.',
 | |
|                 'allowed_ips' => [],
 | |
|             ], ['r_nodes' => 1]);
 | |
|         }
 | |
| 
 | |
|         return new JsonResponse([
 | |
|             'node' => $node->id,
 | |
|             'token' => $key->identifier . $key->token,
 | |
|         ]);
 | |
|     }
 | |
| }
 | 
