2017-07-15 11:01:39 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::NoteSerializer < ActiveModel::Serializer
|
2018-06-19 06:43:01 +10:00
|
|
|
attributes :id, :type, :summary,
|
2017-07-15 11:01:39 +10:00
|
|
|
:in_reply_to, :published, :url,
|
2017-09-02 22:01:23 +10:00
|
|
|
:attributed_to, :to, :cc, :sensitive,
|
|
|
|
:atom_uri, :in_reply_to_atom_uri,
|
|
|
|
:conversation
|
2017-07-15 11:01:39 +10:00
|
|
|
|
2018-06-19 07:58:13 +10:00
|
|
|
attribute :content
|
2018-06-19 06:43:01 +10:00
|
|
|
attribute :content_map, if: :language?
|
|
|
|
|
2017-07-15 11:01:39 +10:00
|
|
|
has_many :media_attachments, key: :attachment
|
|
|
|
has_many :virtual_tags, key: :tag
|
|
|
|
|
2019-03-01 04:16:34 +11:00
|
|
|
has_one :replies, serializer: ActivityPub::CollectionSerializer, if: :local?
|
2019-03-01 01:22:21 +11:00
|
|
|
|
2017-07-15 11:01:39 +10:00
|
|
|
def id
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def type
|
|
|
|
'Note'
|
|
|
|
end
|
|
|
|
|
|
|
|
def summary
|
|
|
|
object.spoiler_text.presence
|
|
|
|
end
|
|
|
|
|
|
|
|
def content
|
|
|
|
Formatter.instance.format(object)
|
|
|
|
end
|
|
|
|
|
2018-06-19 06:43:01 +10:00
|
|
|
def content_map
|
|
|
|
{ object.language => Formatter.instance.format(object) }
|
|
|
|
end
|
|
|
|
|
2019-03-01 01:22:21 +11:00
|
|
|
def replies
|
2019-03-01 04:16:34 +11:00
|
|
|
replies = object.self_replies(5).pluck(:id, :uri)
|
|
|
|
last_id = replies.last&.first
|
2019-03-01 01:22:21 +11:00
|
|
|
ActivityPub::CollectionPresenter.new(
|
|
|
|
type: :unordered,
|
2019-03-01 04:16:34 +11:00
|
|
|
id: ActivityPub::TagManager.instance.replies_uri_for(object),
|
2019-03-01 01:22:21 +11:00
|
|
|
first: ActivityPub::CollectionPresenter.new(
|
|
|
|
type: :unordered,
|
2019-03-01 04:16:34 +11:00
|
|
|
part_of: ActivityPub::TagManager.instance.replies_uri_for(object),
|
|
|
|
items: replies.map(&:second),
|
|
|
|
next: last_id ? ActivityPub::TagManager.instance.replies_uri_for(object, page: true, min_id: last_id) : nil
|
2019-03-01 01:22:21 +11:00
|
|
|
)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2018-06-19 06:43:01 +10:00
|
|
|
def language?
|
|
|
|
object.language.present?
|
|
|
|
end
|
|
|
|
|
2017-07-15 11:01:39 +10:00
|
|
|
def in_reply_to
|
2017-09-16 23:00:36 +10:00
|
|
|
return unless object.reply? && !object.thread.nil?
|
2017-08-20 02:44:48 +10: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-15 11:01:39 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def published
|
|
|
|
object.created_at.iso8601
|
|
|
|
end
|
|
|
|
|
|
|
|
def url
|
|
|
|
ActivityPub::TagManager.instance.url_for(object)
|
|
|
|
end
|
|
|
|
|
2017-07-16 18:28:55 +10:00
|
|
|
def attributed_to
|
2017-07-15 11:01:39 +10: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-18 02:13:04 +11:00
|
|
|
object.active_mentions.to_a.sort_by(&:id) + object.tags + object.emojis
|
2017-07-15 11:01:39 +10:00
|
|
|
end
|
|
|
|
|
2017-08-18 05:35:00 +10:00
|
|
|
def atom_uri
|
2017-09-02 22:01:23 +10:00
|
|
|
return unless object.local?
|
|
|
|
|
2017-09-20 02:08:08 +10:00
|
|
|
OStatus::TagManager.instance.uri_for(object)
|
2017-08-18 05:35:00 +10:00
|
|
|
end
|
|
|
|
|
2017-08-27 03:55:10 +10:00
|
|
|
def in_reply_to_atom_uri
|
2017-09-16 23:00:36 +10:00
|
|
|
return unless object.reply? && !object.thread.nil?
|
2017-08-27 03:55:10 +10:00
|
|
|
|
2017-09-20 02:08:08 +10:00
|
|
|
OStatus::TagManager.instance.uri_for(object.thread)
|
2017-08-27 03:55:10 +10:00
|
|
|
end
|
|
|
|
|
2017-09-02 22:01:23 +10:00
|
|
|
def conversation
|
2017-09-12 08:57:18 +10:00
|
|
|
return if object.conversation.nil?
|
|
|
|
|
2017-09-02 22:01:23 +10:00
|
|
|
if object.conversation.uri?
|
|
|
|
object.conversation.uri
|
|
|
|
else
|
2017-09-20 02:08:08 +10:00
|
|
|
OStatus::TagManager.instance.unique_tag(object.conversation.created_at, object.conversation.id, 'Conversation')
|
2017-09-02 22:01:23 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-18 05:35:00 +10:00
|
|
|
def local?
|
|
|
|
object.account.local?
|
|
|
|
end
|
|
|
|
|
2017-07-15 11:01:39 +10:00
|
|
|
class MediaAttachmentSerializer < ActiveModel::Serializer
|
|
|
|
include RoutingHelper
|
|
|
|
|
2017-09-28 23:31:31 +10:00
|
|
|
attributes :type, :media_type, :url, :name
|
2018-03-04 17:21:41 +11:00
|
|
|
attribute :focal_point, if: :focal_point?
|
2017-07-15 11:01:39 +10:00
|
|
|
|
|
|
|
def type
|
|
|
|
'Document'
|
|
|
|
end
|
|
|
|
|
2017-09-28 23:31:31 +10:00
|
|
|
def name
|
|
|
|
object.description
|
|
|
|
end
|
|
|
|
|
2017-07-15 11:01:39 +10: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-04 17:21:41 +11: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-15 11:01:39 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
class MentionSerializer < ActiveModel::Serializer
|
|
|
|
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
|
|
|
|
|
|
|
|
class TagSerializer < ActiveModel::Serializer
|
|
|
|
include RoutingHelper
|
|
|
|
|
|
|
|
attributes :type, :href, :name
|
|
|
|
|
|
|
|
def type
|
|
|
|
'Hashtag'
|
|
|
|
end
|
|
|
|
|
|
|
|
def href
|
|
|
|
tag_url(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def name
|
|
|
|
"##{object.name}"
|
|
|
|
end
|
|
|
|
end
|
2017-09-19 10:42:40 +10:00
|
|
|
|
2017-10-08 02:43:42 +11:00
|
|
|
class CustomEmojiSerializer < ActivityPub::EmojiSerializer
|
2017-09-19 10:42:40 +10:00
|
|
|
end
|
2017-07-15 11:01:39 +10:00
|
|
|
end
|