mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 03:36:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			84 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Transformers\Api\Application;
 | 
						|
 | 
						|
use Pterodactyl\Models\Database;
 | 
						|
use League\Fractal\Resource\Item;
 | 
						|
use Pterodactyl\Models\DatabaseHost;
 | 
						|
use League\Fractal\Resource\NullResource;
 | 
						|
use Pterodactyl\Services\Acl\Api\AdminAcl;
 | 
						|
use Illuminate\Contracts\Encryption\Encrypter;
 | 
						|
 | 
						|
class ServerDatabaseTransformer extends BaseTransformer
 | 
						|
{
 | 
						|
    protected array $availableIncludes = ['password', 'host'];
 | 
						|
 | 
						|
    private Encrypter $encrypter;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Perform dependency injection.
 | 
						|
     */
 | 
						|
    public function handle(Encrypter $encrypter)
 | 
						|
    {
 | 
						|
        $this->encrypter = $encrypter;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return the resource name for the JSONAPI output.
 | 
						|
     */
 | 
						|
    public function getResourceName(): string
 | 
						|
    {
 | 
						|
        return Database::RESOURCE_NAME;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Transform a database model in a representation for the application API.
 | 
						|
     */
 | 
						|
    public function transform(Database $model): array
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'id' => $model->id,
 | 
						|
            'server' => $model->server_id,
 | 
						|
            'host' => $model->database_host_id,
 | 
						|
            'database' => $model->database,
 | 
						|
            'username' => $model->username,
 | 
						|
            'remote' => $model->remote,
 | 
						|
            'max_connections' => $model->max_connections,
 | 
						|
            'created_at' => $model->created_at->toAtomString(),
 | 
						|
            'updated_at' => $model->updated_at->toAtomString(),
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Include the database password in the request.
 | 
						|
     */
 | 
						|
    public function includePassword(Database $model): Item
 | 
						|
    {
 | 
						|
        return $this->item($model, function (Database $model) {
 | 
						|
            return [
 | 
						|
                'password' => $this->encrypter->decrypt($model->password),
 | 
						|
            ];
 | 
						|
        }, 'database_password');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return the database host relationship for this server database.
 | 
						|
     *
 | 
						|
     * @throws \Pterodactyl\Exceptions\Transformer\InvalidTransformerLevelException
 | 
						|
     */
 | 
						|
    public function includeHost(Database $model): Item|NullResource
 | 
						|
    {
 | 
						|
        if (!$this->authorize(AdminAcl::RESOURCE_DATABASE_HOSTS)) {
 | 
						|
            return $this->null();
 | 
						|
        }
 | 
						|
 | 
						|
        $model->loadMissing('host');
 | 
						|
 | 
						|
        return $this->item(
 | 
						|
            $model->getRelation('host'),
 | 
						|
            $this->makeTransformer(DatabaseHostTransformer::class),
 | 
						|
            DatabaseHost::RESOURCE_NAME
 | 
						|
        );
 | 
						|
    }
 | 
						|
}
 |