mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
52 lines
1.4 KiB
Ruby
52 lines
1.4 KiB
Ruby
require 'active_model/global_locator'
|
|
require 'active_model/global_identification'
|
|
|
|
module ActiveJob
|
|
class Arguments
|
|
TYPE_WHITELIST = [ NilClass, Fixnum, Float, String, TrueClass, FalseClass, Bignum ]
|
|
|
|
def self.serialize(arguments)
|
|
arguments.map { |argument| serialize_argument(argument) }
|
|
end
|
|
|
|
def self.deserialize(arguments)
|
|
arguments.map { |argument| deserialize_argument(argument) }
|
|
end
|
|
|
|
private
|
|
def self.serialize_argument(argument)
|
|
case argument
|
|
when ActiveModel::GlobalIdentification
|
|
argument.global_id
|
|
when *TYPE_WHITELIST
|
|
argument
|
|
when Array
|
|
serialize(argument)
|
|
when Hash
|
|
Hash[ argument.map { |key, value| [ serialize_hash_key(key), serialize_argument(value) ] } ]
|
|
else
|
|
raise "Unsupported argument type: #{argument.class.name}"
|
|
end
|
|
end
|
|
|
|
def self.deserialize_argument(argument)
|
|
case argument
|
|
when Array
|
|
deserialize(argument)
|
|
when Hash
|
|
Hash[ argument.map { |key, value| [ key, deserialize_argument(value) ] } ].with_indifferent_access
|
|
else
|
|
ActiveModel::GlobalLocator.locate(argument) || argument
|
|
end
|
|
end
|
|
|
|
def self.serialize_hash_key(key)
|
|
case key
|
|
when String, Symbol
|
|
key.to_s
|
|
else
|
|
raise "Unsupported hash key type: #{key.class.name}"
|
|
end
|
|
end
|
|
end
|
|
end
|