Class: Rack::Locale

Inherits:
Object
  • Object
show all
Defined in:
lib/rack/contrib/locale.rb

Instance Method Summary collapse

Constructor Details

#initialize(app) ⇒ Locale

Returns a new instance of Locale.



5
6
7
# File 'lib/rack/contrib/locale.rb', line 5

def initialize(app)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/rack/contrib/locale.rb', line 9

def call(env)
  locale_to_restore = I18n.locale

  locale = user_preferred_locale(env["HTTP_ACCEPT_LANGUAGE"])
  locale ||= I18n.default_locale

  env['rack.locale'] = I18n.locale = locale.to_s
  status, headers, body = @app.call(env)

  unless headers['Content-Language']
    headers['Content-Language'] = locale.to_s
  end

  [status, headers, body]
ensure
  I18n.locale = locale_to_restore
end