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
|
|
|
|
|
2019-03-27 15:55:23 +01:00
|
|
|
context :security
|
|
|
|
|
|
|
|
context_extensions :manually_approves_followers, :featured, :also_known_as,
|
2019-03-30 02:12:06 +01:00
|
|
|
:moved_to, :property_value, :hashtag, :emoji, :identity_proof
|
2019-03-27 15:55:23 +01:00
|
|
|
|
2017-07-15 03:01:39 +02:00
|
|
|
attributes :id, :type, :following, :followers,
|
2018-03-04 09:19:11 +01:00
|
|
|
:inbox, :outbox, :featured,
|
2017-08-31 00:02:59 +02:00
|
|
|
:preferred_username, :name, :summary,
|
2017-09-02 23:13:35 +02:00
|
|
|
:url, :manually_approves_followers
|
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
|
|
|
|
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?
|
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
|
|
|
|
2017-11-18 19:39:02 +01:00
|
|
|
delegate :moved?, to: :object
|
|
|
|
|
2017-07-15 03:01:39 +02:00
|
|
|
def id
|
|
|
|
account_url(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def type
|
2018-05-07 09:31:07 +02:00
|
|
|
object.bot? ? 'Service' : 'Person'
|
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
|
2017-08-08 21:52:15 +02:00
|
|
|
account_inbox_url(object)
|
2017-07-15 03:01:39 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def outbox
|
|
|
|
account_outbox_url(object)
|
|
|
|
end
|
|
|
|
|
2018-03-04 09:19:11 +01:00
|
|
|
def featured
|
|
|
|
account_collection_url(object, :featured)
|
|
|
|
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
|
|
|
|
|
|
|
|
def name
|
|
|
|
object.display_name
|
|
|
|
end
|
|
|
|
|
|
|
|
def summary
|
|
|
|
Formatter.instance.simplified_format(object)
|
|
|
|
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
|
|
|
|
|
|
|
def url
|
|
|
|
short_account_url(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def avatar_exists?
|
2018-08-23 16:39:22 +02:00
|
|
|
object.avatar?
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def header_exists?
|
2018-08-23 16:39:22 +02:00
|
|
|
object.header?
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
2017-09-02 23:13:35 +02:00
|
|
|
|
|
|
|
def manually_approves_followers
|
|
|
|
object.locked
|
|
|
|
end
|
2017-11-18 19:39:02 +01:00
|
|
|
|
2018-04-01 23:55:42 +02:00
|
|
|
def virtual_tags
|
2018-12-13 05:22:01 +01:00
|
|
|
object.emojis + object.tags
|
2018-04-01 23:55:42 +02:00
|
|
|
end
|
|
|
|
|
2018-04-14 12:41:08 +02:00
|
|
|
def virtual_attachments
|
2019-03-30 02:12:06 +01:00
|
|
|
object.fields + object.identity_proofs.active
|
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
|
|
|
|
2018-12-29 02:24:36 +01:00
|
|
|
def also_known_as?
|
|
|
|
!object.also_known_as.empty?
|
|
|
|
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
|
2018-12-13 05:22:01 +01:00
|
|
|
include RoutingHelper
|
|
|
|
|
|
|
|
attributes :type, :href, :name
|
|
|
|
|
|
|
|
def type
|
|
|
|
'Hashtag'
|
|
|
|
end
|
|
|
|
|
|
|
|
def href
|
|
|
|
explore_hashtag_url(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def name
|
|
|
|
"##{object.name}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-27 15:55:23 +01:00
|
|
|
class Account::FieldSerializer < ActivityPub::Serializer
|
2018-04-14 12:41:08 +02:00
|
|
|
attributes :type, :name, :value
|
|
|
|
|
|
|
|
def type
|
|
|
|
'PropertyValue'
|
|
|
|
end
|
|
|
|
|
|
|
|
def value
|
|
|
|
Formatter.instance.format_field(object.account, object.value)
|
|
|
|
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
|