Created
October 9, 2009 18:03
-
-
Save tylerhunt/206213 to your computer and use it in GitHub Desktop.
Rack middleware that redirects requests to a canonical host.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CanonicalHost | |
def initialize(app, host=nil, &block) | |
@app = app | |
@host = (block_given? && block.call) || host | |
end | |
def call(env) | |
if url = url(env) | |
[301, { 'Location' => url }, ['Redirecting...']] | |
else | |
@app.call(env) | |
end | |
end | |
def url(env) | |
if @host && env['SERVER_NAME'] != @host | |
url = Rack::Request.new(env).url | |
url.sub(%r{\A(https?://)(.*?)(:\d+)?(/|$)}, "\\1#{@host}\\3/") | |
end | |
end | |
private :url | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment