2017-07-07 12:02:06 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::PreviewCardSerializer < ActiveModel::Serializer
|
|
|
|
include RoutingHelper
|
|
|
|
|
2023-02-25 06:04:38 +11:00
|
|
|
attributes :url, :title, :description, :language, :type,
|
2017-07-07 12:02:06 +10:00
|
|
|
:author_name, :author_url, :provider_name,
|
|
|
|
:provider_url, :html, :width, :height,
|
2023-08-03 23:41:51 +10:00
|
|
|
:image, :image_description, :embed_url, :blurhash, :published_at
|
2017-07-07 12:02:06 +10:00
|
|
|
|
|
|
|
def image
|
|
|
|
object.image? ? full_asset_url(object.image.url(:original)) : nil
|
|
|
|
end
|
2023-07-06 23:03:33 +10:00
|
|
|
|
|
|
|
def html
|
|
|
|
Sanitize.fragment(object.html, Sanitize::Config::MASTODON_OEMBED)
|
|
|
|
end
|
2017-07-07 12:02:06 +10:00
|
|
|
end
|