Class: DataMapper::Validate::UniquenessValidator

Inherits:
GenericValidator show all
Includes:
Extlib::Assertions
Defined in:
lib/dm-validations/validators/uniqueness_validator.rb

Overview

Author:

  • Guy van den Berg

Since:

  • 0.9

Instance Attribute Summary

Attributes inherited from GenericValidator

#field_name, #humanized_field_name, #if_clause, #options, #unless_clause

Instance Method Summary collapse

Methods inherited from GenericValidator

#==, #add_error, #execute?, #inspect

Constructor Details

#initialize(field_name, options = {}) ⇒ UniquenessValidator

Returns a new instance of UniquenessValidator.

Since:

  • 0.9



11
12
13
14
15
16
# File 'lib/dm-validations/validators/uniqueness_validator.rb', line 11

def initialize(field_name, options = {})
  assert_kind_of 'scope', options[:scope], Array, Symbol if options.has_key?(:scope)
  super

  @options[:allow_nil] = true unless @options.include?(:allow_nil)
end

Instance Method Details

#call(target) ⇒ Object

Since:

  • 0.9



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/dm-validations/validators/uniqueness_validator.rb', line 18

def call(target)
  value = target.send(field_name)

  return true if @options[:allow_nil] && value.blank?

  opts = {
    :fields    => target.model.key,
    field_name => value,
  }

  Array(@options[:scope]).each { |subject| opts[subject] = target.send(subject) }

  resource = DataMapper.repository(target.repository.name) { target.model.first(opts) }

  return true if resource.nil?
  return true if target.saved? && resource.key == target.key

  error_message = @options[:message] || ValidationErrors.default_error_message(:taken, field_name)
  add_error(target, error_message, field_name)

  false
end