2018-07-12 16:42:17 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Transformer\Api;
|
|
|
|
|
|
|
|
use App\Status;
|
|
|
|
use League\Fractal;
|
2019-02-15 05:30:06 +00:00
|
|
|
use Cache;
|
2018-07-12 16:42:17 +00:00
|
|
|
|
|
|
|
class StatusTransformer extends Fractal\TransformerAbstract
|
|
|
|
{
|
|
|
|
protected $defaultIncludes = [
|
|
|
|
'account',
|
|
|
|
'media_attachments',
|
|
|
|
];
|
|
|
|
|
|
|
|
public function transform(Status $status)
|
|
|
|
{
|
2019-02-16 18:48:24 +00:00
|
|
|
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,
|
2019-04-18 01:46:05 +00:00
|
|
|
'reblog' => null,
|
2019-02-16 18:48:24 +00:00
|
|
|
'content' => $status->rendered ?? $status->caption,
|
2019-09-21 05:45:19 +00:00
|
|
|
'created_at' => $status->created_at->format('c'),
|
2019-02-16 18:48:24 +00:00
|
|
|
'emojis' => [],
|
2019-06-18 07:01:36 +00:00
|
|
|
'reblogs_count' => $status->reblogs_count != 0 ? $status->reblogs_count: $status->shares()->count(),
|
|
|
|
'favourites_count' => $status->likes_count != 0 ? $status->likes_count: $status->likes()->count(),
|
2019-02-16 18:48:24 +00:00
|
|
|
'reblogged' => $status->shared(),
|
|
|
|
'favourited' => $status->liked(),
|
|
|
|
'muted' => null,
|
|
|
|
'sensitive' => (bool) $status->is_nsfw,
|
2019-09-25 02:45:36 +00:00
|
|
|
'spoiler_text' => $status->cw_summary ?? '',
|
2019-06-25 03:14:22 +00:00
|
|
|
'visibility' => $status->visibility ?? $status->scope,
|
2019-02-16 18:48:24 +00:00
|
|
|
'application' => [
|
|
|
|
'name' => 'web',
|
|
|
|
'website' => null
|
|
|
|
],
|
|
|
|
'language' => null,
|
|
|
|
'pinned' => null,
|
2019-08-18 05:40:25 +00:00
|
|
|
'mentions' => [],
|
|
|
|
'tags' => [],
|
2019-04-18 01:46:05 +00:00
|
|
|
'pf_type' => $status->type ?? $status->setType(),
|
|
|
|
'reply_count' => (int) $status->reply_count,
|
|
|
|
'comments_disabled' => $status->comments_disabled ? true : false,
|
|
|
|
'thread' => false,
|
2019-05-27 05:03:53 +00:00
|
|
|
'replies' => [],
|
2019-06-18 07:01:36 +00:00
|
|
|
'parent' => [],
|
2019-08-20 01:16:48 +00:00
|
|
|
'place' => $status->place
|
2019-02-16 18:48:24 +00:00
|
|
|
];
|
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 includeMediaAttachments(Status $status)
|
|
|
|
{
|
2019-06-11 02:12:46 +00:00
|
|
|
return Cache::remember('status:transformer:media:attachments:'.$status->id, now()->addDays(14), function() use($status) {
|
2019-06-18 06:00:43 +00:00
|
|
|
if(in_array($status->type, ['photo', 'video', 'photo:album', 'loop', 'photo:video:album'])) {
|
2019-05-27 05:03:53 +00:00
|
|
|
$media = $status->media()->orderBy('order')->get();
|
|
|
|
return $this->collection($media, new MediaTransformer());
|
|
|
|
}
|
2019-02-25 06:41:12 +00:00
|
|
|
});
|
2018-07-12 16:42:17 +00:00
|
|
|
}
|
2018-08-28 03:07:36 +00:00
|
|
|
}
|