Sha256: 9480d20839d450397d1a2a1ae916c1379578df6368124e61cb3859f536d913b2
Contents?: true
Size: 1.59 KB
Versions: 2
Compression:
Stored size: 1.59 KB
Contents
module JsonApiClient module Helpers module Associable extend ActiveSupport::Concern included do class_attribute :associations self.associations = [] include Associations::BelongsTo include Associations::HasMany include Associations::HasOne initializer :load_associations end module ClassMethods def belongs_to_associations associations.select{|association| association.is_a?(Associations::BelongsTo::Association) } end def prefix_params belongs_to_associations.map(&:param) end def prefix_path belongs_to_associations.map(&:to_prefix_path).join("/") end def path(params = nil) parts = [table_name] if params filters = params.fetch(:filter, params) slurp = filters.slice(*prefix_params) prefix_params.each do |param| filters.delete(param) end parts.unshift(prefix_path % slurp.symbolize_keys) else parts.unshift(prefix_path) end parts.reject!{|part| part == "" } File.join(*parts) rescue KeyError raise ArgumentError, "Not all prefix parameters specified" end end protected def load_associations(params) associations.each do |association| if params.has_key?(association.attr_name.to_s) set_attribute(association.attr_name, association.parse(params[association.attr_name.to_s])) end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
json_api_client-1.0.0.beta3 | lib/json_api_client/helpers/associable.rb |
json_api_client-1.0.0.beta2 | lib/json_api_client/helpers/associable.rb |