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