pixelfed/app/Transformer/Api/StatusTransformer.php

74 wiersze
2.1 KiB
PHP
Czysty Zwykły widok Historia

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 [
2018-08-28 03:07:36 +00:00
'id' => $status->id,
'uri' => $status->url(),
'url' => $status->url(),
'in_reply_to_id' => $status->in_reply_to_id,
2018-07-12 16:42:17 +00:00
'in_reply_to_account_id' => $status->in_reply_to_profile_id,
2018-08-28 03:07:36 +00:00
2018-07-12 16:42:17 +00:00
// TODO: fixme
'reblog' => null,
2018-08-28 03:07:36 +00:00
'content' => "<p>$status->rendered</p>",
'created_at' => $status->created_at->format('c'),
'emojis' => [],
'reblogs_count' => $status->shares()->count(),
2018-07-12 16:42:17 +00:00
'favourites_count' => $status->likes()->count(),
2018-08-28 03:07:36 +00:00
'reblogged' => $status->shared(),
'favourited' => $status->liked(),
'muted' => null,
'sensitive' => (bool) $status->is_nsfw,
'spoiler_text' => '',
'visibility' => $status->visibility,
'application' => null,
'language' => null,
'pinned' => null,
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;
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
}