Class: Sequel::Model::Errors

Inherits:
Hash show all
Defined in:
lib/sequel/model/errors.rb

Overview

Errors represents validation errors, a simple hash subclass with a few convenience methods.

Constant Summary collapse

ATTRIBUTE_JOINER =
' and '.freeze

Instance Method Summary collapse

Methods inherited from Hash

#&, #case, #sql_expr, #sql_negate, #sql_or, #|, #~

Instance Method Details

#[](k) ⇒ Object

Assign an array of messages for each attribute on access



9
10
11
# File 'lib/sequel/model/errors.rb', line 9

def [](k)
  has_key?(k) ? super : (self[k] = [])
end

#add(att, msg) ⇒ Object

Adds an error for the given attribute.



14
15
16
# File 'lib/sequel/model/errors.rb', line 14

def add(att, msg)
  self[att] << msg
end

#countObject

Return the total number of error messages.



19
20
21
# File 'lib/sequel/model/errors.rb', line 19

def count
  values.inject(0){|m, v| m + v.length}
end

#empty?Boolean

Return true if there are no error messages, false otherwise.

Returns:

  • (Boolean)


24
25
26
# File 'lib/sequel/model/errors.rb', line 24

def empty?
  count == 0
end

#full_messagesObject

Returns an array of fully-formatted error messages.



29
30
31
32
33
34
35
# File 'lib/sequel/model/errors.rb', line 29

def full_messages
  inject([]) do |m, kv| 
    att, errors = *kv
    errors.each {|e| m << "#{Array(att).join(ATTRIBUTE_JOINER)} #{e}"}
    m
  end
end

#on(att) ⇒ Object

Returns the array of errors for the given attribute, or nil if there are no errors for the attribute.



39
40
41
42
43
# File 'lib/sequel/model/errors.rb', line 39

def on(att)
  if v = fetch(att, nil) and !v.empty?
    v
  end
end