mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-27 15:16:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			105 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Pterodactyl\Transformers\Api\Application;
 | |
| 
 | |
| use Cake\Chronos\Chronos;
 | |
| use Pterodactyl\Models\Database;
 | |
| use League\Fractal\Resource\Item;
 | |
| use Pterodactyl\Models\DatabaseHost;
 | |
| use Pterodactyl\Services\Acl\Api\AdminAcl;
 | |
| use Illuminate\Contracts\Encryption\Encrypter;
 | |
| 
 | |
| class ServerDatabaseTransformer extends BaseTransformer
 | |
| {
 | |
|     /**
 | |
|      * @var array
 | |
|      */
 | |
|     protected $availableIncludes = ['password', 'host'];
 | |
| 
 | |
|     /**
 | |
|      * @var Encrypter
 | |
|      */
 | |
|     private $encrypter;
 | |
| 
 | |
|     /**
 | |
|      * Perform dependency injection.
 | |
|      *
 | |
|      * @param \Illuminate\Contracts\Encryption\Encrypter $encrypter
 | |
|      */
 | |
|     public function handle(Encrypter $encrypter)
 | |
|     {
 | |
|         $this->encrypter = $encrypter;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Return the resource name for the JSONAPI output.
 | |
|      *
 | |
|      * @return string
 | |
|      */
 | |
|     public function getResourceName(): string
 | |
|     {
 | |
|         return Database::RESOURCE_NAME;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Transform a database model in a representation for the application API.
 | |
|      *
 | |
|      * @param \Pterodactyl\Models\Database $model
 | |
|      * @return array
 | |
|      */
 | |
|     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,
 | |
|             'created_at' => Chronos::createFromFormat(Chronos::DEFAULT_TO_STRING_FORMAT, $model->created_at)
 | |
|                 ->setTimezone(config('app.timezone'))
 | |
|                 ->toIso8601String(),
 | |
|             'updated_at' => Chronos::createFromFormat(Chronos::DEFAULT_TO_STRING_FORMAT, $model->updated_at)
 | |
|                 ->setTimezone(config('app.timezone'))
 | |
|                 ->toIso8601String(),
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Include the database password in the request.
 | |
|      *
 | |
|      * @param \Pterodactyl\Models\Database $model
 | |
|      * @return \League\Fractal\Resource\Item
 | |
|      */
 | |
|     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.
 | |
|      *
 | |
|      * @param \Pterodactyl\Models\Database $model
 | |
|      * @return \League\Fractal\Resource\Item|\League\Fractal\Resource\NullResource
 | |
|      * @throws \Pterodactyl\Exceptions\Transformer\InvalidTransformerLevelException
 | |
|      */
 | |
|     public function includeHost(Database $model)
 | |
|     {
 | |
|         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
 | |
|         );
 | |
|     }
 | |
| }
 | 
