mirror of https://github.com/pixelfed/pixelfed.git
34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Transformer\Api;
|
|
|
|
use App\Profile;
|
|
use League\Fractal;
|
|
|
|
class AccountTransformer extends Fractal\TransformerAbstract
|
|
{
|
|
public function transform(Profile $profile)
|
|
{
|
|
return [
|
|
'id' => $profile->id,
|
|
'username' => $profile->username,
|
|
'acct' => $profile->username,
|
|
'display_name' => $profile->name,
|
|
'locked' => (bool) $profile->is_private,
|
|
'created_at' => $profile->created_at->format('c'),
|
|
'followers_count' => $profile->followerCount(),
|
|
'following_count' => $profile->followingCount(),
|
|
'statuses_count' => $profile->statusCount(),
|
|
'note' => $profile->bio,
|
|
'url' => $profile->url(),
|
|
'avatar' => $profile->avatarUrl(),
|
|
'avatar_static' => $profile->avatarUrl(),
|
|
'header' => null,
|
|
'header_static' => null,
|
|
'moved' => null,
|
|
'fields' => null,
|
|
'bot' => null,
|
|
];
|
|
}
|
|
}
|