misc_pterodactyl-panel/app/Transformers/Api/Client/DatabaseTransformer.php

67 lines
1.8 KiB
PHP
Raw Normal View History

2018-08-22 04:47:01 +00:00
<?php
namespace Pterodactyl\Transformers\Api\Client;
use Pterodactyl\Models\Database;
use League\Fractal\Resource\Item;
use Pterodactyl\Models\Permission;
use League\Fractal\Resource\NullResource;
2022-12-15 00:05:46 +00:00
use Pterodactyl\Transformers\Api\Transformer;
2018-08-22 04:47:01 +00:00
use Illuminate\Contracts\Encryption\Encrypter;
2018-08-25 21:43:21 +00:00
use Pterodactyl\Contracts\Extensions\HashidsInterface;
2018-08-22 04:47:01 +00:00
2022-12-15 00:05:46 +00:00
class DatabaseTransformer extends Transformer
2018-08-22 04:47:01 +00:00
{
protected array $availableIncludes = ['password'];
2018-08-22 04:47:01 +00:00
private Encrypter $encrypter;
private HashidsInterface $hashids;
2018-08-25 21:43:21 +00:00
2018-08-22 04:47:01 +00:00
/**
* Handle dependency injection.
*/
2018-08-25 21:43:21 +00:00
public function handle(Encrypter $encrypter, HashidsInterface $hashids)
2018-08-22 04:47:01 +00:00
{
$this->encrypter = $encrypter;
2018-08-25 21:43:21 +00:00
$this->hashids = $hashids;
2018-08-22 04:47:01 +00:00
}
public function getResourceName(): string
{
return Database::RESOURCE_NAME;
}
public function transform(Database $model): array
{
$model->loadMissing('host');
return [
2018-08-25 21:43:21 +00:00
'id' => $this->hashids->encode($model->id),
2018-08-22 04:47:01 +00:00
'host' => [
2022-12-15 00:05:46 +00:00
'address' => $model->host->host,
'port' => $model->host->port,
2018-08-22 04:47:01 +00:00
],
'name' => $model->database,
'username' => $model->username,
'connections_from' => $model->remote,
'max_connections' => $model->max_connections,
2018-08-22 04:47:01 +00:00
];
}
/**
* Include the database password in the request.
*/
public function includePassword(Database $database): Item|NullResource
2018-08-22 04:47:01 +00:00
{
2022-12-15 00:05:46 +00:00
if ($this->user()->cannot(Permission::ACTION_DATABASE_VIEW_PASSWORD, $database->server)) {
return $this->null();
}
return $this->item($database, function (Database $model) {
2018-08-22 04:47:01 +00:00
return [
'password' => $this->encrypter->decrypt($model->password),
];
}, 'database_password');
}
}