about summary refs log tree commit diff
path: root/app/controllers/concerns/localized.rb
blob: 5501b6793be79a0704aeb9d12830f2f3667f2197 (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
# frozen_string_literal: true

module Localized
  extend ActiveSupport::Concern

  included do
    before_action :set_locale
  end

  private

  def set_locale
    I18n.locale = default_locale
    I18n.locale = current_user.locale if user_signed_in?
  rescue I18n::InvalidLocale
    I18n.locale = default_locale
  end

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

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