7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# File 'lib/has_constant/orm/active_model.rb', line 7
def has_constant( name, values = lambda { I18n.t(name) }, options = {} )
super(name, values, options)
singular = (options[:accessor] || name.to_s.singularize).to_s
define_method(singular) do
if read_attribute(singular)
if values.is_a?(Array)
self.class.send(name)[read_attribute(singular).to_i]
elsif values.is_a?(Hash)
HashWithIndifferentAccess.new(self.class.send(name))[read_attribute(singular)]
end
end
end
define_method("#{singular}=") do |val|
if values.is_a?(Array) && val.instance_of?(String)
write_attribute singular.to_sym, self.class.send(name.to_s).index(val)
elsif values.is_a?(Hash) && values.has_value?(val)
write_attribute singular.to_sym, values.invert[val].to_s
else
write_attribute singular.to_sym, val
end
end
class_eval do
if respond_to?(:scope)
scope :by_constant, lambda { |constant,value| { :conditions =>
{ constant.to_sym =>
eval("#{self.to_s}.#{constant.pluralize}.index(value)") } } }
scope "#{singular}_is".to_sym, lambda { |*values| { :conditions =>
{ singular.to_sym => indexes_for(name, values) }
} }
scope "#{singular}_is_not".to_sym, lambda { |*values| {
:conditions => ["#{singular} NOT IN (?)",
indexes_for(name, values)] } }
else
named_scope :by_constant, lambda { |constant,value| {
:conditions =>
{ constant.to_sym =>
eval("#{self.to_s}.#{constant.pluralize}.index(value)") } } }
named_scope "#{singular}_is".to_sym, lambda { |*values| {
:conditions => { singular.to_sym => indexes_for(name, values) }
} }
named_scope "#{singular}_is_not".to_sym, lambda { |*values| {
:conditions => ["#{singular} NOT IN (?)",
indexes_for(name, values)] } }
end
end
end
|