2019-05-27 19:00:39 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Transformer\Api;
|
|
|
|
|
|
|
|
use App\Status;
|
|
|
|
use League\Fractal;
|
|
|
|
use Cache;
|
|
|
|
|
|
|
|
class StatusStatelessTransformer extends Fractal\TransformerAbstract
|
|
|
|
{
|
|
|
|
protected $defaultIncludes = [
|
|
|
|
'account',
|
|
|
|
'mentions',
|
|
|
|
'media_attachments',
|
|
|
|
'tags',
|
|
|
|
];
|
|
|
|
|
|
|
|
public function transform(Status $status)
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'id' => (string) $status->id,
|
|
|
|
'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' => null,
|
|
|
|
'content' => $status->rendered ?? $status->caption,
|
|
|
|
'created_at' => $status->created_at->format('c'),
|
|
|
|
'emojis' => [],
|
|
|
|
'reblogs_count' => $status->shares()->count(),
|
|
|
|
'favourites_count' => $status->likes()->count(),
|
|
|
|
'reblogged' => null,
|
|
|
|
'favourited' => null,
|
|
|
|
'muted' => null,
|
|
|
|
'sensitive' => (bool) $status->is_nsfw,
|
|
|
|
'spoiler_text' => $status->cw_summary,
|
|
|
|
'visibility' => $status->visibility,
|
|
|
|
'application' => [
|
|
|
|
'name' => 'web',
|
|
|
|
'website' => null
|
|
|
|
],
|
|
|
|
'language' => null,
|
|
|
|
'pinned' => null,
|
|
|
|
|
|
|
|
'pf_type' => $status->type ?? $status->setType(),
|
|
|
|
'reply_count' => (int) $status->reply_count,
|
|
|
|
'comments_disabled' => $status->comments_disabled ? true : false,
|
|
|
|
'thread' => false,
|
|
|
|
'replies' => [],
|
|
|
|
'parent' => $status->parent() ? $this->transform($status->parent()) : [],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function includeAccount(Status $status)
|
|
|
|
{
|
|
|
|
$account = $status->profile;
|
|
|
|
|
|
|
|
return $this->item($account, new AccountTransformer());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function includeMentions(Status $status)
|
|
|
|
{
|
|
|
|
$mentions = $status->mentions;
|
|
|
|
|
|
|
|
return $this->collection($mentions, new MentionTransformer());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function includeMediaAttachments(Status $status)
|
|
|
|
{
|
|
|
|
return Cache::remember('status:transformer:media:attachments:'.$status->id, now()->addMinutes(3), function() use($status) {
|
2019-06-03 20:47:14 +00:00
|
|
|
if(in_array($status->type, ['photo', 'video', 'photo:album', 'loop'])) {
|
2019-05-27 19:00:39 +00:00
|
|
|
$media = $status->media()->orderBy('order')->get();
|
|
|
|
return $this->collection($media, new MediaTransformer());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public function includeTags(Status $status)
|
|
|
|
{
|
|
|
|
$tags = $status->hashtags;
|
|
|
|
|
|
|
|
return $this->collection($tags, new HashtagTransformer());
|
|
|
|
}
|
|
|
|
}
|