2017-04-07 06:40:26 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Localized
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2017-04-07 20:30:50 -04:00
|
|
|
around_action :set_locale
|
2017-04-07 06:40:26 -04:00
|
|
|
end
|
|
|
|
|
2017-04-07 20:30:50 -04:00
|
|
|
private
|
|
|
|
|
2017-04-07 06:40:26 -04:00
|
|
|
def set_locale
|
2017-04-07 20:30:50 -04:00
|
|
|
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
|
2017-04-07 06:40:26 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def default_locale
|
2017-04-12 12:24:18 -04:00
|
|
|
ENV.fetch('DEFAULT_LOCALE') {
|
2017-04-14 19:12:39 -04:00
|
|
|
user_supplied_locale || I18n.default_locale
|
2017-04-09 12:40:24 -04:00
|
|
|
}
|
2017-04-07 06:40:26 -04:00
|
|
|
end
|
2017-04-14 19:12:39 -04:00
|
|
|
|
|
|
|
def user_supplied_locale
|
|
|
|
http_accept_language.language_region_compatible_from(I18n.available_locales)
|
|
|
|
end
|
2017-04-07 06:40:26 -04:00
|
|
|
end
|