2017-07-14 21:01:39 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 10:55:23 -04:00
|
|
|
class ActivityPub::ActorSerializer < ActivityPub::Serializer
|
2017-07-14 21:01:39 -04:00
|
|
|
include RoutingHelper
|
|
|
|
|
2019-03-27 10:55:23 -04:00
|
|
|
context :security
|
|
|
|
|
|
|
|
context_extensions :manually_approves_followers, :featured, :also_known_as,
|
2019-09-03 16:52:32 -04:00
|
|
|
:moved_to, :property_value, :identity_proof,
|
2019-08-29 18:14:36 -04:00
|
|
|
:discoverable
|
2019-03-27 10:55:23 -04:00
|
|
|
|
2017-07-14 21:01:39 -04:00
|
|
|
attributes :id, :type, :following, :followers,
|
2018-03-04 03:19:11 -05:00
|
|
|
:inbox, :outbox, :featured,
|
2017-08-30 18:02:59 -04:00
|
|
|
:preferred_username, :name, :summary,
|
2019-08-29 18:14:36 -04:00
|
|
|
:url, :manually_approves_followers,
|
|
|
|
:discoverable
|
2017-07-14 21:01:39 -04:00
|
|
|
|
2017-07-16 20:37:27 -04:00
|
|
|
has_one :public_key, serializer: ActivityPub::PublicKeySerializer
|
|
|
|
|
2018-04-01 17:55:42 -04:00
|
|
|
has_many :virtual_tags, key: :tag
|
2018-04-14 06:41:08 -04:00
|
|
|
has_many :virtual_attachments, key: :attachment
|
2018-04-01 17:55:42 -04:00
|
|
|
|
2017-11-18 13:39:02 -05:00
|
|
|
attribute :moved_to, if: :moved?
|
2018-12-28 20:24:36 -05:00
|
|
|
attribute :also_known_as, if: :also_known_as?
|
2017-11-18 13:39:02 -05:00
|
|
|
|
2019-03-27 10:55:23 -04:00
|
|
|
class EndpointsSerializer < ActivityPub::Serializer
|
2017-09-04 12:26:33 -04:00
|
|
|
include RoutingHelper
|
|
|
|
|
|
|
|
attributes :shared_inbox
|
|
|
|
|
|
|
|
def shared_inbox
|
|
|
|
inbox_url
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
has_one :endpoints, serializer: EndpointsSerializer
|
|
|
|
|
2017-10-07 11:43:42 -04:00
|
|
|
has_one :icon, serializer: ActivityPub::ImageSerializer, if: :avatar_exists?
|
|
|
|
has_one :image, serializer: ActivityPub::ImageSerializer, if: :header_exists?
|
2017-08-08 15:52:15 -04:00
|
|
|
|
2017-11-18 13:39:02 -05:00
|
|
|
delegate :moved?, to: :object
|
|
|
|
|
2017-07-14 21:01:39 -04:00
|
|
|
def id
|
2019-07-18 19:44:42 -04:00
|
|
|
object.instance_actor? ? instance_actor_url : account_url(object)
|
2017-07-14 21:01:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def type
|
2019-07-18 19:44:42 -04:00
|
|
|
if object.instance_actor?
|
|
|
|
'Application'
|
|
|
|
elsif object.bot?
|
|
|
|
'Service'
|
2019-12-04 14:36:33 -05:00
|
|
|
elsif object.group?
|
|
|
|
'Group'
|
2019-07-18 19:44:42 -04:00
|
|
|
else
|
|
|
|
'Person'
|
|
|
|
end
|
2017-07-14 21:01:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def following
|
|
|
|
account_following_index_url(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def followers
|
|
|
|
account_followers_url(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def inbox
|
2019-07-18 19:44:42 -04:00
|
|
|
object.instance_actor? ? instance_actor_inbox_url : account_inbox_url(object)
|
2017-07-14 21:01:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def outbox
|
|
|
|
account_outbox_url(object)
|
|
|
|
end
|
|
|
|
|
2018-03-04 03:19:11 -05:00
|
|
|
def featured
|
|
|
|
account_collection_url(object, :featured)
|
|
|
|
end
|
|
|
|
|
2017-09-04 12:26:33 -04:00
|
|
|
def endpoints
|
|
|
|
object
|
2017-08-30 18:02:59 -04:00
|
|
|
end
|
|
|
|
|
2017-07-14 21:01:39 -04: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 15:52:15 -04:00
|
|
|
object.avatar
|
2017-07-14 21:01:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def image
|
2017-08-08 15:52:15 -04:00
|
|
|
object.header
|
2017-07-14 21:01:39 -04:00
|
|
|
end
|
2017-07-16 20:37:27 -04:00
|
|
|
|
|
|
|
def public_key
|
|
|
|
object
|
|
|
|
end
|
2017-08-08 15:52:15 -04:00
|
|
|
|
|
|
|
def url
|
2019-07-18 19:44:42 -04:00
|
|
|
object.instance_actor? ? about_more_url(instance_actor: true) : short_account_url(object)
|
2017-08-08 15:52:15 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def avatar_exists?
|
2018-08-23 10:39:22 -04:00
|
|
|
object.avatar?
|
2017-08-08 15:52:15 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def header_exists?
|
2018-08-23 10:39:22 -04:00
|
|
|
object.header?
|
2017-08-08 15:52:15 -04:00
|
|
|
end
|
2017-09-02 17:13:35 -04:00
|
|
|
|
|
|
|
def manually_approves_followers
|
|
|
|
object.locked
|
|
|
|
end
|
2017-11-18 13:39:02 -05:00
|
|
|
|
2018-04-01 17:55:42 -04:00
|
|
|
def virtual_tags
|
2018-12-12 23:22:01 -05:00
|
|
|
object.emojis + object.tags
|
2018-04-01 17:55:42 -04:00
|
|
|
end
|
|
|
|
|
2018-04-14 06:41:08 -04:00
|
|
|
def virtual_attachments
|
2019-03-29 21:12:06 -04:00
|
|
|
object.fields + object.identity_proofs.active
|
2018-04-14 06:41:08 -04:00
|
|
|
end
|
|
|
|
|
2017-11-18 13:39:02 -05:00
|
|
|
def moved_to
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object.moved_to_account)
|
|
|
|
end
|
2018-04-01 17:55:42 -04:00
|
|
|
|
2018-12-28 20:24:36 -05:00
|
|
|
def also_known_as?
|
|
|
|
!object.also_known_as.empty?
|
|
|
|
end
|
|
|
|
|
2018-04-01 17:55:42 -04:00
|
|
|
class CustomEmojiSerializer < ActivityPub::EmojiSerializer
|
|
|
|
end
|
2018-04-14 06:41:08 -04:00
|
|
|
|
2019-03-27 10:55:23 -04:00
|
|
|
class TagSerializer < ActivityPub::Serializer
|
2019-09-03 16:52:32 -04:00
|
|
|
context_extensions :hashtag
|
|
|
|
|
2018-12-12 23:22:01 -05: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 10:55:23 -04:00
|
|
|
class Account::FieldSerializer < ActivityPub::Serializer
|
2018-04-14 06:41:08 -04:00
|
|
|
attributes :type, :name, :value
|
|
|
|
|
|
|
|
def type
|
|
|
|
'PropertyValue'
|
|
|
|
end
|
|
|
|
|
|
|
|
def value
|
|
|
|
Formatter.instance.format_field(object.account, object.value)
|
|
|
|
end
|
|
|
|
end
|
2019-03-29 21:12:06 -04: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-14 21:01:39 -04:00
|
|
|
end
|