Module: Effective::Resources::Associations
- Included in:
- Effective::Resource
- Defined in:
- app/models/effective/resources/associations.rb
Instance Method Summary collapse
- #accepts_nested_attributes ⇒ Object
- #active_storage(name) ⇒ Object
- #active_storage_has_manys ⇒ Object
- #active_storage_has_manys_ids ⇒ Object
- #active_storage_has_ones ⇒ Object
- #active_storage_has_ones_ids ⇒ Object
- #active_storages ⇒ Object
- #associated(name) ⇒ Object
- #belong_tos ⇒ Object
-
#belong_tos_ids ⇒ Object
author_id, post_id.
- #belongs_to(name) ⇒ Object
- #belongs_to_polymorphic(name) ⇒ Object
- #effective_addresses(name) ⇒ Object
- #has_and_belongs_to_many(name) ⇒ Object
- #has_and_belongs_to_manys ⇒ Object
- #has_anys ⇒ Object
- #has_many(name) ⇒ Object
- #has_manys ⇒ Object
- #has_manys_ids ⇒ Object
- #has_one(name) ⇒ Object
- #has_ones ⇒ Object
- #has_ones_ids ⇒ Object
- #macros ⇒ Object
- #nested_resource(name) ⇒ Object
- #nested_resources ⇒ Object
- #scope?(name) ⇒ Boolean
Instance Method Details
#accepts_nested_attributes ⇒ Object
75 76 77 78 |
# File 'app/models/effective/resources/associations.rb', line 75 def accepts_nested_attributes return [] unless klass.respond_to?(:reflect_on_all_associations) klass.reflect_on_all_associations.select { |ass| ass.[:autosave] } end |
#active_storage(name) ⇒ Object
126 127 128 129 |
# File 'app/models/effective/resources/associations.rb', line 126 def active_storage(name) name = name.to_sym active_storages.find { |ass| ass.name.to_s.gsub(/_attachment(s?)\z/, '').to_sym == name } end |
#active_storage_has_manys ⇒ Object
51 52 53 54 |
# File 'app/models/effective/resources/associations.rb', line 51 def active_storage_has_manys return [] unless klass.respond_to?(:reflect_on_all_associations) klass.reflect_on_all_associations(:has_many).select { |ass| ass.class_name == 'ActiveStorage::Attachment' } end |
#active_storage_has_manys_ids ⇒ Object
56 57 58 |
# File 'app/models/effective/resources/associations.rb', line 56 def active_storage_has_manys_ids active_storage_has_manys.map { |ass| ass.name.to_s.gsub(/_attachments\z/, '').to_sym } end |
#active_storage_has_ones ⇒ Object
60 61 62 63 |
# File 'app/models/effective/resources/associations.rb', line 60 def active_storage_has_ones return [] unless klass.respond_to?(:reflect_on_all_associations) klass.reflect_on_all_associations(:has_one).select { |ass| ass.class_name == 'ActiveStorage::Attachment' } end |
#active_storage_has_ones_ids ⇒ Object
65 66 67 |
# File 'app/models/effective/resources/associations.rb', line 65 def active_storage_has_ones_ids active_storage_has_ones.map { |ass| ass.name.to_s.gsub(/_attachment\z/, '').to_sym } end |
#active_storages ⇒ Object
46 47 48 49 |
# File 'app/models/effective/resources/associations.rb', line 46 def active_storages return [] unless klass.respond_to?(:reflect_on_all_associations) klass.reflect_on_all_associations.select { |ass| ass.class_name == 'ActiveStorage::Attachment' } end |
#associated(name) ⇒ Object
80 81 82 83 |
# File 'app/models/effective/resources/associations.rb', line 80 def associated(name) name = (name.to_s.end_with?('_id') ? name.to_s[0...-3] : name).to_sym klass.reflect_on_all_associations.find { |ass| ass.name == name } || effective_addresses(name) end |
#belong_tos ⇒ Object
9 10 11 12 |
# File 'app/models/effective/resources/associations.rb', line 9 def belong_tos return [] unless klass.respond_to?(:reflect_on_all_associations) klass.reflect_on_all_associations(:belongs_to) end |
#belong_tos_ids ⇒ Object
author_id, post_id
15 16 17 |
# File 'app/models/effective/resources/associations.rb', line 15 def belong_tos_ids belong_tos.map { |ass| (ass.[:foreign_key] || "#{ass.name}_id").to_sym } end |
#belongs_to(name) ⇒ Object
85 86 87 88 89 90 91 92 |
# File 'app/models/effective/resources/associations.rb', line 85 def belongs_to(name) if name.kind_of?(String) || name.kind_of?(Symbol) name = (name.to_s.end_with?('_id') ? name.to_s[0...-3] : name).to_sym belong_tos.find { |ass| !ass.[:polymorphic] && ass.name == name } else belong_tos.find { |ass| !ass.[:polymorphic] && ass.klass == name.class } end end |
#belongs_to_polymorphic(name) ⇒ Object
94 95 96 97 |
# File 'app/models/effective/resources/associations.rb', line 94 def belongs_to_polymorphic(name) name = (name.to_s.end_with?('_id') ? name.to_s[0...-3] : name).to_sym belong_tos.find { |ass| ass.[:polymorphic] && ass.name == name } end |
#effective_addresses(name) ⇒ Object
114 115 116 117 118 119 120 121 122 123 124 |
# File 'app/models/effective/resources/associations.rb', line 114 def effective_addresses(name) return unless defined?(EffectiveAddresses) && has_many(:addresses).try(:klass) == Effective::Address name = name.to_s.downcase return unless name.end_with?('_address') || name.end_with?('_addresses') category = name.split('_').reject { |name| name == 'address' || name == 'addresses' }.join('_') return unless category.present? Effective::Address.where(category: category).where(addressable_type: class_name) end |
#has_and_belongs_to_many(name) ⇒ Object
99 100 101 102 |
# File 'app/models/effective/resources/associations.rb', line 99 def has_and_belongs_to_many(name) name = name.to_sym has_and_belongs_to_manys.find { |ass| ass.name == name } end |
#has_and_belongs_to_manys ⇒ Object
41 42 43 44 |
# File 'app/models/effective/resources/associations.rb', line 41 def has_and_belongs_to_manys return [] unless klass.respond_to?(:reflect_on_all_associations) klass.reflect_on_all_associations(:has_and_belongs_to_many) end |
#has_anys ⇒ Object
19 20 21 |
# File 'app/models/effective/resources/associations.rb', line 19 def has_anys (has_ones + has_manys + has_and_belongs_to_manys) end |
#has_many(name) ⇒ Object
104 105 106 107 |
# File 'app/models/effective/resources/associations.rb', line 104 def has_many(name) name = name.to_sym (has_manys + nested_resources).find { |ass| ass.name == name } end |
#has_manys ⇒ Object
36 37 38 39 |
# File 'app/models/effective/resources/associations.rb', line 36 def has_manys return [] unless klass.respond_to?(:reflect_on_all_associations) klass.reflect_on_all_associations(:has_many).reject { |ass| ass.[:autosave] || ass.class_name.to_s.start_with?('ActiveStorage::') } end |
#has_manys_ids ⇒ Object
23 24 25 |
# File 'app/models/effective/resources/associations.rb', line 23 def has_manys_ids (has_manys + has_and_belongs_to_manys).map { |ass| "#{ass.plural_name.singularize}_ids".to_sym } end |
#has_one(name) ⇒ Object
109 110 111 112 |
# File 'app/models/effective/resources/associations.rb', line 109 def has_one(name) name = name.to_sym has_ones.find { |ass| ass.name == name } end |
#has_ones ⇒ Object
27 28 29 30 |
# File 'app/models/effective/resources/associations.rb', line 27 def has_ones return [] unless klass.respond_to?(:reflect_on_all_associations) klass.reflect_on_all_associations(:has_one).reject { |ass| ass.class_name.to_s.start_with?('ActiveStorage::') } end |
#has_ones_ids ⇒ Object
32 33 34 |
# File 'app/models/effective/resources/associations.rb', line 32 def has_ones_ids has_ones.map { |ass| "#{ass.name}_id".to_sym } end |
#macros ⇒ Object
5 6 7 |
# File 'app/models/effective/resources/associations.rb', line 5 def macros [:belongs_to, :belongs_to_polymorphic, :has_many, :has_and_belongs_to_many, :has_one] end |
#nested_resource(name) ⇒ Object
131 132 133 134 |
# File 'app/models/effective/resources/associations.rb', line 131 def nested_resource(name) name = name.to_sym nested_resources.find { |ass| ass.name == name } end |
#nested_resources ⇒ Object
69 70 71 72 73 |
# File 'app/models/effective/resources/associations.rb', line 69 def nested_resources return [] unless klass.respond_to?(:reflect_on_all_associations) klass.reflect_on_all_associations(:has_many).select { |ass| ass.[:autosave] } + klass.reflect_on_all_associations(:has_one).select { |ass| ass.[:autosave] } end |
#scope?(name) ⇒ Boolean
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
# File 'app/models/effective/resources/associations.rb', line 136 def scope?(name) return false unless klass.respond_to?(name) is_scope = false ActiveRecord::Base.transaction do begin relation = klass.public_send(name).kind_of?(ActiveRecord::Relation) rescue => e end raise ActiveRecord::Rollback end is_scope end |