Update AccountTransformer

pull/1708/head
Daniel Supernault 2019-09-20 23:15:35 -06:00
rodzic 6fbbe3202e
commit 403163f12f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 10 dodań i 5 usunięć

Wyświetl plik

@ -14,14 +14,17 @@ class AccountTransformer extends Fractal\TransformerAbstract
public function transform(Profile $profile)
{
$is_admin = $profile->domain ? false : $profile->user->is_admin;
$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('@', $profile->username)[0];
return [
'id' => (string) $profile->id,
'username' => $profile->username,
'acct' => $profile->username,
'username' => $username,
'acct' => $acct,
'display_name' => $profile->name,
'locked' => (bool) $profile->is_private,
'created_at' => null,
'created_at' => $profile->created_at->toISOString(),
'followers_count' => $profile->followerCount(),
'following_count' => $profile->followingCount(),
'statuses_count' => (int) $profile->statusCount(),
@ -33,11 +36,13 @@ class AccountTransformer extends Fractal\TransformerAbstract
'header_static' => null,
'header_bg' => $profile->header_bg,
'moved' => null,
'fields' => null,
'fields' => [],
'bot' => null,
'website' => $profile->website,
'software' => 'pixelfed',
'is_admin' => (bool) $is_admin,
'last_status_at' => null,
'emojis' => [],
];
}