Browse Source

Serialize language into ActivityPub JSON (#7840)

* Serialize language into ActivityPub JSON

* Only use contentMap if language is present
pull/4/head
Eugen Rochko 5 years ago
committed by GitHub
parent
commit
908a9671d0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 1 deletions
  1. +12
    -1
      app/serializers/activitypub/note_serializer.rb

+ 12
- 1
app/serializers/activitypub/note_serializer.rb View File

@ -1,12 +1,15 @@
# frozen_string_literal: true
class ActivityPub::NoteSerializer < ActiveModel::Serializer
attributes :id, :type, :summary, :content,
attributes :id, :type, :summary,
:in_reply_to, :published, :url,
:attributed_to, :to, :cc, :sensitive,
:atom_uri, :in_reply_to_atom_uri,
:conversation
attribute :content, unless: :language?
attribute :content_map, if: :language?
has_many :media_attachments, key: :attachment
has_many :virtual_tags, key: :tag
@ -26,6 +29,14 @@ class ActivityPub::NoteSerializer < ActiveModel::Serializer
Formatter.instance.format(object)
end
def content_map
{ object.language => Formatter.instance.format(object) }
end
def language?
object.language.present?
end
def in_reply_to
return unless object.reply? && !object.thread.nil?

Loading…
Cancel
Save