2017-04-07 10:40:26 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Localized
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2019-07-21 16:08:02 +00:00
|
|
|
around_action :set_locale
|
2017-04-07 10:40:26 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_locale
|
2019-07-21 16:08:02 +00:00
|
|
|
locale = current_user.locale if respond_to?(:user_signed_in?) && user_signed_in?
|
|
|
|
locale ||= session[:locale] ||= default_locale
|
|
|
|
locale = default_locale unless I18n.available_locales.include?(locale.to_sym)
|
|
|
|
|
|
|
|
I18n.with_locale(locale) do
|
|
|
|
yield
|
|
|
|
end
|
2017-04-07 10:40:26 +00:00
|
|
|
end
|
|
|
|
|
2020-06-20 11:30:13 +00:00
|
|
|
private
|
|
|
|
|
2017-04-07 10:40:26 +00:00
|
|
|
def default_locale
|
2018-03-18 15:57:04 +00:00
|
|
|
if ENV['DEFAULT_LOCALE'].present?
|
|
|
|
I18n.default_locale
|
|
|
|
else
|
|
|
|
request_locale || I18n.default_locale
|
|
|
|
end
|
2017-06-10 07:44:02 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def request_locale
|
2020-05-10 23:09:21 +00:00
|
|
|
http_accept_language.language_region_compatible_from(I18n.available_locales)
|
2017-04-14 23:12:39 +00:00
|
|
|
end
|
2017-04-07 10:40:26 +00:00
|
|
|
end
|