2015-12-31 18:33:35 -05:00
|
|
|
# frozen_string_literal: true
|
2019-04-01 12:20:41 -04:00
|
|
|
|
2014-08-16 13:32:03 -04:00
|
|
|
#
|
|
|
|
# Simple middleware to save the current locale and restore it when the job executes.
|
|
|
|
# Use it by requiring it in your initializer:
|
|
|
|
#
|
|
|
|
# require 'sidekiq/middleware/i18n'
|
|
|
|
#
|
2013-03-03 19:10:50 -05:00
|
|
|
module Sidekiq::Middleware::I18n
|
|
|
|
# Get the current locale and store it in the message
|
|
|
|
# to be sent to Sidekiq.
|
|
|
|
class Client
|
2022-06-06 15:07:51 -04:00
|
|
|
include Sidekiq::ClientMiddleware
|
2022-03-03 15:37:25 -05:00
|
|
|
def call(_jobclass, job, _queue, _redis)
|
|
|
|
job["locale"] ||= I18n.locale
|
2013-03-03 19:10:50 -05:00
|
|
|
yield
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Pull the msg locale out and set the current thread to use it.
|
|
|
|
class Server
|
2022-06-06 15:07:51 -04:00
|
|
|
include Sidekiq::ServerMiddleware
|
2022-03-03 15:37:25 -05:00
|
|
|
def call(_jobclass, job, _queue, &block)
|
|
|
|
I18n.with_locale(job.fetch("locale", I18n.default_locale), &block)
|
2013-03-03 19:10:50 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Sidekiq.configure_client do |config|
|
|
|
|
config.client_middleware do |chain|
|
|
|
|
chain.add Sidekiq::Middleware::I18n::Client
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Sidekiq.configure_server do |config|
|
|
|
|
config.client_middleware do |chain|
|
|
|
|
chain.add Sidekiq::Middleware::I18n::Client
|
|
|
|
end
|
|
|
|
config.server_middleware do |chain|
|
|
|
|
chain.add Sidekiq::Middleware::I18n::Server
|
|
|
|
end
|
|
|
|
end
|