ActiveModel::EachValidator
Unfortunately, we have to tie Uniqueness validators to a class.
# File lib/active_record/validations/uniqueness.rb, line 11
11: def setup(klass)
12: @klass = klass
13: end
# File lib/active_record/validations/uniqueness.rb, line 15
15: def validate_each(record, attribute, value)
16: finder_class = find_finder_class_for(record)
17: table = finder_class.unscoped
18:
19: table_name = record.class.quoted_table_name
20:
21: if value && record.class.serialized_attributes.key?(attribute.to_s)
22: value = YAML.dump value
23: end
24:
25: sql, params = mount_sql_and_params(finder_class, table_name, attribute, value)
26:
27: relation = table.where(sql, *params)
28:
29: Array.wrap(options[:scope]).each do |scope_item|
30: scope_value = record.send(scope_item)
31: relation = relation.where(scope_item => scope_value)
32: end
33:
34: if record.persisted?
35: # TODO : This should be in Arel
36: relation = relation.where("#{record.class.quoted_table_name}.#{record.class.primary_key} <> ?", record.send(:id))
37: end
38:
39: if relation.exists?
40: record.errors.add(attribute, :taken, options.except(:case_sensitive, :scope).merge(:value => value))
41: end
42: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.