This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-08-12 17:41:03 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module ActivityPub::CaseTransform
|
|
|
|
class << self
|
|
|
|
def camel_lower_cache
|
|
|
|
@camel_lower_cache ||= {}
|
|
|
|
end
|
|
|
|
|
|
|
|
def camel_lower(value)
|
|
|
|
case value
|
|
|
|
when Array then value.map { |item| camel_lower(item) }
|
|
|
|
when Hash then value.deep_transform_keys! { |key| camel_lower(key) }
|
|
|
|
when Symbol then camel_lower(value.to_s).to_sym
|
|
|
|
when String
|
|
|
|
camel_lower_cache[value] ||= if value.start_with?('_:')
|
2023-02-22 01:54:36 +01:00
|
|
|
"_:#{value.gsub(/\A_:/, '').underscore.camelize(:lower)}"
|
2017-08-12 17:41:03 +02:00
|
|
|
else
|
|
|
|
value.underscore.camelize(:lower)
|
|
|
|
end
|
|
|
|
else value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|