Rails 3 中区域设置更改后重定向到新域中的同一页面

Redirect To Same Page In New Domain after Locale changes in Rails 3

应用程序使用 Rails 3.2.8 和以下 gems

gem 'friendly_id', '~> 4.0'
gem 'route_translator'

在/config/initializers/i18n.rb

TLD_LOCALES = {
  "com"  => :en,
  "jobs" => :en,
  "net"  => :en,
  "in"   => :en,
  "de"   => :de,
  "ch"   => :de,
  "at"   => :de,
  "br"   => :pt,
  "ar"   => :es,
  "cl"   => :es,
  "mx"   => :es 
}

在 /app/controllers/application_controller.rb 中,使用前置过滤器为每个请求设置语言环境:

before_filter :set_auto_locale
def set_auto_locale
  I18n.locale = TLD_LOCALES[request.host.split('.').last]
end

在routes.rb

localized do
  match "label_vacancies/:view_job"=>"job_seekers#view_job"
  get "label_aboutus", :to => "home#about_us", :as => "about_us"
end

当用户请求更改语言区域设置时,应根据用户请求的区域设置加载以下域。

在初始值设定项中

domain_based_on_locale = {
    :en => "xxxxx.com",
    :de => "xxxxx.de",
    :es => "xxxxx.mx",
    :pt => "xxxxx.com.br"   
}

在/app/controllers/application_controller.rb

def set_manual_locale
  if params[:locale] && I18n.available_locales.include?(params[:locale].to_sym)
    cookies['locale'] = { :value => params[:locale], :expires => 1.year.from_now }
    I18n.locale = params[:locale].to_sym
  elsif cookies['locale'] && I18n.available_locales.include?(cookies['locale'].to_sym)
    I18n.locale = cookies['locale'].to_sym
  end
  if domain_based_on_locale[I18n.locale] != request.host
    redirect_to "#{request.protocol}#{domain_based_on_locale[I18n.locale]}#{request.fullpath}", :status => :moved_permanently 
  else
    redirect_to root_path
  end
end

在这种情况下,用户在如下 URL 中更改语言时遇到重定向问题,因为同一页面根据语言有不同的 URL。

Aboutus:
http://xxxxxxx.com/about-us  # About us route in English
http://xxxxxxx.de/uber-uns      # About us route in German
http://xxxxxxx.mx/quienes-somos # About us route in Spanish

view Job:
http://xxxxxxx.com/jobs/rp-be-company-representante-de-ventas-22042015
http://xxxxxxx.de/ofertas-de-empleo/rp-be-company-representante-de-ventas-22042015

手动更改语言区域后,如何重定向到新域中的同一页面。是否可以将 运行 会话传送到新域。感谢您的帮助。

您需要翻译 request.fullpath 的每个片段(最后一个片段除外,它看起来像资源段)。您可以使用 Rails' I18n:

手动执行此操作
current_path = request.fullpath.split('/')
slug = current_path.pop
locale_path = current_path.map{|part| translate(part)}.join('/')
redirect_to "#{request.protocol}#{domain}#{locale_path}#{slug}"

或者,有处理路由转换的 gem:

就会话而言,跨域共享 cookie 本身是不可能的。如果您将区域设置设为子域(例如 de.xxxxx.com),则可以 share the cookie across all of them。许多网站通过路径来做到这一点,例如。 xxxxx.com/de/,这完全解决了问题。

支持完全不同的域需要您手动传输会话。您可以通过以下方式完成此操作:

  • 生成随机传输令牌xxx123并将其保存在服务器端及其附加的会话中
  • 重定向到 new.domain/path?token=xxx123
  • 使用令牌查找用户的会话并在他们的浏览器中设置它
  • 删除令牌以防止重放攻击

请仔细考虑传输过程 - 进行此类操作时很容易引入安全问题。 This SO thread 有一种方法使用从其他域加载的图像。