1
0
Fork 0
pixelfed/app/Transformer/Api/StatusTransformer.php

76 lines
2.5 KiB
PHP
Raw Normal View History

2018-07-12 16:42:17 +00:00
<?php
namespace App\Transformer\Api;
use App\Status;
use League\Fractal;
class StatusTransformer extends Fractal\TransformerAbstract
{
protected $defaultIncludes = [
'account',
'mentions',
'media_attachments',
2018-08-28 03:07:36 +00:00
'tags',
2018-07-12 16:42:17 +00:00
];
public function transform(Status $status)
{
return [
'id' => (string) $status->id,
2018-12-02 07:42:34 +00:00
'uri' => $status->url(),
'url' => $status->url(),
'in_reply_to_id' => $status->in_reply_to_id,
'in_reply_to_account_id' => $status->in_reply_to_profile_id,
'reblog' => $status->reblog_of_id || $status->in_reply_to_id ? $this->transform($status->parent()) : null,
2018-12-07 02:02:24 +00:00
'content' => $status->rendered ?? $status->caption,
2018-12-02 07:42:34 +00:00
'created_at' => $status->created_at->format('c'),
'emojis' => [],
'reblogs_count' => $status->shares()->count(),
'favourites_count' => $status->likes()->count(),
'reblogged' => $status->shared(),
'favourited' => $status->liked(),
'muted' => null,
'sensitive' => (bool) $status->is_nsfw,
'spoiler_text' => $status->cw_summary,
'visibility' => $status->visibility,
'application' => [
'name' => 'web',
'website' => null
],
'language' => null,
'pinned' => null,
2018-08-28 03:07:36 +00:00
'pf_type' => $status->type ?? $status->setType(),
2018-07-12 16:42:17 +00:00
];
}
public function includeAccount(Status $status)
{
$account = $status->profile;
2018-08-28 03:07:36 +00:00
return $this->item($account, new AccountTransformer());
2018-07-12 16:42:17 +00:00
}
public function includeMentions(Status $status)
{
$mentions = $status->mentions;
2018-08-28 03:07:36 +00:00
return $this->collection($mentions, new MentionTransformer());
2018-07-12 16:42:17 +00:00
}
public function includeMediaAttachments(Status $status)
{
$media = $status->media()->orderBy('order')->get();
2018-08-28 03:07:36 +00:00
return $this->collection($media, new MediaTransformer());
2018-07-12 16:42:17 +00:00
}
public function includeTags(Status $status)
{
$tags = $status->hashtags;
2018-08-28 03:07:36 +00:00
return $this->collection($tags, new HashtagTransformer());
2018-07-12 16:42:17 +00:00
}
2018-08-28 03:07:36 +00:00
}