Sha256: b024e1c76e04215d3b41dc01186970668e28a7d07f95004e07e6c9b329d8301d

Contents?: true

Size: 1.06 KB

Versions: 4

Compression:

Stored size: 1.06 KB

Contents

module Rasti
  module Web
    class Router

      VERBS = %w(delete get head options patch post put).freeze

      NOT_FOUND_PATTERN = '/404'

      VERBS.each do |verb|
        define_method verb do |pattern, endpoint=nil, &block|
          routes[verb] << Route.new(pattern, endpoint, &block)
        end
      end

      def not_found(endpoint=nil, &block)
        @not_found_route = Route.new(NOT_FOUND_PATTERN, endpoint, &block)
      end

      def call(env)
        route = route_for env 
        env[ROUTE_PARAMS] = route.extract_params env['PATH_INFO']
        route.endpoint.call env
      end

      private

      def routes
        @routes ||= Hash.new { |h,k| h[k] = [] }
      end

      def route_for(env)
        routes[env['REQUEST_METHOD'].downcase].detect { |r| r.match? env['PATH_INFO'] } || not_found_route
      end

      def not_found_route
        @not_found_route ||= Route.new NOT_FOUND_PATTERN do |request, response, render|
          render.status 404, "Not found: #{request.request_method} #{request.path_info}"
        end
      end

    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rasti-web-0.0.4 lib/rasti/web/router.rb
rasti-web-0.0.3 lib/rasti/web/router.rb
rasti-web-0.0.2 lib/rasti/web/router.rb
rasti-web-0.0.1 lib/rasti/web/router.rb