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

73 lines
1.9 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 Pterodactyl\Models\Permission;
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
class DatabaseTransformer extends BaseClientTransformer
{
protected $availableIncludes = ['password'];
/**
* @var \Illuminate\Contracts\Encryption\Encrypter
*/
private $encrypter;
2018-08-25 21:43:21 +00:00
/**
* @var \Pterodactyl\Contracts\Extensions\HashidsInterface
*/
private $hashids;
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' => [
'address' => $model->getRelation('host')->host,
'port' => $model->getRelation('host')->port,
],
'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.
*
* @return \League\Fractal\Resource\Item|\League\Fractal\Resource\NullResource
2018-08-22 04:47:01 +00:00
*/
2020-12-06 22:17:54 +00:00
public function includePassword(Database $database)
2018-08-22 04:47:01 +00:00
{
2021-01-23 20:33:34 +00:00
if (!$this->getUser()->can(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');
}
}