Sha256: 1d8426e7ce2da9d43bca06baba7492db3d269093d0f841f1bff4a779c4d5ed4e

Contents?: true

Size: 1.93 KB

Versions: 46

Compression:

Stored size: 1.93 KB

Contents

# frozen-string-literal: true

module Sequel
  class Model
    # Errors represents validation errors, a simple hash subclass
    # with a few convenience methods.
    class Errors < ::Hash
      # Adds an error for the given attribute.
      #
      #   errors.add(:name, 'is not valid') if name == 'invalid'
      def add(att, msg)
        fetch(att){self[att] = []} << msg
      end

      # Return the total number of error messages.
      #
      #   errors.count # => 3
      def count
        values.inject(0){|m, v| m + v.length}
      end
       
      # Return true if there are no error messages, false otherwise.
      def empty?
        count == 0
      end
      
      # Returns an array of fully-formatted error messages.
      #
      #   errors.full_messages
      #   # => ['name is not valid',
      #   #     'hometown is not at least 2 letters']
      #
      # If the message is a Sequel::LiteralString, it will be used literally, without the column name:
      #
      #   errors.add(:name, Sequel.lit("Album name is not valid"))
      #   errors.full_messages
      #   # => ['Album name is not valid']
      def full_messages
        inject([]) do |m, kv| 
          att, errors = *kv
          errors.each {|e| m << (e.is_a?(LiteralString) ? e : full_message(att, e))}
          m
        end
      end
      
      # Returns the array of errors for the given attribute, or nil
      # if there are no errors for the attribute.
      #
      #   errors.on(:name) # => ['name is not valid']
      #   errors.on(:id) # => nil
      def on(att)
        if v = fetch(att, nil) and !v.empty?
          v
        end
      end

      private

      # Create full error message to use for the given attribute (or array of attributes)
      # and error message. This can be overridden for easier internalization.
      def full_message(att, error_msg)
        att = att.join(' and ') if att.is_a?(Array)
        "#{att} #{error_msg}"
      end
    end
  end
end

Version data entries

46 entries across 46 versions & 2 rubygems

Version Path
sequel-5.86.0 lib/sequel/model/errors.rb
sequel-5.85.0 lib/sequel/model/errors.rb
sequel-5.84.0 lib/sequel/model/errors.rb
sequel-5.83.1 lib/sequel/model/errors.rb
sequel-5.83.0 lib/sequel/model/errors.rb
sequel-5.82.0 lib/sequel/model/errors.rb
sequel-5.81.0 lib/sequel/model/errors.rb
sequel-5.80.0 lib/sequel/model/errors.rb
sequel-5.79.0 lib/sequel/model/errors.rb
sequel-5.78.0 lib/sequel/model/errors.rb
sequel-5.77.0 lib/sequel/model/errors.rb
sequel-5.76.0 lib/sequel/model/errors.rb
sequel-5.75.0 lib/sequel/model/errors.rb
sequel-5.74.0 lib/sequel/model/errors.rb
sequel-5.73.0 lib/sequel/model/errors.rb
sequel-5.72.0 lib/sequel/model/errors.rb
sequel-5.71.0 lib/sequel/model/errors.rb
sequel-5.70.0 lib/sequel/model/errors.rb
sequel-5.69.0 lib/sequel/model/errors.rb
sequel-5.68.0 lib/sequel/model/errors.rb