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