1
+ module Bluff
2
+ module Builder
3
+ module ClassMethods
4
+ # def insist(field)
5
+ # raise ArgumentError, "#{field} cannot be bluffed for #{target}"
6
+ # end
7
+
8
+ # options: class_name
9
+ def for ( field , options = { } , &block )
10
+ options = { :bang => true } . merge ( options )
11
+
12
+ extend_bluff ( field , options , &block )
13
+ extend_target ( field , options )
14
+ end
15
+
16
+ private
17
+ def extend_bluff ( field , options , &block )
18
+ define_bluff ( field , &block )
19
+ define_bluff_bang ( field ) if options [ :bang ]
20
+ end
21
+
22
+ def define_bluff ( field , &block )
23
+ define_singleton_method ( field ) do |*args |
24
+ bluffed_object = nil
25
+
26
+ config . max_attempts . times do
27
+ bluffed_object = block . call ( *args )
28
+ break if !bluffed_object . respond_to? ( :valid? ) || bluffed_object . valid?
29
+ puts "!!!! FAILED BLUFF -- REATTEMPTING"
30
+ end
31
+
32
+ bluffed_object
33
+ end
34
+ end
35
+
36
+ def define_bluff_bang ( field )
37
+ define_singleton_method "#{ field } !" do |*args |
38
+ send ( field , *args ) . tap do |record |
39
+ ActiveRecord ::Base . transaction do
40
+ record . class . reflect_on_all_associations ( :belongs_to ) . each do |reflection |
41
+ association = record . send ( reflection . name )
42
+ association . save! if association && association . new_record?
43
+ end
44
+
45
+ record . save!
46
+ end
47
+ end
48
+ end
49
+ end
50
+
51
+ def extend_target ( field , options )
52
+ class_name = options [ :class_name ] || field . to_s . classify
53
+
54
+ if Kernel . const_defined? ( class_name )
55
+ klass = Kernel . const_get ( class_name )
56
+
57
+ # just forward the calls back to Bluff
58
+ klass . define_singleton_method :bluff do |*args |
59
+ Bluff . send ( field , *args )
60
+ end
61
+
62
+ if options [ :bang ]
63
+ klass . define_singleton_method :bluff! do |*args |
64
+ Bluff . send ( "#{ field } !" , *args )
65
+ end
66
+ end
67
+ else
68
+ # not a big deal. bluff might be data instead of a model.
69
+ # puts "Bluff class not found: #{class_name}"
70
+ end
71
+ end
72
+ end
73
+ end
74
+ end
0 commit comments