~cytrogen/masto-fe

ref: 4d01d1a1eeef7a851b77def9c5bfc2ce4d7a271c masto-fe/app/serializers/rest/preview_card_serializer.rb -rw-r--r-- 507 bytes
4d01d1a1 — Eugen Rochko Remove 16:9 cropping from web UI (#26132) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class REST::PreviewCardSerializer < ActiveModel::Serializer
  include RoutingHelper

  attributes :url, :title, :description, :language, :type,
             :author_name, :author_url, :provider_name,
             :provider_url, :html, :width, :height,
             :image, :embed_url, :blurhash

  def image
    object.image? ? full_asset_url(object.image.url(:original)) : nil
  end

  def html
    Sanitize.fragment(object.html, Sanitize::Config::MASTODON_OEMBED)
  end
end