This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-04-07 03:40:26 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Localized
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2017-04-07 17:30:50 -07:00
|
|
|
around_action :set_locale
|
2017-04-07 03:40:26 -07:00
|
|
|
end
|
|
|
|
|
2017-04-07 17:30:50 -07:00
|
|
|
private
|
|
|
|
|
2017-04-07 03:40:26 -07:00
|
|
|
def set_locale
|
2017-04-07 17:30:50 -07: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 03:40:26 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def default_locale
|
2017-04-12 09:24:18 -07:00
|
|
|
ENV.fetch('DEFAULT_LOCALE') {
|
2017-04-09 09:40:24 -07:00
|
|
|
http_accept_language.compatible_language_from(I18n.available_locales) || I18n.default_locale
|
|
|
|
}
|
2017-04-07 03:40:26 -07:00
|
|
|
end
|
|
|
|
end
|