62 lines
1.6 KiB
Ruby
62 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class ExtraLocalesController < ApplicationController
|
|
|
|
layout :false
|
|
skip_before_action :check_xhr, :preload_json
|
|
|
|
def show
|
|
bundle = params[:bundle]
|
|
raise Discourse::InvalidAccess.new unless bundle =~ /^(admin|wizard)$/
|
|
if params[:v] && params[:v].length == 32
|
|
hash = ExtraLocalesController.bundle_js_hash(bundle)
|
|
if hash == params[:v]
|
|
immutable_for 24.hours
|
|
end
|
|
end
|
|
render plain: ExtraLocalesController.bundle_js(bundle), content_type: "application/javascript"
|
|
end
|
|
|
|
def self.bundle_js_hash(bundle)
|
|
@bundle_js_hash ||= {}
|
|
@bundle_js_hash[bundle] = Digest::MD5.hexdigest(bundle_js(bundle))
|
|
end
|
|
|
|
def self.url(bundle)
|
|
if Rails.env == "production"
|
|
"#{Discourse.base_uri}/extra-locales/#{bundle}?v=#{bundle_js_hash(bundle)}"
|
|
else
|
|
"#{Discourse.base_uri}/extra-locales/#{bundle}"
|
|
end
|
|
end
|
|
|
|
def self.bundle_js(bundle)
|
|
locale_str = I18n.locale.to_s
|
|
bundle_str = "#{bundle}_js"
|
|
|
|
translations = JsLocaleHelper.translations_for(locale_str)
|
|
|
|
for_key = {}
|
|
translations.values.each { |v| for_key.deep_merge!(v[bundle_str]) if v.has_key?(bundle_str) }
|
|
|
|
js = ""
|
|
|
|
if for_key.present?
|
|
if plugin_for_key = JsLocaleHelper.plugin_translations(locale_str)[bundle_str]
|
|
for_key.deep_merge!(plugin_for_key)
|
|
end
|
|
|
|
js = <<~JS.squish
|
|
(function() {
|
|
if (window.I18n) {
|
|
window.I18n.extras = window.I18n.extras || [];
|
|
window.I18n.extras.push(#{for_key.to_json});
|
|
}
|
|
})();
|
|
JS
|
|
end
|
|
|
|
js
|
|
end
|
|
end
|