1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-06 19:48:22 +00:00
pixelfed/app/Transformer/Api/MediaTransformer.php

31 lines
1,011 B
PHP
Raw Normal View History

2018-07-12 10:42:17 -06:00
<?php
namespace App\Transformer\Api;
use App\Media;
use League\Fractal;
class MediaTransformer extends Fractal\TransformerAbstract
{
public function transform(Media $media)
{
return [
'id' => (string) $media->id,
2018-12-30 21:26:37 -07:00
'type' => $media->activityVerb(),
2021-01-18 18:25:03 -07:00
'url' => $media->url() . '?cb=1&_v=' . time(),
2018-12-30 21:26:37 -07:00
'remote_url' => null,
2021-01-18 18:25:03 -07:00
'preview_url' => $media->thumbnailUrl() . '?cb=1&_v=' . time(),
2018-12-30 21:26:37 -07:00
'text_url' => null,
'meta' => null,
'description' => $media->caption,
'license' => $media->license,
'is_nsfw' => $media->is_nsfw,
'orientation' => $media->orientation,
'filter_name' => $media->filter_name,
2020-11-27 19:52:40 -07:00
'filter_class' => $media->version == 1 ? $media->filter_class : null,
2018-12-30 21:26:37 -07:00
'mime' => $media->mime,
2021-01-18 18:25:03 -07:00
'blurhash' => $media->blurhash
2018-07-12 10:42:17 -06:00
];
}
2018-08-28 03:07:36 +00:00
}