Sha256: 68dfcc6b79bc5c19d16c536e2af679cc6d37b9ce1a2f503034dcc6ebd8fd022e

Contents?: true

Size: 1.26 KB

Versions: 2

Compression:

Stored size: 1.26 KB

Contents

class Usher
  class Route
    class Variable
      attr_reader :type, :name, :validator, :transformer, :regex_matcher
      attr_accessor :look_ahead
      
      def initialize(type, name, validator = nil, transformer = nil, regex_matcher = nil)
        @type = type
        @name = :"#{name}"
        @validator = validator
        @transformer = transformer
        @regex_matcher = regex_matcher
      end

      def to_s
        "#{type}#{name}"
      end
      
      def transform!(val)
        return val unless @transformer

        case @transformer
        when Proc
          @transformer.call(val)
        when Symbol
          val.send(@transformer)
        end
      rescue Exception => e
        raise ValidationException.new("#{val} could not be successfully transformed by #{@transformer}, root cause #{e.inspect}")
      end

      def valid!(val)
        case @validator
        when Proc
          @validator.call(val)
        else
          @validator === val or raise
        end if @validator
      rescue Exception => e
        raise ValidationException.new("#{val} does not conform to #{@validator}, root cause #{e.inspect}")
      end
  
      def ==(o)
        o && (o.type == @type && o.name == @name && o.validator == @validator)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
joshbuddy-usher-0.4.0 lib/usher/route/variable.rb
joshbuddy-usher-0.4.1 lib/usher/route/variable.rb