about summary refs log tree commit diff
path: root/app/controllers/concerns/localized.rb
blob: d9a7a7227bd05bbfcc49ad9b22abbcb6b4b6e72f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true

module Localized
  extend ActiveSupport::Concern

  included do
    around_action :set_locale
  end

  private

  def set_locale
    locale = default_locale

    if user_signed_in?
      begin
        locale = current_user.try(:locale) || default_locale
      rescue I18n::InvalidLocale
        locale = default_locale
      end
    end

    I18n.with_locale(locale) do
      yield
    end
  end

  def default_locale
    ENV.fetch('DEFAULT_LOCALE') {
      user_supplied_locale || I18n.default_locale
    }
  end

  def user_supplied_locale
    http_accept_language.language_region_compatible_from(I18n.available_locales)
  end
end