Sha256: a1a6920e52ebbf3a975476ff663214d4a87d6fe29ce1ac7196071a093a23e824

Contents?: true

Size: 888 Bytes

Versions: 1

Compression:

Stored size: 888 Bytes

Contents

$: << File.expand_path(File.dirname(__FILE__))

require 'rack-rewrite/rule'

module Rack
  # A rack middleware for defining and applying rewrite rules. In many cases you 
  # can get away with rack-rewrite instead of writing Apache mod_rewrite rules.  
  class Rewrite
    def initialize(app, &rule_block)
      @app = app
      @rule_set = RuleSet.new
      @rule_set.instance_eval(&rule_block) if block_given?
    end
    
    def call(env)
      if matched_rule = find_first_matching_rule(env)
        rack_response = matched_rule.apply!(env)
        # Don't invoke the app if applying the rule returns a rack response
        return rack_response unless rack_response === true
      end
      @app.call(env)
    end
        
    private
      def find_first_matching_rule(env) #:nodoc:
        @rule_set.rules.detect { |rule| rule.matches?(env['PATH_INFO']) }
      end    
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rack-rewrite-0.1.1 lib/rack-rewrite.rb