Class: ActiveFedora::Associations::Builder::Association
- Inherits:
-
Object
- Object
- ActiveFedora::Associations::Builder::Association
- Defined in:
- lib/active_fedora/associations/builder/association.rb
Overview
:nodoc:
Direct Known Subclasses
Constant Summary collapse
- VALID_OPTIONS =
[:class_name, :predicate, :type_validator].freeze
Class Attribute Summary collapse
-
.extensions ⇒ Object
Returns the value of attribute extensions.
Class Method Summary collapse
- .add_destroy_callbacks(model, reflection) ⇒ Object
- .better_name(name) ⇒ Object
-
.build(model, name, options, &block) ⇒ Object
configure_dependency.
- .build_scope(scope, extension) ⇒ Object
- .check_dependent_options(dependent) ⇒ Object
- .create_reflection(model, name, scope, options, extension = nil) ⇒ Object
-
.define_accessors(model, reflection) ⇒ Object
Defines the setter and getter methods for the association class Post < ActiveRecord::Base has_many :comments end.
- .define_callbacks(model, reflection) ⇒ Object
- .define_extensions(_model, _name) ⇒ Object
- .define_readers(mixin, name) ⇒ Object
- .define_validations(_model, _reflection) ⇒ Object
- .define_writers(mixin, name) ⇒ Object
- .macro ⇒ Object
- .valid_dependent_options ⇒ Object
- .valid_options(_options) ⇒ Object
- .validate_options(options) ⇒ Object
- .wrap_scope(scope, _extension) ⇒ Object
Class Attribute Details
.extensions ⇒ Object
Returns the value of attribute extensions.
4 5 6 |
# File 'lib/active_fedora/associations/builder/association.rb', line 4 def extensions @extensions end |
Class Method Details
.add_destroy_callbacks(model, reflection) ⇒ Object
122 123 124 125 |
# File 'lib/active_fedora/associations/builder/association.rb', line 122 def self.add_destroy_callbacks(model, reflection) name = reflection.name model.before_destroy ->(o) { o.association(name).handle_dependency } end |
.better_name(name) ⇒ Object
62 63 64 |
# File 'lib/active_fedora/associations/builder/association.rb', line 62 def self.better_name(name) name end |
.build(model, name, options, &block) ⇒ Object
configure_dependency
11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/active_fedora/associations/builder/association.rb', line 11 def self.build(model, name, , &block) if model.dangerous_attribute_method?(name) raise ArgumentError, "You tried to define an association named #{name} on the model #{model.name}, but " \ "this will conflict with a method #{name} already defined by ActiveFedora. " \ "Please choose a different association name." end extension = define_extensions model, name, &block reflection = create_reflection model, name, nil, , extension define_accessors(model, reflection) define_callbacks(model, reflection) define_validations model, reflection reflection end |
.build_scope(scope, extension) ⇒ Object
36 37 38 39 40 41 42 43 44 |
# File 'lib/active_fedora/associations/builder/association.rb', line 36 def self.build_scope(scope, extension) new_scope = scope new_scope = proc { instance_exec(&scope) } if scope && scope.arity.zero? new_scope = wrap_scope new_scope, extension if extension new_scope end |
.check_dependent_options(dependent) ⇒ Object
116 117 118 119 120 |
# File 'lib/active_fedora/associations/builder/association.rb', line 116 def self.(dependent) unless .include? dependent raise ArgumentError, "The :dependent option must be one of #{}, but is :#{dependent}" end end |
.create_reflection(model, name, scope, options, extension = nil) ⇒ Object
26 27 28 29 30 31 32 33 34 |
# File 'lib/active_fedora/associations/builder/association.rb', line 26 def self.create_reflection(model, name, scope, , extension = nil) raise ArgumentError, "association names must be a Symbol. You provided #{name.inspect}" unless name.is_a?(Symbol) () scope = build_scope(scope, extension) name = better_name(name) ActiveFedora::Reflection.create(macro, name, scope, , model) end |
.define_accessors(model, reflection) ⇒ Object
Defines the setter and getter methods for the association class Post < ActiveRecord::Base
has_many :comments
end
Post.first.comments and Post.first.comments= methods are defined by this method…
85 86 87 88 89 90 |
# File 'lib/active_fedora/associations/builder/association.rb', line 85 def self.define_accessors(model, reflection) mixin = model.generated_association_methods name = reflection.name define_readers(mixin, name) define_writers(mixin, name) end |
.define_callbacks(model, reflection) ⇒ Object
68 69 70 71 72 73 74 75 76 77 |
# File 'lib/active_fedora/associations/builder/association.rb', line 68 def self.define_callbacks(model, reflection) if dependent = reflection.[:dependent] (dependent) add_destroy_callbacks(model, reflection) end Association.extensions.each do |extension| extension.build model, reflection end end |
.define_extensions(_model, _name) ⇒ Object
66 |
# File 'lib/active_fedora/associations/builder/association.rb', line 66 def self.define_extensions(_model, _name); end |
.define_readers(mixin, name) ⇒ Object
92 93 94 95 96 97 98 |
# File 'lib/active_fedora/associations/builder/association.rb', line 92 def self.define_readers(mixin, name) mixin.class_eval <<-CODE, __FILE__, __LINE__ + 1 def #{name}(*args) association(:#{name}).reader(*args) end CODE end |
.define_validations(_model, _reflection) ⇒ Object
108 109 110 |
# File 'lib/active_fedora/associations/builder/association.rb', line 108 def self.define_validations(_model, _reflection) # noop end |
.define_writers(mixin, name) ⇒ Object
100 101 102 103 104 105 106 |
# File 'lib/active_fedora/associations/builder/association.rb', line 100 def self.define_writers(mixin, name) mixin.class_eval <<-CODE, __FILE__, __LINE__ + 1 def #{name}=(value) association(:#{name}).writer(value) end CODE end |
.macro ⇒ Object
50 51 52 |
# File 'lib/active_fedora/associations/builder/association.rb', line 50 def self.macro raise NotImplementedError end |
.valid_dependent_options ⇒ Object
112 113 114 |
# File 'lib/active_fedora/associations/builder/association.rb', line 112 def self. raise NotImplementedError end |
.valid_options(_options) ⇒ Object
54 55 56 |
# File 'lib/active_fedora/associations/builder/association.rb', line 54 def self.() VALID_OPTIONS + Association.extensions.flat_map(&:valid_options) end |
.validate_options(options) ⇒ Object
58 59 60 |
# File 'lib/active_fedora/associations/builder/association.rb', line 58 def self.() .assert_valid_keys(()) end |
.wrap_scope(scope, _extension) ⇒ Object
46 47 48 |
# File 'lib/active_fedora/associations/builder/association.rb', line 46 def self.wrap_scope(scope, _extension) scope end |