2017-07-15 10:01:39 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Adapter < ActiveModelSerializers::Adapter::Base
|
2022-02-03 22:07:29 +09:00
|
|
|
include ContextHelper
|
2017-09-02 21:01:23 +09:00
|
|
|
|
2017-07-15 10:01:39 +09:00
|
|
|
def self.default_key_transform
|
|
|
|
:camel_lower
|
|
|
|
end
|
|
|
|
|
2017-08-13 00:41:03 +09:00
|
|
|
def self.transform_key_casing!(value, _options)
|
|
|
|
ActivityPub::CaseTransform.camel_lower(value)
|
|
|
|
end
|
|
|
|
|
2017-07-15 10:01:39 +09:00
|
|
|
def serializable_hash(options = nil)
|
2022-02-03 22:07:29 +09:00
|
|
|
named_contexts = { activitystreams: NAMED_CONTEXT_MAP['activitystreams'] }
|
2019-09-04 05:52:32 +09:00
|
|
|
context_extensions = {}
|
2019-12-03 02:25:43 +09:00
|
|
|
|
2019-03-27 23:55:23 +09:00
|
|
|
options = serialization_options(options)
|
2019-09-04 05:52:32 +09:00
|
|
|
serialized_hash = serializer.serializable_hash(options.merge(named_contexts: named_contexts, context_extensions: context_extensions))
|
2019-07-12 03:11:09 +09:00
|
|
|
serialized_hash = serialized_hash.select { |k, _| options[:fields].include?(k) } if options[:fields]
|
2019-03-27 23:55:23 +09:00
|
|
|
serialized_hash = self.class.transform_key_casing!(serialized_hash, instance_options)
|
|
|
|
|
2019-09-04 05:52:32 +09:00
|
|
|
{ '@context' => serialized_context(named_contexts, context_extensions) }.merge(serialized_hash)
|
2019-03-27 23:55:23 +09:00
|
|
|
end
|
2017-07-15 10:01:39 +09:00
|
|
|
end
|