2018-07-12 16:42:17 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Transformer\Api;
|
|
|
|
|
|
|
|
use App\Media;
|
|
|
|
use League\Fractal;
|
|
|
|
|
|
|
|
class MediaTransformer extends Fractal\TransformerAbstract
|
|
|
|
{
|
|
|
|
public function transform(Media $media)
|
|
|
|
{
|
|
|
|
return [
|
2019-01-28 02:40:36 +00:00
|
|
|
'id' => (string) $media->id,
|
2018-12-31 04:26:37 +00:00
|
|
|
'type' => $media->activityVerb(),
|
|
|
|
'url' => $media->url(),
|
|
|
|
'remote_url' => null,
|
|
|
|
'preview_url' => $media->thumbnailUrl(),
|
|
|
|
'text_url' => null,
|
|
|
|
'meta' => null,
|
|
|
|
'description' => $media->caption,
|
|
|
|
'license' => $media->license,
|
|
|
|
'is_nsfw' => $media->is_nsfw,
|
|
|
|
'orientation' => $media->orientation,
|
|
|
|
'filter_name' => $media->filter_name,
|
|
|
|
'filter_class' => $media->filter_class,
|
|
|
|
'mime' => $media->mime,
|
2018-07-12 16:42:17 +00:00
|
|
|
];
|
|
|
|
}
|
2018-08-28 03:07:36 +00:00
|
|
|
}
|