Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
111 lines (81 sloc)
2.38 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
class REST::AccountSerializer < ActiveModel::Serializer | |
include RoutingHelper | |
include FormattingHelper | |
attributes :id, :username, :acct, :display_name, :locked, :bot, :discoverable, :group, :created_at, | |
:note, :url, :avatar, :avatar_static, :header, :header_static, | |
:followers_count, :following_count, :statuses_count, :last_status_at | |
has_one :moved_to_account, key: :moved, serializer: REST::AccountSerializer, if: :moved_and_not_nested? | |
has_many :emojis, serializer: REST::CustomEmojiSerializer | |
attribute :suspended, if: :suspended? | |
attribute :silenced, key: :limited, if: :silenced? | |
class FieldSerializer < ActiveModel::Serializer | |
include FormattingHelper | |
attributes :name, :value, :verified_at | |
def value | |
account_field_value_format(object) | |
end | |
end | |
has_many :fields | |
def id | |
object.id.to_s | |
end | |
def acct | |
object.pretty_acct | |
end | |
def note | |
object.suspended? ? '' : account_bio_format(object) | |
end | |
def url | |
ActivityPub::TagManager.instance.url_for(object) | |
end | |
def avatar | |
full_asset_url(object.suspended? ? object.avatar.default_url : object.avatar_original_url) | |
end | |
def avatar_static | |
full_asset_url(object.suspended? ? object.avatar.default_url : object.avatar_static_url) | |
end | |
def header | |
full_asset_url(object.suspended? ? object.header.default_url : object.header_original_url) | |
end | |
def header_static | |
full_asset_url(object.suspended? ? object.header.default_url : object.header_static_url) | |
end | |
def created_at | |
object.created_at.midnight.as_json | |
end | |
def last_status_at | |
object.last_status_at&.to_date&.iso8601 | |
end | |
def display_name | |
object.suspended? ? '' : object.display_name | |
end | |
def locked | |
object.suspended? ? false : object.locked | |
end | |
def bot | |
object.suspended? ? false : object.bot | |
end | |
def discoverable | |
object.suspended? ? false : object.discoverable | |
end | |
def moved_to_account | |
object.suspended? ? nil : object.moved_to_account | |
end | |
def emojis | |
object.suspended? ? [] : object.emojis | |
end | |
def fields | |
object.suspended? ? [] : object.fields | |
end | |
def suspended | |
object.suspended? | |
end | |
def silenced | |
object.silenced? | |
end | |
delegate :suspended?, :silenced?, to: :object | |
def moved_and_not_nested? | |
object.moved? && object.moved_to_account.moved_to_account_id.nil? | |
end | |
end |