Sha256: a6ff45a339aa9e494e8d2bd5a7923cf72f5104c90354995dfeb485553f5e9464
Contents?: true
Size: 1.71 KB
Versions: 2
Compression:
Stored size: 1.71 KB
Contents
# frozen_string_literal: true module Dynamoid # The belongs_to association. For belongs_to, we reference only a single target instead of multiple records; that target is the # object to which the association object is associated. module Associations # @private class BelongsTo include SingleAssociation def declaration_field_name options[:foreign_key] || "#{name}_ids" end def declaration_field_type if options[:foreign_key] target_class.attributes[target_class.hash_key][:type] else :set end end # Override default implementation # to handle case when we store id as scalar value, not as collection def associate(hash_key) target.send(target_association).disassociate(source.hash_key) if target && target_association if options[:foreign_key] source.update_attribute(source_attribute, hash_key) else source.update_attribute(source_attribute, Set[hash_key]) end end private # Find the target association, either has_many or has_one. Uses either options[:inverse_of] or the source class name and default parsing to # return the most likely name for the target association. # # @since 0.2.0 def target_association name = options[:inverse_of] || source.class.to_s.underscore.pluralize.to_sym if target_class.associations.dig(name, :type) == :has_many return name end name = options[:inverse_of] || source.class.to_s.underscore.to_sym if target_class.associations.dig(name, :type) == :has_one return name # rubocop:disable Style/RedundantReturn end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dynamoid-3.11.0 | lib/dynamoid/associations/belongs_to.rb |
dynamoid-3.10.0 | lib/dynamoid/associations/belongs_to.rb |