fba96c808d
* Add blurhash * Use fallback color for spoiler when blurhash missing * Federate the blurhash and accept it as long as it's at most 5x5 * Display unknown media attachments as blurhash placeholders * Improve style of embed actions and spoiler button * Change blurhash resolution from 3x3 to 4x4 * Improve dependency definitions * Fix code style issues
41 lines
766 B
Ruby
41 lines
766 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::MediaAttachmentSerializer < ActiveModel::Serializer
|
|
include RoutingHelper
|
|
|
|
attributes :id, :type, :url, :preview_url,
|
|
:remote_url, :text_url, :meta,
|
|
:description, :blurhash
|
|
|
|
def id
|
|
object.id.to_s
|
|
end
|
|
|
|
def url
|
|
if object.needs_redownload?
|
|
media_proxy_url(object.id, :original)
|
|
else
|
|
full_asset_url(object.file.url(:original))
|
|
end
|
|
end
|
|
|
|
def remote_url
|
|
object.remote_url.presence
|
|
end
|
|
|
|
def preview_url
|
|
if object.needs_redownload?
|
|
media_proxy_url(object.id, :small)
|
|
else
|
|
full_asset_url(object.file.url(:small))
|
|
end
|
|
end
|
|
|
|
def text_url
|
|
object.local? ? medium_url(object) : nil
|
|
end
|
|
|
|
def meta
|
|
object.file.meta
|
|
end
|
|
end
|