我有一个显示多个视图的控制器,但没有模型支持,这些视图只是从erb呈现为 html 。
我需要做的是从 Elasticsearch 中索引这些视图中的文本,但我遇到了缺少相关文档的问题。
另一个复杂因素是视图被翻译,因此它们不直接包含文本。
如何将这些网页编入索引并进行搜索?我应该如何维护索引,因为我不能依赖activerecord回调?
答案 0 :(得分:0)
基于抓取网站的想法的解决方案:
WelcomeController中的:
format.json { render json: {body:view_to_text(view), title:@title, url:request.original_url.gsub(/\.json$/,'')} }
...
def view_to_text(view)
html = render_to_string view, layout: false, formats: :html
strip_tags(html).strip.gsub(/^[\s]+/,'').squeeze("\n")
end
并在rake任务中:
require 'open-uri'
namespace :scrape do
desc "scrape view content and send to elasticsearch"
task scrape: :environment do
client = Elasticsearch::Model.client
session = ActionDispatch::Integration::Session.new(Rails.application)
session.host! Rails.application.config.action_mailer.default_url_options[:host]
Rails.application.routes.routes.to_a.select{|r| r.defaults[:controller] == 'welcome'}.map{|r| r.path.spec.to_s.gsub( /\(\.\:format\)/, '.json') }.reject{|r| '/'==r}.each_with_index{|path,i|
session.get path
page_string = session.response.body
client.index index: Rails.env, type: 'welcome', id: i, body: page_string
}
end
end