This PR fixes I18n.locale for rake middlewares. Mastodon uses Devise that depends on Warden. Warden::Manager can be found in rake middleware. It is outside of the controller. In the case of authentication failed, warden calls throw(:warden). At the time Warden::Manager delegates request to failure_app to generate response and flash[:alert] after catching it. Unfortunately, I18n.locale is already reset then because I18n.with_locale is enabled only inside the controller. If we used I18n.locale=, Devise::FailureApp could get the current locale.
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			555 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			555 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# 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') {
 | 
						|
      user_supplied_locale || I18n.default_locale
 | 
						|
    }
 | 
						|
  end
 | 
						|
 | 
						|
  def user_supplied_locale
 | 
						|
    http_accept_language.language_region_compatible_from(I18n.available_locales)
 | 
						|
  end
 | 
						|
end
 |