Class: ParanoidValidations::UniquenessWithoutDeletedValidator

Inherits:
ActiveRecord::Validations::UniquenessValidator
  • Object
show all
Defined in:
lib/validations/uniqueness_without_deleted.rb

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/validations/uniqueness_without_deleted.rb', line 5

def validate_each(record, attribute, value)
  finder_class = find_finder_class_for(record)

  if value && record.class.serialized_attributes.key?(attribute.to_s)
    value = YAML.dump value
  end

  sql, params = mount_sql_and_params(finder_class, record.class.quoted_table_name, attribute, value)

  # This is the only changed line from the base class version - it does finder_class.unscoped
  relation = finder_class.where(sql, *params)
  
  Array.wrap(options[:scope]).each do |scope_item|
    scope_value = record.send(scope_item)
    relation = relation.where(scope_item => scope_value)
  end

  if record.persisted?
    # TODO : This should be in Arel
    relation = relation.where("#{record.class.quoted_table_name}.#{record.class.primary_key} <> ?", record.send(:id))
  end

  if relation.exists?
    record.errors.add(attribute, :taken, options.except(:case_sensitive, :scope).merge(:value => value))
  end
end