pixelfed/app/Transformer/Api/Mastodon/v1/StatusTransformer.php

63 lines
2.1 KiB
PHP
Raw Normal View History

2019-09-26 07:30:15 +00:00
<?php
namespace App\Transformer\Api\Mastodon\v1;
use App\Status;
use League\Fractal;
use Cache;
2021-07-25 05:16:01 +00:00
use App\Services\MediaService;
use App\Services\ProfileService;
use App\Services\StatusHashtagService;
2019-09-26 07:30:15 +00:00
class StatusTransformer extends Fractal\TransformerAbstract
{
2021-07-25 05:16:01 +00:00
protected $defaultIncludes = [
'mentions',
];
public function transform(Status $status)
{
return [
'id' => (string) $status->id,
'created_at' => $status->created_at->toJSON(),
'in_reply_to_id' => $status->in_reply_to_id ? (string) $status->in_reply_to_id : null,
'in_reply_to_account_id' => $status->in_reply_to_profile_id,
'sensitive' => (bool) $status->is_nsfw,
'spoiler_text' => $status->cw_summary ?? '',
'visibility' => $status->visibility ?? $status->scope,
'language' => 'en',
'uri' => $status->url(),
'url' => $status->url(),
'replies_count' => 0,
'reblogs_count' => $status->reblogs_count ?? 0,
'favourites_count' => $status->likes_count ?? 0,
'reblogged' => $status->shared(),
'favourited' => $status->liked(),
'muted' => false,
'bookmarked' => false,
'pinned' => false,
'content' => $status->rendered ?? $status->caption ?? '',
'reblog' => null,
'application' => [
'name' => 'web',
'website' => null
],
'mentions' => [],
'tags' => [],
'emojis' => [],
'card' => null,
'poll' => null,
'media_attachments' => MediaService::get($status->id),
'account' => ProfileService::get($status->profile_id),
'tags' => StatusHashtagService::statusTags($status->id)
];
}
public function includeMentions(Status $status)
{
$mentions = $status->mentions;
return $this->collection($mentions, new MentionTransformer());
}
}