2019-12-28 20:03:19 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Transformers\Api\Client;
|
|
|
|
|
|
|
|
use Pterodactyl\Models\User;
|
2022-12-15 00:05:46 +00:00
|
|
|
use Pterodactyl\Transformers\Api\Transformer;
|
2019-12-28 20:03:19 +00:00
|
|
|
|
2022-12-15 00:05:46 +00:00
|
|
|
class UserTransformer extends Transformer
|
2019-12-28 20:03:19 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Return the resource name for the JSONAPI output.
|
|
|
|
*/
|
|
|
|
public function getResourceName(): string
|
|
|
|
{
|
|
|
|
return User::RESOURCE_NAME;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Transforms a User model into a representation that can be shown to regular
|
|
|
|
* users of the API.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function transform(User $model): array
|
2019-12-28 20:03:19 +00:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'uuid' => $model->uuid,
|
|
|
|
'username' => $model->username,
|
|
|
|
'email' => $model->email,
|
2022-12-15 19:26:34 +00:00
|
|
|
'image' => $model->avatar_url,
|
2019-12-28 20:03:19 +00:00
|
|
|
'2fa_enabled' => $model->use_totp,
|
2022-12-15 00:05:46 +00:00
|
|
|
'created_at' => self::formatTimestamp($model->created_at),
|
2019-12-28 20:03:19 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|