mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 11:48:06 +01:00
6ae86f40d1
Squashed, modified, and rebased from glitch-soc/mastodon#2221. Co-authored-by: fef <owo@fef.moe> Co-authored-by: Jeremy Kescher <jeremy@kescher.at> Co-authored-by: neatchee <neatchee@gmail.com> Co-authored-by: Ivan Rodriguez <104603218+IRod22@users.noreply.github.com> Co-authored-by: Plastikmensch <plastikmensch@users.noreply.github.com>
45 lines
806 B
Ruby
45 lines
806 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::ReactionSerializer < ActiveModel::Serializer
|
|
include RoutingHelper
|
|
|
|
attributes :name, :count
|
|
|
|
attribute :me, if: :current_user?
|
|
attribute :url, if: :custom_emoji?
|
|
attribute :static_url, if: :custom_emoji?
|
|
|
|
def count
|
|
object.respond_to?(:count) ? object.count : 0
|
|
end
|
|
|
|
def current_user?
|
|
!current_user.nil?
|
|
end
|
|
|
|
def custom_emoji?
|
|
object.custom_emoji.present?
|
|
end
|
|
|
|
def name
|
|
if extern?
|
|
[object.name, '@', object.custom_emoji.domain].join
|
|
else
|
|
object.name
|
|
end
|
|
end
|
|
|
|
def url
|
|
full_asset_url(object.custom_emoji.image.url)
|
|
end
|
|
|
|
def static_url
|
|
full_asset_url(object.custom_emoji.image.url(:static))
|
|
end
|
|
|
|
private
|
|
|
|
def extern?
|
|
custom_emoji? && object.custom_emoji.domain.present?
|
|
end
|
|
end
|