mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Add StatusHashtagTransformer
This commit is contained in:
parent
5ef7936b48
commit
9d7943a9de
1 changed files with 35 additions and 0 deletions
35
app/Transformer/Api/StatusHashtagTransformer.php
Normal file
35
app/Transformer/Api/StatusHashtagTransformer.php
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Transformer\Api;
|
||||||
|
|
||||||
|
use App\{Hashtag, Status, StatusHashtag};
|
||||||
|
use League\Fractal;
|
||||||
|
|
||||||
|
class StatusHashtagTransformer extends Fractal\TransformerAbstract
|
||||||
|
{
|
||||||
|
public function transform(StatusHashtag $statusHashtag)
|
||||||
|
{
|
||||||
|
$hashtag = $statusHashtag->hashtag;
|
||||||
|
$status = $statusHashtag->status;
|
||||||
|
$profile = $statusHashtag->profile;
|
||||||
|
|
||||||
|
return [
|
||||||
|
'status' => [
|
||||||
|
'type' => $status->type,
|
||||||
|
'url' => $status->url(),
|
||||||
|
'thumb' => $status->thumb(),
|
||||||
|
'sensitive' => (bool) $status->is_nsfw,
|
||||||
|
'like_count' => $status->likes_count,
|
||||||
|
'share_count' => $status->reblogs_count,
|
||||||
|
'user' => [
|
||||||
|
'username' => $profile->username,
|
||||||
|
'url' => $profile->url(),
|
||||||
|
]
|
||||||
|
],
|
||||||
|
'hashtag' => [
|
||||||
|
'name' => $hashtag->name,
|
||||||
|
'url' => $hashtag->url(),
|
||||||
|
]
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue