1
0
Fork 0
pixelfed/app/Transformer/Api/StoryItemTransformer.php

29 lines
862 B
PHP
Raw Normal View History

2019-01-12 20:36:07 +00:00
<?php
namespace App\Transformer\Api;
use App\StoryItem;
use League\Fractal;
use Illuminate\Support\Str;
class StoryItemTransformer extends Fractal\TransformerAbstract
{
public function transform(StoryItem $item)
{
return [
2020-02-18 07:39:56 +00:00
'id' => (string) $item->id,
2019-01-12 20:36:07 +00:00
'type' => $item->type,
'length' => 10,
2019-01-12 20:36:07 +00:00
'src' => $item->url(),
'preview' => null,
'link' => null,
'linkText' => null,
2020-02-18 07:39:56 +00:00
'time' => $item->created_at->format('U'),
'expires_at' => $item->created_at->addHours(24)->format('U'),
2019-01-12 20:36:07 +00:00
'seen' => $item->story->seen(),
];
}
}