- Ensuring that SwitchLocale concern handles the case of custom domain for portals and set locale according to that Co-authored-by: Sojan Jose <sojan@pepalo.com>
58 lines
1.6 KiB
Ruby
58 lines
1.6 KiB
Ruby
module SwitchLocale
|
|
extend ActiveSupport::Concern
|
|
|
|
private
|
|
|
|
def switch_locale(&)
|
|
# priority is for locale set in query string (mostly for widget/from js sdk)
|
|
locale ||= locale_from_params
|
|
locale ||= locale_from_custom_domain
|
|
# if locale is not set in account, let's use DEFAULT_LOCALE env variable
|
|
locale ||= locale_from_env_variable
|
|
set_locale(locale, &)
|
|
end
|
|
|
|
def switch_locale_using_account_locale(&)
|
|
locale = locale_from_account(@current_account)
|
|
set_locale(locale, &)
|
|
end
|
|
|
|
# If the request is coming from a custom domain, it should be for a helpcenter portal
|
|
# We will use the portal locale in such cases
|
|
def locale_from_custom_domain(&)
|
|
return if params[:locale]
|
|
|
|
domain = request.host
|
|
return if DomainHelper.chatwoot_domain?(domain)
|
|
|
|
@portal = Portal.find_by(custom_domain: domain)
|
|
return unless @portal
|
|
|
|
@portal.default_locale
|
|
end
|
|
|
|
def set_locale(locale, &)
|
|
# if locale is empty, use default_locale
|
|
locale ||= I18n.default_locale
|
|
# Ensure locale won't bleed into other requests
|
|
# https://guides.rubyonrails.org/i18n.html#managing-the-locale-across-requests
|
|
I18n.with_locale(locale, &)
|
|
end
|
|
|
|
def locale_from_params
|
|
I18n.available_locales.map(&:to_s).include?(params[:locale]) ? params[:locale] : nil
|
|
end
|
|
|
|
def locale_from_account(account)
|
|
return unless account
|
|
|
|
I18n.available_locales.map(&:to_s).include?(account.locale) ? account.locale : nil
|
|
end
|
|
|
|
def locale_from_env_variable
|
|
return unless ENV.fetch('DEFAULT_LOCALE', nil)
|
|
|
|
I18n.available_locales.map(&:to_s).include?(ENV.fetch('DEFAULT_LOCALE')) ? ENV.fetch('DEFAULT_LOCALE') : nil
|
|
end
|
|
end
|