2017-07-07 04:02:06 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::PreviewCardSerializer < ActiveModel::Serializer
|
2024-06-27 15:17:18 +02:00
|
|
|
class AuthorSerializer < ActiveModel::Serializer
|
|
|
|
attributes :name, :url
|
|
|
|
has_one :account, serializer: REST::AccountSerializer
|
|
|
|
end
|
|
|
|
|
2017-07-07 04:02:06 +02:00
|
|
|
include RoutingHelper
|
|
|
|
|
2023-02-24 20:04:38 +01:00
|
|
|
attributes :url, :title, :description, :language, :type,
|
2017-07-07 04:02:06 +02:00
|
|
|
:author_name, :author_url, :provider_name,
|
|
|
|
:provider_url, :html, :width, :height,
|
2023-08-03 15:41:51 +02:00
|
|
|
:image, :image_description, :embed_url, :blurhash, :published_at
|
2017-07-07 04:02:06 +02:00
|
|
|
|
2024-06-27 15:17:18 +02:00
|
|
|
has_many :authors, serializer: AuthorSerializer
|
2024-05-29 01:34:33 +02:00
|
|
|
|
2023-11-13 10:58:28 +01:00
|
|
|
def url
|
|
|
|
object.original_url.presence || object.url
|
|
|
|
end
|
|
|
|
|
2017-07-07 04:02:06 +02:00
|
|
|
def image
|
|
|
|
object.image? ? full_asset_url(object.image.url(:original)) : nil
|
|
|
|
end
|
2023-07-06 15:03:33 +02:00
|
|
|
|
|
|
|
def html
|
|
|
|
Sanitize.fragment(object.html, Sanitize::Config::MASTODON_OEMBED)
|
|
|
|
end
|
2017-07-07 04:02:06 +02:00
|
|
|
end
|