Created
June 27, 2014 05:23
-
-
Save markshiz/6a3444a497ffe6fa90a0 to your computer and use it in GitHub Desktop.
Rails locale with HTTP_ACCEPT_LANGUAGE
This file contains hidden or 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
require 'i18n' | |
module Rack | |
class Locale | |
def initialize(app) | |
@app = app | |
end | |
def call(env) | |
old_locale = I18n.locale | |
begin | |
locale = accept_locale(env) || I18n.default_locale | |
locale = env['rack.locale'] = I18n.locale = locale.to_s | |
status, headers, body = @app.call(env) | |
headers['Content-Language'] = locale | |
[status, headers, body] | |
ensure | |
I18n.locale = old_locale | |
end | |
end | |
private | |
# http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4 | |
def accept_locale(env) | |
accept_langs = env["HTTP_ACCEPT_LANGUAGE"] | |
return if accept_langs.nil? | |
languages_and_qvalues = accept_langs.split(",").map { |l| | |
l += ';q=1.0' unless l =~ /;q=\d+(?:\.\d+)?$/ | |
l.split(';q=') | |
} | |
lang = languages_and_qvalues.sort_by { |(locale, qvalue)| | |
qvalue.to_f | |
}.last.first | |
lang == '*' ? nil : lang | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment