mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 14:56:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			119 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			119 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Pterodactyl\Http\Controllers\Admin;
 | |
| 
 | |
| use Illuminate\View\View;
 | |
| use Illuminate\Http\Request;
 | |
| use Illuminate\Http\Response;
 | |
| use Pterodactyl\Models\ApiKey;
 | |
| use Illuminate\Http\RedirectResponse;
 | |
| use Prologue\Alerts\AlertsMessageBag;
 | |
| use Pterodactyl\Services\Acl\Api\AdminAcl;
 | |
| use Pterodactyl\Http\Controllers\Controller;
 | |
| use Pterodactyl\Services\Api\KeyCreationService;
 | |
| use Pterodactyl\Contracts\Repository\ApiKeyRepositoryInterface;
 | |
| use Pterodactyl\Http\Requests\Admin\Api\StoreApplicationApiKeyRequest;
 | |
| 
 | |
| class ApiController extends Controller
 | |
| {
 | |
|     /**
 | |
|      * @var \Prologue\Alerts\AlertsMessageBag
 | |
|      */
 | |
|     private $alert;
 | |
| 
 | |
|     /**
 | |
|      * @var \Pterodactyl\Services\Api\KeyCreationService
 | |
|      */
 | |
|     private $keyCreationService;
 | |
| 
 | |
|     /**
 | |
|      * @var \Pterodactyl\Contracts\Repository\ApiKeyRepositoryInterface
 | |
|      */
 | |
|     private $repository;
 | |
| 
 | |
|     /**
 | |
|      * ApplicationApiController constructor.
 | |
|      *
 | |
|      * @param \Prologue\Alerts\AlertsMessageBag $alert
 | |
|      * @param \Pterodactyl\Contracts\Repository\ApiKeyRepositoryInterface $repository
 | |
|      * @param \Pterodactyl\Services\Api\KeyCreationService $keyCreationService
 | |
|      */
 | |
|     public function __construct(
 | |
|         AlertsMessageBag $alert,
 | |
|         ApiKeyRepositoryInterface $repository,
 | |
|         KeyCreationService $keyCreationService
 | |
|     ) {
 | |
|         $this->alert = $alert;
 | |
|         $this->keyCreationService = $keyCreationService;
 | |
|         $this->repository = $repository;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Render view showing all of a user's application API keys.
 | |
|      *
 | |
|      * @param \Illuminate\Http\Request $request
 | |
|      * @return \Illuminate\View\View
 | |
|      */
 | |
|     public function index(Request $request): View
 | |
|     {
 | |
|         return view('admin.api.index', [
 | |
|             'keys' => $this->repository->getApplicationKeys($request->user()),
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Render view allowing an admin to create a new application API key.
 | |
|      *
 | |
|      * @return \Illuminate\View\View
 | |
|      * @throws \ReflectionException
 | |
|      */
 | |
|     public function create(): View
 | |
|     {
 | |
|         $resources = AdminAcl::getResourceList();
 | |
|         sort($resources);
 | |
| 
 | |
|         return view('admin.api.new', [
 | |
|             'resources' => $resources,
 | |
|             'permissions' => [
 | |
|                 'r' => AdminAcl::READ,
 | |
|                 'rw' => AdminAcl::READ | AdminAcl::WRITE,
 | |
|                 'n' => AdminAcl::NONE,
 | |
|             ],
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Store the new key and redirect the user back to the application key listing.
 | |
|      *
 | |
|      * @param \Pterodactyl\Http\Requests\Admin\Api\StoreApplicationApiKeyRequest $request
 | |
|      * @return \Illuminate\Http\RedirectResponse
 | |
|      *
 | |
|      * @throws \Pterodactyl\Exceptions\Model\DataValidationException
 | |
|      */
 | |
|     public function store(StoreApplicationApiKeyRequest $request): RedirectResponse
 | |
|     {
 | |
|         $this->keyCreationService->setKeyType(ApiKey::TYPE_APPLICATION)->handle([
 | |
|             'memo' => $request->input('memo'),
 | |
|             'user_id' => $request->user()->id,
 | |
|         ], $request->getKeyPermissions());
 | |
| 
 | |
|         $this->alert->success('A new application API key has been generated for your account.')->flash();
 | |
| 
 | |
|         return redirect()->route('admin.api.index');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Delete an application API key from the database.
 | |
|      *
 | |
|      * @param \Illuminate\Http\Request $request
 | |
|      * @param string $identifier
 | |
|      * @return \Illuminate\Http\Response
 | |
|      */
 | |
|     public function delete(Request $request, string $identifier): Response
 | |
|     {
 | |
|         $this->repository->deleteApplicationKey($request->user(), $identifier);
 | |
| 
 | |
|         return response('', 204);
 | |
|     }
 | |
| }
 | 
