2017-07-14 18:01:39 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Adapter < ActiveModelSerializers::Adapter::Base
|
2019-03-27 07:55:23 -07:00
|
|
|
NAMED_CONTEXT_MAP = {
|
|
|
|
activitystreams: 'https://www.w3.org/ns/activitystreams',
|
|
|
|
security: 'https://w3id.org/security/v1',
|
|
|
|
}.freeze
|
|
|
|
|
|
|
|
CONTEXT_EXTENSION_MAP = {
|
|
|
|
manually_approves_followers: { 'manuallyApprovesFollowers' => 'as:manuallyApprovesFollowers' },
|
|
|
|
sensitive: { 'sensitive' => 'as:sensitive' },
|
|
|
|
hashtag: { 'Hashtag' => 'as:Hashtag' },
|
|
|
|
moved_to: { 'movedTo' => { '@id' => 'as:movedTo', '@type' => '@id' } },
|
|
|
|
also_known_as: { 'alsoKnownAs' => { '@id' => 'as:alsoKnownAs', '@type' => '@id' } },
|
|
|
|
emoji: { 'toot' => 'http://joinmastodon.org/ns#', 'Emoji' => 'toot:Emoji' },
|
|
|
|
featured: { 'toot' => 'http://joinmastodon.org/ns#', 'featured' => { '@id' => 'toot:featured', '@type' => '@id' } },
|
|
|
|
property_value: { 'schema' => 'http://schema.org#', 'PropertyValue' => 'schema:PropertyValue', 'value' => 'schema:value' },
|
|
|
|
atom_uri: { 'ostatus' => 'http://ostatus.org#', 'atomUri' => 'ostatus:atomUri' },
|
|
|
|
conversation: { 'ostatus' => 'http://ostatus.org#', 'inReplyToAtomUri' => 'ostatus:inReplyToAtomUri', 'conversation' => 'ostatus:conversation' },
|
|
|
|
focal_point: { 'toot' => 'http://joinmastodon.org/ns#', 'focalPoint' => { '@container' => '@list', '@id' => 'toot:focalPoint' } },
|
2019-03-29 18:12:06 -07:00
|
|
|
identity_proof: { 'toot' => 'http://joinmastodon.org/ns#', 'IdentityProof' => 'toot:IdentityProof' },
|
2019-04-26 18:24:09 -07:00
|
|
|
blurhash: { 'toot' => 'http://joinmastodon.org/ns#', 'blurhash' => 'toot:blurhash' },
|
2019-08-29 15:14:36 -07:00
|
|
|
discoverable: { 'toot' => 'http://joinmastodon.org/ns#', 'discoverable' => 'toot:discoverable' },
|
2019-09-29 13:58:01 -07:00
|
|
|
voters_count: { 'toot' => 'http://joinmastodon.org/ns#', 'votersCount' => 'toot:votersCount' },
|
2017-09-02 05:01:23 -07:00
|
|
|
}.freeze
|
|
|
|
|
2017-07-14 18:01:39 -07:00
|
|
|
def self.default_key_transform
|
|
|
|
:camel_lower
|
|
|
|
end
|
|
|
|
|
2017-08-12 08:41:03 -07:00
|
|
|
def self.transform_key_casing!(value, _options)
|
|
|
|
ActivityPub::CaseTransform.camel_lower(value)
|
|
|
|
end
|
|
|
|
|
2017-07-14 18:01:39 -07:00
|
|
|
def serializable_hash(options = nil)
|
2019-09-03 13:52:32 -07:00
|
|
|
named_contexts = {}
|
|
|
|
context_extensions = {}
|
2019-12-02 09:25:43 -08:00
|
|
|
|
2019-03-27 07:55:23 -07:00
|
|
|
options = serialization_options(options)
|
2019-09-03 13:52:32 -07:00
|
|
|
serialized_hash = serializer.serializable_hash(options.merge(named_contexts: named_contexts, context_extensions: context_extensions))
|
2019-07-11 11:11:09 -07:00
|
|
|
serialized_hash = serialized_hash.select { |k, _| options[:fields].include?(k) } if options[:fields]
|
2019-03-27 07:55:23 -07:00
|
|
|
serialized_hash = self.class.transform_key_casing!(serialized_hash, instance_options)
|
|
|
|
|
2019-09-03 13:52:32 -07:00
|
|
|
{ '@context' => serialized_context(named_contexts, context_extensions) }.merge(serialized_hash)
|
2019-03-27 07:55:23 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-09-03 13:52:32 -07:00
|
|
|
def serialized_context(named_contexts_map, context_extensions_map)
|
2019-03-27 07:55:23 -07:00
|
|
|
context_array = []
|
|
|
|
|
2019-09-03 13:52:32 -07:00
|
|
|
named_contexts = [:activitystreams] + named_contexts_map.keys
|
|
|
|
context_extensions = context_extensions_map.keys
|
2019-03-27 07:55:23 -07:00
|
|
|
|
|
|
|
named_contexts.each do |key|
|
|
|
|
context_array << NAMED_CONTEXT_MAP[key]
|
|
|
|
end
|
|
|
|
|
|
|
|
extensions = context_extensions.each_with_object({}) do |key, h|
|
|
|
|
h.merge!(CONTEXT_EXTENSION_MAP[key])
|
|
|
|
end
|
|
|
|
|
|
|
|
context_array << extensions unless extensions.empty?
|
|
|
|
|
|
|
|
if context_array.size == 1
|
|
|
|
context_array.first
|
|
|
|
else
|
|
|
|
context_array
|
|
|
|
end
|
2017-07-14 18:01:39 -07:00
|
|
|
end
|
|
|
|
end
|