mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Update StatusTransformer
This commit is contained in:
parent
09d5198c55
commit
1054b025b1
1 changed files with 49 additions and 72 deletions
|
@ -5,81 +5,58 @@ namespace App\Transformer\Api\Mastodon\v1;
|
||||||
use App\Status;
|
use App\Status;
|
||||||
use League\Fractal;
|
use League\Fractal;
|
||||||
use Cache;
|
use Cache;
|
||||||
|
use App\Services\MediaService;
|
||||||
|
use App\Services\ProfileService;
|
||||||
|
use App\Services\StatusHashtagService;
|
||||||
|
|
||||||
class StatusTransformer extends Fractal\TransformerAbstract
|
class StatusTransformer extends Fractal\TransformerAbstract
|
||||||
{
|
{
|
||||||
protected $defaultIncludes = [
|
protected $defaultIncludes = [
|
||||||
'account',
|
'mentions',
|
||||||
'media_attachments',
|
];
|
||||||
'mentions',
|
|
||||||
'tags',
|
|
||||||
];
|
|
||||||
|
|
||||||
public function transform(Status $status)
|
public function transform(Status $status)
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'id' => (string) $status->id,
|
'id' => (string) $status->id,
|
||||||
'created_at' => $status->created_at->toJSON(),
|
'created_at' => $status->created_at->toJSON(),
|
||||||
'in_reply_to_id' => $status->in_reply_to_id ? (string) $status->in_reply_to_id : null,
|
'in_reply_to_id' => $status->in_reply_to_id ? (string) $status->in_reply_to_id : null,
|
||||||
'in_reply_to_account_id' => $status->in_reply_to_profile_id,
|
'in_reply_to_account_id' => $status->in_reply_to_profile_id,
|
||||||
'sensitive' => (bool) $status->is_nsfw,
|
'sensitive' => (bool) $status->is_nsfw,
|
||||||
'spoiler_text' => $status->cw_summary ?? '',
|
'spoiler_text' => $status->cw_summary ?? '',
|
||||||
'visibility' => $status->visibility ?? $status->scope,
|
'visibility' => $status->visibility ?? $status->scope,
|
||||||
'language' => 'en',
|
'language' => 'en',
|
||||||
'uri' => $status->url(),
|
'uri' => $status->url(),
|
||||||
'url' => $status->url(),
|
'url' => $status->url(),
|
||||||
'replies_count' => 0,
|
'replies_count' => 0,
|
||||||
'reblogs_count' => $status->reblogs_count ?? 0,
|
'reblogs_count' => $status->reblogs_count ?? 0,
|
||||||
'favourites_count' => $status->likes_count ?? 0,
|
'favourites_count' => $status->likes_count ?? 0,
|
||||||
'reblogged' => $status->shared(),
|
'reblogged' => $status->shared(),
|
||||||
'favourited' => $status->liked(),
|
'favourited' => $status->liked(),
|
||||||
'muted' => false,
|
'muted' => false,
|
||||||
'bookmarked' => false,
|
'bookmarked' => false,
|
||||||
'pinned' => false,
|
'pinned' => false,
|
||||||
'content' => $status->rendered ?? $status->caption ?? '',
|
'content' => $status->rendered ?? $status->caption ?? '',
|
||||||
'reblog' => null,
|
'reblog' => null,
|
||||||
'application' => [
|
'application' => [
|
||||||
'name' => 'web',
|
'name' => 'web',
|
||||||
'website' => null
|
'website' => null
|
||||||
],
|
],
|
||||||
'mentions' => [],
|
'mentions' => [],
|
||||||
'tags' => [],
|
'tags' => [],
|
||||||
'emojis' => [],
|
'emojis' => [],
|
||||||
'card' => null,
|
'card' => null,
|
||||||
'poll' => null,
|
'poll' => null,
|
||||||
];
|
'media_attachments' => MediaService::get($status->id),
|
||||||
}
|
'account' => ProfileService::get($status->profile_id),
|
||||||
|
'tags' => StatusHashtagService::statusTags($status->id)
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
public function includeAccount(Status $status)
|
public function includeMentions(Status $status)
|
||||||
{
|
{
|
||||||
$account = $status->profile;
|
$mentions = $status->mentions;
|
||||||
|
|
||||||
return $this->item($account, new AccountTransformer());
|
return $this->collection($mentions, new MentionTransformer());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
public function includeMediaAttachments(Status $status)
|
|
||||||
{
|
|
||||||
return Cache::remember('mastoapi: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'])) {
|
|
||||||
$media = $status->media()->orderBy('order')->get();
|
|
||||||
return $this->collection($media, new MediaTransformer());
|
|
||||||
} else {
|
|
||||||
return $this->collection([], new MediaTransformer());
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
public function includeMentions(Status $status)
|
|
||||||
{
|
|
||||||
$mentions = $status->mentions;
|
|
||||||
|
|
||||||
return $this->collection($mentions, new MentionTransformer());
|
|
||||||
}
|
|
||||||
|
|
||||||
public function includeTags(Status $status)
|
|
||||||
{
|
|
||||||
$hashtags = $status->hashtags;
|
|
||||||
|
|
||||||
return $this->collection($hashtags, new HashtagTransformer());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue