pixelfed/app/Transformer/Api/AccountTransformer.php

49 lines
1.4 KiB
PHP
Raw Normal View History

2018-07-12 16:42:17 +00:00
<?php
namespace App\Transformer\Api;
2019-09-02 00:26:54 +00:00
use Auth;
2018-07-12 16:42:17 +00:00
use App\Profile;
use League\Fractal;
2021-05-12 05:25:10 +00:00
use App\Services\PronounService;
2018-07-12 16:42:17 +00:00
class AccountTransformer extends Fractal\TransformerAbstract
{
2019-09-02 00:26:54 +00:00
protected $defaultIncludes = [
2019-09-30 06:55:49 +00:00
// 'relationship',
2019-09-02 00:26:54 +00:00
];
2018-12-31 04:26:37 +00:00
public function transform(Profile $profile)
{
2019-09-21 05:15:35 +00:00
$local = $profile->domain == null;
$is_admin = !$local ? false : $profile->user->is_admin;
$acct = $local ? $profile->username : substr($profile->username, 1);
$username = $local ? $profile->username : explode('@', $acct)[0];
2018-12-31 04:26:37 +00:00
return [
'id' => (string) $profile->id,
2019-09-21 05:15:35 +00:00
'username' => $username,
'acct' => $acct,
2018-12-31 04:26:37 +00:00
'display_name' => $profile->name,
'locked' => (bool) $profile->is_private,
'followers_count' => $profile->followerCount(),
'following_count' => $profile->followingCount(),
'statuses_count' => (int) $profile->statusCount(),
2019-09-21 06:02:09 +00:00
'note' => $profile->bio ?? '',
2018-12-31 04:26:37 +00:00
'url' => $profile->url(),
'avatar' => $profile->avatarUrl(),
2019-06-09 20:13:43 +00:00
'website' => $profile->website,
2019-10-30 00:13:44 +00:00
'local' => (bool) $local,
2019-09-02 00:26:54 +00:00
'is_admin' => (bool) $is_admin,
2020-04-12 03:12:12 +00:00
'created_at' => $profile->created_at->toJSON(),
'header_bg' => $profile->header_bg,
2021-05-12 05:25:10 +00:00
'last_fetched_at' => optional($profile->last_fetched_at)->toJSON(),
'pronouns' => PronounService::get($profile->id)
2018-12-31 04:26:37 +00:00
];
}
2019-09-02 00:26:54 +00:00
protected function includeRelationship(Profile $profile)
{
return $this->item($profile, new RelationshipTransformer());
}
2018-08-28 03:07:36 +00:00
}