Sha256: 725d63ba97802bd5ec94a0b77248526939387a6e9996fad3760e4d88f405e110

Contents?: true

Size: 1.98 KB

Versions: 2

Compression:

Stored size: 1.98 KB

Contents

require 'rack'

module Rack

  module Rewritten

    class Url

      def initialize(app, &block)
        @app = app
        @translate_backwards = false

        instance_eval(&block) if block_given?
      end

      def call(env)
        req = Rack::Request.new(env)

        subdomain = env["SUBDOMAIN"] ? "#{env["SUBDOMAIN"]}:" : ""

        path = "#{subdomain}#{req.path_info}"

        if ::Rewritten.includes?(path) or translate_backwards? && ::Rewritten.exist_translation_for?(path) 

          to = ::Rewritten.includes?(path) || path

          current_path = ::Rewritten.get_current_translation(to)
          current_path = current_path.split(":").last

          if current_path == req.path_info
            # if this is the current path, rewrite path and parameters
            tpath, tparams = split_to_path_params(to)
            req.path_info = tpath
            env['QUERY_STRING'] = Rack::Utils.build_query(tparams.merge(req.params))
            @app.call(req.env) 
          else
            # if this is not the current path, redirect to current path
            # NOTE: assuming redirection is always to non-subdomain-path
            
            r = Rack::Response.new

            new_path = env["rack.url_scheme"].dup
            new_path << "://"
            new_path << env["HTTP_HOST"].dup.sub(/^#{subdomain.chomp(':')}\./, '')
            new_path << current_path
            new_path << '?' << env["QUERY_STRING"] unless (env["QUERY_STRING"]||'').empty?

            r.redirect(new_path, 301)
            a = r.finish
          end
       else
          @app.call(req.env) 
        end
      end

      def split_to_path_params(path_and_query)
        path, query_string = path_and_query.split('?').push('')[0..1]
        [path, Rack::Utils.parse_query(query_string)] 
      end


      private

      def translate_backwards?
        @translate_backwards  
      end
      
      def translate_backwards=(yes_or_no)
        @translate_backwards = yes_or_no
      end


      
    end
  end

end



Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rewritten-0.7.0 lib/rack/url.rb
rewritten-0.6.0 lib/rack/url.rb