mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 04:26:51 +01:00 
			
		
		
		
	Main difference is permissions, cleaner UI for normal users, and account keys use permissions assigned to servers and subusers while application keys use R/W ACLs stored in the key table.
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Console\Commands\Migration;
 | 
						|
 | 
						|
use Pterodactyl\Models\ApiKey;
 | 
						|
use Illuminate\Console\Command;
 | 
						|
use Pterodactyl\Contracts\Repository\ApiKeyRepositoryInterface;
 | 
						|
 | 
						|
class CleanOrphanedApiKeysCommand extends Command
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var \Pterodactyl\Contracts\Repository\ApiKeyRepositoryInterface
 | 
						|
     */
 | 
						|
    private $repository;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var string
 | 
						|
     */
 | 
						|
    protected $signature = 'p:migration:clean-orphaned-keys';
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var string
 | 
						|
     */
 | 
						|
    protected $description = 'Cleans API keys from the database that are not assigned a specific role.';
 | 
						|
 | 
						|
    /**
 | 
						|
     * CleanOrphanedApiKeysCommand constructor.
 | 
						|
     *
 | 
						|
     * @param \Pterodactyl\Contracts\Repository\ApiKeyRepositoryInterface $repository
 | 
						|
     */
 | 
						|
    public function __construct(ApiKeyRepositoryInterface $repository)
 | 
						|
    {
 | 
						|
        parent::__construct();
 | 
						|
 | 
						|
        $this->repository = $repository;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Delete all orphaned API keys from the database when upgrading from 0.6 to 0.7.
 | 
						|
     *
 | 
						|
     * @return null|void
 | 
						|
     */
 | 
						|
    public function handle()
 | 
						|
    {
 | 
						|
        $count = $this->repository->findCountWhere([['key_type', '=', ApiKey::TYPE_NONE]]);
 | 
						|
        $continue = $this->confirm(
 | 
						|
            'This action will remove ' . $count . ' keys from the database. Are you sure you wish to continue?', false
 | 
						|
        );
 | 
						|
 | 
						|
        if (! $continue) {
 | 
						|
            return null;
 | 
						|
        }
 | 
						|
 | 
						|
        $this->info('Deleting keys...');
 | 
						|
        $this->repository->deleteWhere([['key_type', '=', ApiKey::TYPE_NONE]]);
 | 
						|
        $this->info('Keys were successfully deleted.');
 | 
						|
    }
 | 
						|
}
 |