pixelfed/app/Transformer/Api/StatusTransformer.php

71 lines
2.9 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;
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,
'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,
'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) {
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
}