需要在Rails中更改和缓存出站链接

时间:2011-07-23 02:38:44

标签: html ruby-on-rails caching hyperlink nokogiri

诉Rails 2.3.8

我希望实现的是动态修改Rails中的出站链接,以便使用片段缓存来缓存更改。你会怎么做呢?

注意:这次我故意不在此处包含我自己的想法和源代码,因为我希望听到没有偏见的建议。

感谢。

1 个答案:

答案 0 :(得分:0)

以下是解决方案:

在ActionController :: Caching :: Fragments.fragment_for中,更改以下行:

pos = buffer.length
block.call
write_fragment(name, buffer[pos..-1], options)

到此:

pos = buffer.length
fragment = Nokogiri::HTML::fragment(block.call)
fragment.css('a').each do |a|
  unless a['href'].nil?
    a.set_attribute('rel', 'nofollow') unless (a['href'].starts_with?('/') || a['href'].starts_with?("http://#{ENV['BASE_URL']}"))
  end
end
buffer[pos..-1] = fragment.to_html
write_fragment(name, buffer[pos..-1], options)

请注意:

  1. 我使用ENV ['BASE_URL']来存储站点的基本URL(从中加载) 初始化期间的数据库)。
  2. 您必须安装Nokogiri宝石。
  3. 此解决方案适用于Rails 2.3.8 - 我尚未在版本3中进行测试。