2017-07-15 01:01:39 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 14:55:23 +00:00
|
|
|
class ActivityPub::ActorSerializer < ActivityPub::Serializer
|
2017-07-15 01:01:39 +00:00
|
|
|
include RoutingHelper
|
2022-03-26 01:53:34 +00:00
|
|
|
include FormattingHelper
|
2017-07-15 01:01:39 +00:00
|
|
|
|
2019-03-27 14:55:23 +00:00
|
|
|
context :security
|
|
|
|
|
|
|
|
context_extensions :manually_approves_followers, :featured, :also_known_as,
|
2021-11-26 04:58:18 +00:00
|
|
|
:moved_to, :property_value, :discoverable, :olm, :suspended
|
2019-03-27 14:55:23 +00:00
|
|
|
|
2017-07-15 01:01:39 +00:00
|
|
|
attributes :id, :type, :following, :followers,
|
2020-09-02 00:11:12 +00:00
|
|
|
:inbox, :outbox, :featured, :featured_tags,
|
2017-08-30 22:02:59 +00:00
|
|
|
:preferred_username, :name, :summary,
|
2019-08-29 22:14:36 +00:00
|
|
|
:url, :manually_approves_followers,
|
2021-05-07 12:33:19 +00:00
|
|
|
:discoverable, :published
|
2017-07-15 01:01:39 +00:00
|
|
|
|
2017-07-17 00:37:27 +00:00
|
|
|
has_one :public_key, serializer: ActivityPub::PublicKeySerializer
|
|
|
|
|
2018-04-01 21:55:42 +00:00
|
|
|
has_many :virtual_tags, key: :tag
|
2018-04-14 10:41:08 +00:00
|
|
|
has_many :virtual_attachments, key: :attachment
|
2018-04-01 21:55:42 +00:00
|
|
|
|
2020-06-02 17:24:53 +00:00
|
|
|
attribute :devices, unless: :instance_actor?
|
2017-11-18 18:39:02 +00:00
|
|
|
attribute :moved_to, if: :moved?
|
2018-12-29 01:24:36 +00:00
|
|
|
attribute :also_known_as, if: :also_known_as?
|
2020-11-07 23:28:39 +00:00
|
|
|
attribute :suspended, if: :suspended?
|
2017-11-18 18:39:02 +00:00
|
|
|
|
2019-03-27 14:55:23 +00:00
|
|
|
class EndpointsSerializer < ActivityPub::Serializer
|
2017-09-04 16:26:33 +00:00
|
|
|
include RoutingHelper
|
|
|
|
|
|
|
|
attributes :shared_inbox
|
|
|
|
|
|
|
|
def shared_inbox
|
|
|
|
inbox_url
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
has_one :endpoints, serializer: EndpointsSerializer
|
|
|
|
|
2017-10-07 15:43:42 +00:00
|
|
|
has_one :icon, serializer: ActivityPub::ImageSerializer, if: :avatar_exists?
|
|
|
|
has_one :image, serializer: ActivityPub::ImageSerializer, if: :header_exists?
|
2017-08-08 19:52:15 +00:00
|
|
|
|
2020-11-07 23:28:39 +00:00
|
|
|
delegate :suspended?, :instance_actor?, to: :object
|
2017-11-18 18:39:02 +00:00
|
|
|
|
2017-07-15 01:01:39 +00:00
|
|
|
def id
|
2019-07-18 23:44:42 +00:00
|
|
|
object.instance_actor? ? instance_actor_url : account_url(object)
|
2017-07-15 01:01:39 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def type
|
2019-07-18 23:44:42 +00:00
|
|
|
if object.instance_actor?
|
|
|
|
'Application'
|
|
|
|
elsif object.bot?
|
|
|
|
'Service'
|
2019-12-04 19:36:33 +00:00
|
|
|
elsif object.group?
|
|
|
|
'Group'
|
2019-07-18 23:44:42 +00:00
|
|
|
else
|
|
|
|
'Person'
|
|
|
|
end
|
2017-07-15 01:01:39 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def following
|
|
|
|
account_following_index_url(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def followers
|
|
|
|
account_followers_url(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def inbox
|
2019-07-18 23:44:42 +00:00
|
|
|
object.instance_actor? ? instance_actor_inbox_url : account_inbox_url(object)
|
2017-07-15 01:01:39 +00:00
|
|
|
end
|
|
|
|
|
2020-06-02 17:24:53 +00:00
|
|
|
def devices
|
|
|
|
account_collection_url(object, :devices)
|
|
|
|
end
|
|
|
|
|
2017-07-15 01:01:39 +00:00
|
|
|
def outbox
|
2020-09-02 16:42:50 +00:00
|
|
|
object.instance_actor? ? instance_actor_outbox_url : account_outbox_url(object)
|
2017-07-15 01:01:39 +00:00
|
|
|
end
|
|
|
|
|
2018-03-04 08:19:11 +00:00
|
|
|
def featured
|
|
|
|
account_collection_url(object, :featured)
|
|
|
|
end
|
|
|
|
|
2020-09-02 00:11:12 +00:00
|
|
|
def featured_tags
|
|
|
|
account_collection_url(object, :tags)
|
|
|
|
end
|
|
|
|
|
2017-09-04 16:26:33 +00:00
|
|
|
def endpoints
|
|
|
|
object
|
2017-08-30 22:02:59 +00:00
|
|
|
end
|
|
|
|
|
2017-07-15 01:01:39 +00:00
|
|
|
def preferred_username
|
|
|
|
object.username
|
|
|
|
end
|
|
|
|
|
2020-11-07 23:28:39 +00:00
|
|
|
def discoverable
|
|
|
|
object.suspended? ? false : (object.discoverable || false)
|
|
|
|
end
|
|
|
|
|
2017-07-15 01:01:39 +00:00
|
|
|
def name
|
2020-11-07 23:28:39 +00:00
|
|
|
object.suspended? ? '' : object.display_name
|
2017-07-15 01:01:39 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def summary
|
2022-03-27 23:17:17 +00:00
|
|
|
object.suspended? ? '' : account_bio_format(object)
|
2017-07-15 01:01:39 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def icon
|
2017-08-08 19:52:15 +00:00
|
|
|
object.avatar
|
2017-07-15 01:01:39 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def image
|
2017-08-08 19:52:15 +00:00
|
|
|
object.header
|
2017-07-15 01:01:39 +00:00
|
|
|
end
|
2017-07-17 00:37:27 +00:00
|
|
|
|
|
|
|
def public_key
|
|
|
|
object
|
|
|
|
end
|
2017-08-08 19:52:15 +00:00
|
|
|
|
2020-11-07 23:28:39 +00:00
|
|
|
def suspended
|
|
|
|
object.suspended?
|
|
|
|
end
|
|
|
|
|
2017-08-08 19:52:15 +00:00
|
|
|
def url
|
2019-07-18 23:44:42 +00:00
|
|
|
object.instance_actor? ? about_more_url(instance_actor: true) : short_account_url(object)
|
2017-08-08 19:52:15 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def avatar_exists?
|
2020-11-07 23:28:39 +00:00
|
|
|
!object.suspended? && object.avatar?
|
2017-08-08 19:52:15 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def header_exists?
|
2020-11-07 23:28:39 +00:00
|
|
|
!object.suspended? && object.header?
|
2017-08-08 19:52:15 +00:00
|
|
|
end
|
2017-09-02 21:13:35 +00:00
|
|
|
|
|
|
|
def manually_approves_followers
|
2020-11-07 23:28:39 +00:00
|
|
|
object.suspended? ? false : object.locked
|
2017-09-02 21:13:35 +00:00
|
|
|
end
|
2017-11-18 18:39:02 +00:00
|
|
|
|
2018-04-01 21:55:42 +00:00
|
|
|
def virtual_tags
|
2020-11-07 23:28:39 +00:00
|
|
|
object.suspended? ? [] : (object.emojis + object.tags)
|
2018-04-01 21:55:42 +00:00
|
|
|
end
|
|
|
|
|
2018-04-14 10:41:08 +00:00
|
|
|
def virtual_attachments
|
2021-11-26 04:58:18 +00:00
|
|
|
object.suspended? ? [] : object.fields
|
2018-04-14 10:41:08 +00:00
|
|
|
end
|
|
|
|
|
2017-11-18 18:39:02 +00:00
|
|
|
def moved_to
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object.moved_to_account)
|
|
|
|
end
|
2018-04-01 21:55:42 +00:00
|
|
|
|
2020-11-07 23:28:39 +00:00
|
|
|
def moved?
|
|
|
|
!object.suspended? && object.moved?
|
|
|
|
end
|
|
|
|
|
2018-12-29 01:24:36 +00:00
|
|
|
def also_known_as?
|
2020-11-07 23:28:39 +00:00
|
|
|
!object.suspended? && !object.also_known_as.empty?
|
2018-12-29 01:24:36 +00:00
|
|
|
end
|
|
|
|
|
2021-05-07 12:33:19 +00:00
|
|
|
def published
|
|
|
|
object.created_at.midnight.iso8601
|
|
|
|
end
|
|
|
|
|
2018-04-01 21:55:42 +00:00
|
|
|
class CustomEmojiSerializer < ActivityPub::EmojiSerializer
|
|
|
|
end
|
2018-04-14 10:41:08 +00:00
|
|
|
|
2019-03-27 14:55:23 +00:00
|
|
|
class TagSerializer < ActivityPub::Serializer
|
2019-09-03 20:52:32 +00:00
|
|
|
context_extensions :hashtag
|
|
|
|
|
2018-12-13 04:22:01 +00:00
|
|
|
include RoutingHelper
|
|
|
|
|
|
|
|
attributes :type, :href, :name
|
|
|
|
|
|
|
|
def type
|
|
|
|
'Hashtag'
|
|
|
|
end
|
|
|
|
|
|
|
|
def href
|
2021-05-11 17:14:59 +00:00
|
|
|
tag_url(object)
|
2018-12-13 04:22:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def name
|
|
|
|
"##{object.name}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-27 14:55:23 +00:00
|
|
|
class Account::FieldSerializer < ActivityPub::Serializer
|
2022-03-26 01:53:34 +00:00
|
|
|
include FormattingHelper
|
|
|
|
|
2018-04-14 10:41:08 +00:00
|
|
|
attributes :type, :name, :value
|
|
|
|
|
|
|
|
def type
|
|
|
|
'PropertyValue'
|
|
|
|
end
|
|
|
|
|
|
|
|
def value
|
2022-03-27 23:17:17 +00:00
|
|
|
account_field_value_format(object)
|
2018-04-14 10:41:08 +00:00
|
|
|
end
|
|
|
|
end
|
2019-03-30 01:12:06 +00:00
|
|
|
|
|
|
|
class AccountIdentityProofSerializer < ActivityPub::Serializer
|
|
|
|
attributes :type, :name, :signature_algorithm, :signature_value
|
|
|
|
|
|
|
|
def type
|
|
|
|
'IdentityProof'
|
|
|
|
end
|
|
|
|
|
|
|
|
def name
|
|
|
|
object.provider_username
|
|
|
|
end
|
|
|
|
|
|
|
|
def signature_algorithm
|
|
|
|
object.provider
|
|
|
|
end
|
|
|
|
|
|
|
|
def signature_value
|
|
|
|
object.token
|
|
|
|
end
|
|
|
|
end
|
2017-07-15 01:01:39 +00:00
|
|
|
end
|