Sha256: a4828db3cc07b44f010f3b5d13939111b6bc69165c5e4a5dfc10e32bb5eab5f9
Contents?: true
Size: 1.68 KB
Versions: 2
Compression:
Stored size: 1.68 KB
Contents
module JsonApiClient module Utils def self.compute_type(klass, type_name) return klass.custom_type_to_class.fetch(type_name).constantize if klass.custom_type_to_class.key?(type_name) # If the type is prefixed with a scope operator then we assume that # the type_name is an absolute reference. return type_name.constantize if type_name.match(/^::/) # Check the klass association definitions association_klass_match = klass.associations.find { |a| a.attr_name.to_s.singularize == type_name.underscore } association_klass = association_klass_match.options[:class] if association_klass_match return association_klass if association_klass # Build a list of candidates to search for candidates = [] klass.name.scan(/::|$/) { candidates.unshift "#{$`}::#{type_name}" } candidates << type_name candidates.each do |candidate| begin constant = candidate.constantize return constant if candidate == constant.to_s rescue NameError => e # We don't want to swallow NoMethodError < NameError errors raise e unless e.instance_of?(NameError) end end raise NameError, "uninitialized constant #{candidates.first}" end def self.parse_includes(klass, *tables) tables.map do |table| case table when Hash table.map do |k, v| parse_includes(klass, *v).map do |sub| "#{k}.#{sub}" end end when Array table.map do |v| parse_includes(klass, *v) end else klass.key_formatter.format(table) end end.flatten end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
json_api_client-1.23.0 | lib/json_api_client/utils.rb |
json_api_client-1.22.0 | lib/json_api_client/utils.rb |