2017-07-14 18:01:39 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 07:55:23 -07:00
|
|
|
class ActivityPub::NoteSerializer < ActivityPub::Serializer
|
2019-09-29 13:58:01 -07:00
|
|
|
context_extensions :atom_uri, :conversation, :sensitive, :voters_count
|
2019-03-27 07:55:23 -07:00
|
|
|
|
2018-06-18 13:43:01 -07:00
|
|
|
attributes :id, :type, :summary,
|
2017-07-14 18:01:39 -07:00
|
|
|
:in_reply_to, :published, :url,
|
2017-09-02 05:01:23 -07:00
|
|
|
:attributed_to, :to, :cc, :sensitive,
|
2019-07-28 08:47:37 -07:00
|
|
|
:atom_uri, :in_reply_to_atom_uri,
|
|
|
|
:conversation
|
2017-07-14 18:01:39 -07:00
|
|
|
|
2018-06-18 14:58:13 -07:00
|
|
|
attribute :content
|
2018-06-18 13:43:01 -07:00
|
|
|
attribute :content_map, if: :language?
|
|
|
|
|
2017-07-14 18:01:39 -07:00
|
|
|
has_many :media_attachments, key: :attachment
|
|
|
|
has_many :virtual_tags, key: :tag
|
|
|
|
|
2019-02-28 09:16:34 -08:00
|
|
|
has_one :replies, serializer: ActivityPub::CollectionSerializer, if: :local?
|
2019-02-28 06:22:21 -08:00
|
|
|
|
2019-03-04 18:51:18 -08:00
|
|
|
has_many :poll_options, key: :one_of, if: :poll_and_not_multiple?
|
|
|
|
has_many :poll_options, key: :any_of, if: :poll_and_multiple?
|
2019-03-03 13:18:23 -08:00
|
|
|
|
|
|
|
attribute :end_time, if: :poll_and_expires?
|
|
|
|
attribute :closed, if: :poll_and_expired?
|
|
|
|
|
2019-09-29 13:58:01 -07:00
|
|
|
attribute :voters_count, if: :poll_and_voters_count?
|
|
|
|
|
2017-07-14 18:01:39 -07:00
|
|
|
def id
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def type
|
2019-03-27 20:44:59 -07:00
|
|
|
object.preloadable_poll ? 'Question' : 'Note'
|
2017-07-14 18:01:39 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def summary
|
|
|
|
object.spoiler_text.presence
|
|
|
|
end
|
|
|
|
|
|
|
|
def content
|
|
|
|
Formatter.instance.format(object)
|
|
|
|
end
|
|
|
|
|
2018-06-18 13:43:01 -07:00
|
|
|
def content_map
|
|
|
|
{ object.language => Formatter.instance.format(object) }
|
|
|
|
end
|
|
|
|
|
2019-02-28 06:22:21 -08:00
|
|
|
def replies
|
2019-02-28 09:16:34 -08:00
|
|
|
replies = object.self_replies(5).pluck(:id, :uri)
|
|
|
|
last_id = replies.last&.first
|
2019-03-03 13:18:23 -08:00
|
|
|
|
2019-02-28 06:22:21 -08:00
|
|
|
ActivityPub::CollectionPresenter.new(
|
|
|
|
type: :unordered,
|
2019-02-28 09:16:34 -08:00
|
|
|
id: ActivityPub::TagManager.instance.replies_uri_for(object),
|
2019-02-28 06:22:21 -08:00
|
|
|
first: ActivityPub::CollectionPresenter.new(
|
|
|
|
type: :unordered,
|
2019-02-28 09:16:34 -08:00
|
|
|
part_of: ActivityPub::TagManager.instance.replies_uri_for(object),
|
|
|
|
items: replies.map(&:second),
|
2019-08-16 13:58:51 -07:00
|
|
|
next: last_id ? ActivityPub::TagManager.instance.replies_uri_for(object, page: true, min_id: last_id) : ActivityPub::TagManager.instance.replies_uri_for(object, page: true, only_other_accounts: true)
|
2019-02-28 06:22:21 -08:00
|
|
|
)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2018-06-18 13:43:01 -07:00
|
|
|
def language?
|
|
|
|
object.language.present?
|
|
|
|
end
|
|
|
|
|
2017-07-14 18:01:39 -07:00
|
|
|
def in_reply_to
|
2017-09-16 06:00:36 -07:00
|
|
|
return unless object.reply? && !object.thread.nil?
|
2017-08-19 09:44:48 -07:00
|
|
|
|
|
|
|
if object.thread.uri.nil? || object.thread.uri.start_with?('http')
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object.thread)
|
|
|
|
else
|
|
|
|
object.thread.url
|
|
|
|
end
|
2017-07-14 18:01:39 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def published
|
|
|
|
object.created_at.iso8601
|
|
|
|
end
|
|
|
|
|
|
|
|
def url
|
|
|
|
ActivityPub::TagManager.instance.url_for(object)
|
|
|
|
end
|
|
|
|
|
2017-07-16 01:28:55 -07:00
|
|
|
def attributed_to
|
2017-07-14 18:01:39 -07:00
|
|
|
ActivityPub::TagManager.instance.uri_for(object.account)
|
|
|
|
end
|
|
|
|
|
|
|
|
def to
|
|
|
|
ActivityPub::TagManager.instance.to(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def cc
|
|
|
|
ActivityPub::TagManager.instance.cc(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def virtual_tags
|
2018-10-17 08:13:04 -07:00
|
|
|
object.active_mentions.to_a.sort_by(&:id) + object.tags + object.emojis
|
2017-07-14 18:01:39 -07:00
|
|
|
end
|
|
|
|
|
2017-08-17 12:35:00 -07:00
|
|
|
def atom_uri
|
2017-09-02 05:01:23 -07:00
|
|
|
return unless object.local?
|
|
|
|
|
2017-09-19 09:08:08 -07:00
|
|
|
OStatus::TagManager.instance.uri_for(object)
|
2017-08-17 12:35:00 -07:00
|
|
|
end
|
|
|
|
|
2017-08-26 10:55:10 -07:00
|
|
|
def in_reply_to_atom_uri
|
2017-09-16 06:00:36 -07:00
|
|
|
return unless object.reply? && !object.thread.nil?
|
2017-08-26 10:55:10 -07:00
|
|
|
|
2017-09-19 09:08:08 -07:00
|
|
|
OStatus::TagManager.instance.uri_for(object.thread)
|
2017-08-26 10:55:10 -07:00
|
|
|
end
|
|
|
|
|
2019-07-28 08:47:37 -07:00
|
|
|
def conversation
|
|
|
|
return if object.conversation.nil?
|
|
|
|
|
|
|
|
if object.conversation.uri?
|
|
|
|
object.conversation.uri
|
|
|
|
else
|
|
|
|
OStatus::TagManager.instance.unique_tag(object.conversation.created_at, object.conversation.id, 'Conversation')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-17 12:35:00 -07:00
|
|
|
def local?
|
|
|
|
object.account.local?
|
|
|
|
end
|
|
|
|
|
2019-03-04 18:51:18 -08:00
|
|
|
def poll_options
|
2019-03-27 20:44:59 -07:00
|
|
|
object.preloadable_poll.loaded_options
|
2019-03-03 13:18:23 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def poll_and_multiple?
|
2019-03-27 20:44:59 -07:00
|
|
|
object.preloadable_poll&.multiple?
|
2019-03-03 13:18:23 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def poll_and_not_multiple?
|
2019-03-27 20:44:59 -07:00
|
|
|
object.preloadable_poll && !object.preloadable_poll.multiple?
|
2019-03-03 13:18:23 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def closed
|
2019-03-27 20:44:59 -07:00
|
|
|
object.preloadable_poll.expires_at.iso8601
|
2019-03-03 13:18:23 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
alias end_time closed
|
|
|
|
|
2019-09-29 13:58:01 -07:00
|
|
|
def voters_count
|
|
|
|
object.preloadable_poll.voters_count
|
|
|
|
end
|
|
|
|
|
2019-03-03 13:18:23 -08:00
|
|
|
def poll_and_expires?
|
2019-03-27 20:44:59 -07:00
|
|
|
object.preloadable_poll&.expires_at&.present?
|
2019-03-03 13:18:23 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def poll_and_expired?
|
2019-03-27 20:44:59 -07:00
|
|
|
object.preloadable_poll&.expired?
|
2019-03-03 13:18:23 -08:00
|
|
|
end
|
|
|
|
|
2019-09-29 13:58:01 -07:00
|
|
|
def poll_and_voters_count?
|
|
|
|
object.preloadable_poll&.voters_count
|
|
|
|
end
|
|
|
|
|
2019-03-27 07:55:23 -07:00
|
|
|
class MediaAttachmentSerializer < ActivityPub::Serializer
|
2019-09-03 13:52:32 -07:00
|
|
|
context_extensions :blurhash, :focal_point
|
|
|
|
|
2017-07-14 18:01:39 -07:00
|
|
|
include RoutingHelper
|
|
|
|
|
2019-04-26 18:24:09 -07:00
|
|
|
attributes :type, :media_type, :url, :name, :blurhash
|
2018-03-03 22:21:41 -08:00
|
|
|
attribute :focal_point, if: :focal_point?
|
2017-07-14 18:01:39 -07:00
|
|
|
|
|
|
|
def type
|
|
|
|
'Document'
|
|
|
|
end
|
|
|
|
|
2017-09-28 06:31:31 -07:00
|
|
|
def name
|
|
|
|
object.description
|
|
|
|
end
|
|
|
|
|
2017-07-14 18:01:39 -07:00
|
|
|
def media_type
|
|
|
|
object.file_content_type
|
|
|
|
end
|
|
|
|
|
|
|
|
def url
|
|
|
|
object.local? ? full_asset_url(object.file.url(:original, false)) : object.remote_url
|
|
|
|
end
|
2018-03-03 22:21:41 -08:00
|
|
|
|
|
|
|
def focal_point?
|
|
|
|
object.file.meta.is_a?(Hash) && object.file.meta['focus'].is_a?(Hash)
|
|
|
|
end
|
|
|
|
|
|
|
|
def focal_point
|
|
|
|
[object.file.meta['focus']['x'], object.file.meta['focus']['y']]
|
|
|
|
end
|
2017-07-14 18:01:39 -07:00
|
|
|
end
|
|
|
|
|
2019-03-27 07:55:23 -07:00
|
|
|
class MentionSerializer < ActivityPub::Serializer
|
2017-07-14 18:01:39 -07:00
|
|
|
attributes :type, :href, :name
|
|
|
|
|
|
|
|
def type
|
|
|
|
'Mention'
|
|
|
|
end
|
|
|
|
|
|
|
|
def href
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object.account)
|
|
|
|
end
|
|
|
|
|
|
|
|
def name
|
|
|
|
"@#{object.account.acct}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-27 07:55:23 -07:00
|
|
|
class TagSerializer < ActivityPub::Serializer
|
2019-09-03 13:52:32 -07:00
|
|
|
context_extensions :hashtag
|
|
|
|
|
2017-07-14 18:01:39 -07:00
|
|
|
include RoutingHelper
|
|
|
|
|
|
|
|
attributes :type, :href, :name
|
|
|
|
|
|
|
|
def type
|
|
|
|
'Hashtag'
|
|
|
|
end
|
|
|
|
|
|
|
|
def href
|
|
|
|
tag_url(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def name
|
|
|
|
"##{object.name}"
|
|
|
|
end
|
|
|
|
end
|
2017-09-18 17:42:40 -07:00
|
|
|
|
2017-10-07 08:43:42 -07:00
|
|
|
class CustomEmojiSerializer < ActivityPub::EmojiSerializer
|
2017-09-18 17:42:40 -07:00
|
|
|
end
|
2019-03-03 13:18:23 -08:00
|
|
|
|
2019-03-27 07:55:23 -07:00
|
|
|
class OptionSerializer < ActivityPub::Serializer
|
|
|
|
class RepliesSerializer < ActivityPub::Serializer
|
2019-03-03 13:18:23 -08:00
|
|
|
attributes :type, :total_items
|
|
|
|
|
|
|
|
def type
|
|
|
|
'Collection'
|
|
|
|
end
|
|
|
|
|
|
|
|
def total_items
|
|
|
|
object.votes_count
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
attributes :type, :name
|
|
|
|
|
|
|
|
has_one :replies, serializer: ActivityPub::NoteSerializer::OptionSerializer::RepliesSerializer
|
|
|
|
|
|
|
|
def type
|
|
|
|
'Note'
|
|
|
|
end
|
|
|
|
|
|
|
|
def name
|
|
|
|
object.title
|
|
|
|
end
|
|
|
|
|
|
|
|
def replies
|
|
|
|
object
|
|
|
|
end
|
|
|
|
end
|
2017-07-14 18:01:39 -07:00
|
|
|
end
|