pixelfed/app/Transformer/Api/StoryTransformer.php

32 lines
816 B
PHP
Raw Normal View History

2019-01-12 20:35:39 +00:00
<?php
namespace App\Transformer\Api;
use App\Story;
use League\Fractal;
class StoryTransformer extends Fractal\TransformerAbstract
{
protected $defaultIncludes = [
'items',
];
public function transform(Story $story)
{
return [
'id' => (string) $story->id,
2019-01-12 20:35:39 +00:00
'photo' => $story->profile->avatarUrl(),
2020-02-18 07:40:37 +00:00
'name' => $story->profile->username,
'link' => $story->profile->url(),
2019-01-12 20:35:39 +00:00
'lastUpdated' => $story->updated_at->format('U'),
'seen' => $story->seen(),
];
}
public function includeItems(Story $story)
{
2020-02-18 07:40:37 +00:00
return $this->item($story, new StoryItemTransformer());
2019-01-12 20:35:39 +00:00
}
}