Sha256: 2d631bc09bcb0b1455695e3ce066e67ceb794fd0c29c9943df9520bacc3918b7

Contents?: true

Size: 1.54 KB

Versions: 130

Compression:

Stored size: 1.54 KB

Contents

module ActiveMerchant #:nodoc:  
  module Validateable #:nodoc:
    def valid?
      errors.clear

      before_validate if respond_to?(:before_validate, true)
      validate if respond_to?(:validate, true)

      errors.empty?
    end  

    def initialize(attributes = {})
      self.attributes = attributes
    end

    def errors    
      @errors ||= Errors.new(self)
    end

    private

    def attributes=(attributes)
      unless attributes.nil?
        for key, value in attributes
          send("#{key}=", value )            
        end
      end
    end  

    # This hash keeps the errors of the object
    class Errors < HashWithIndifferentAccess

      def initialize(base)
        @base = base
      end
      
      def count
        size
      end

      # returns a specific fields error message. 
      # if more than one error is available we will only return the first. If no error is available 
      # we return an empty string
      def on(field)
        self[field].to_a.first
      end

      def add(field, error)
        self[field] ||= []
        self[field] << error
      end    
      
      def add_to_base(error)
        add(:base, error)
      end

      def each_full
        full_messages.each { |msg| yield msg }      
      end

      def full_messages
        result = []

        self.each do |key, messages| 
          if key == 'base'
            result << "#{messages.first}"
          else
            result << "#{key.to_s.humanize} #{messages.first}"
          end
        end

        result
      end   
    end  
  end
end

Version data entries

130 entries across 130 versions & 31 rubygems

Version Path
bcarpenter-active_shipping-0.0.2 lib/active_shipping/lib/validateable.rb
bcarpenter-active_shipping-0.0.5 lib/active_shipping/lib/validateable.rb
bcarpenter-active_shipping-0.0.6 lib/active_shipping/lib/validateable.rb
bcarpenter-active_shipping-0.0.7 lib/active_shipping/lib/validateable.rb
johnideal-activemerchant-1.4.10 lib/active_merchant/lib/validateable.rb
johnideal-activemerchant-1.4.11 lib/active_merchant/lib/validateable.rb
johnideal-activemerchant-1.4.4 lib/active_merchant/lib/validateable.rb
johnideal-activemerchant-1.4.5 lib/active_merchant/lib/validateable.rb
johnideal-activemerchant-1.4.6 lib/active_merchant/lib/validateable.rb
johnideal-activemerchant-1.4.7 lib/active_merchant/lib/validateable.rb
johnideal-activemerchant-1.4.8 lib/active_merchant/lib/validateable.rb
martinstannard-activemerchant-0.1.0 lib/active_merchant/lib/validateable.rb
mattbauer-activemerchant-1.4.2 lib/active_merchant/lib/validateable.rb
seamusabshere-active_merchant-1.4.2.1 lib/active_merchant/lib/validateable.rb
seamusabshere-active_merchant-1.4.2.3 lib/active_merchant/lib/validateable.rb
tomriley-active_merchant-1.4.2.3 lib/active_merchant/lib/validateable.rb
tomriley-active_merchant-1.4.2.4 lib/active_merchant/lib/validateable.rb
tomriley-active_merchant-1.4.2.5 lib/active_merchant/lib/validateable.rb
tomriley-active_merchant-1.4.2.6 lib/active_merchant/lib/validateable.rb
tomriley-active_merchant-1.4.2.7 lib/active_merchant/lib/validateable.rb