Sha256: a58fde4dd04b1f5b48699e75877513cd43deaf1b2d4cee37842c64bc2e53e5bb

Contents?: true

Size: 1.85 KB

Versions: 22

Compression:

Stored size: 1.85 KB

Contents

# encoding: UTF-8

module Ohm
  module Validations
    class Presenter
      class UnhandledErrors < StandardError
        attr :errors

        def initialize(errors)
          @errors = errors
        end

        def message
          "Unhandled errors: #{errors.inspect}"
        end
      end

      def initialize(errors)
        @errors = errors
        @unhandled = errors.dup
        @output = []
      end

      def on(error, message = (block_given? ? yield : raise(ArgumentError)))
        handle(error) do
          @output << message
        end
      end

      def ignore(error)
        handle(error)
      end

      def present
        yield(self)
        raise UnhandledErrors.new(@unhandled) unless @unhandled.empty?
        @output
      end

    protected

      def handle(error)
        if (errors = @errors.select {|e| error === e }).any?
          @unhandled -= errors
          yield(errors) if block_given?
        end
      end
    end

    class Errors < Array
      attr_accessor :model

      def initialize(model)
        @model = model
      end

      def present(presenter = Presenter, &block)
        presenter.new(model.errors).present(&block)
      end
    end

    def valid?
      errors.clear
      validate
      errors.empty?
    end

    def validate
    end

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

  protected

    def assert_format(att, format, error = [att, :format])
      if assert_present(att, error)
        assert(send(att).to_s.match(format), error)
      end
    end

    def assert_present(att, error = [att, :not_present])
      assert(!send(att).to_s.empty?, error)
    end

    def assert_numeric(att, error = [att, :not_numeric])
      if assert_present(att, error)
        assert_format(att, /^\d+$/, error)
      end
    end

    def assert(value, error)
      value or errors.push(error) && false
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
ohm-0.1.0.rc6 lib/ohm/validations.rb
ohm-0.1.0.rc5 lib/ohm/validations.rb
ohm-0.0.38 lib/ohm/validations.rb
ohm-0.0.37 lib/ohm/validations.rb
ohm-0.1.0.rc4 lib/ohm/validations.rb
ohm-0.0.36 lib/ohm/validations.rb
ohm-0.1.0.rc2 lib/ohm/validations.rb
ohm-0.1.0.rc1 lib/ohm/validations.rb
ohm-0.0.35 lib/ohm/validations.rb
ohm-0.0.34 lib/ohm/validations.rb
ohm-0.0.33 lib/ohm/validations.rb
ohm-0.0.32 lib/ohm/validations.rb
ohm-0.0.31 lib/ohm/validations.rb
ohm-0.0.30 lib/ohm/validations.rb
ohm-0.0.29 lib/ohm/validations.rb
ohm-0.0.28 lib/ohm/validations.rb
ohm-0.0.27 lib/ohm/validations.rb
ohm-0.0.26 lib/ohm/validations.rb
ohm-0.0.25 lib/ohm/validations.rb
ohm-0.0.24 lib/ohm/validations.rb