2017-07-07 03:02:06 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::PreviewCardSerializer < ActiveModel::Serializer
|
|
|
|
include RoutingHelper
|
|
|
|
|
2023-02-24 19:04:38 +00:00
|
|
|
attributes :url, :title, :description, :language, :type,
|
2017-07-07 03:02:06 +01:00
|
|
|
:author_name, :author_url, :provider_name,
|
|
|
|
:provider_url, :html, :width, :height,
|
2020-06-05 22:10:41 +01:00
|
|
|
:image, :embed_url, :blurhash
|
2017-07-07 03:02:06 +01:00
|
|
|
|
|
|
|
def image
|
|
|
|
object.image? ? full_asset_url(object.image.url(:original)) : nil
|
|
|
|
end
|
2023-07-06 14:03:33 +01:00
|
|
|
|
|
|
|
def html
|
|
|
|
Sanitize.fragment(object.html, Sanitize::Config::MASTODON_OEMBED)
|
|
|
|
end
|
2017-07-07 03:02:06 +01:00
|
|
|
end
|