2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
task "search:reindex" => :environment do
|
2016-10-01 02:53:30 -04:00
|
|
|
ENV['RAILS_DB'] ? reindex_search : reindex_search_all_sites
|
|
|
|
end
|
|
|
|
|
|
|
|
def reindex_search(db = RailsMultisite::ConnectionManagement.current_db)
|
|
|
|
puts "Reindexing '#{db}'"
|
|
|
|
puts ""
|
2018-02-19 22:41:00 -05:00
|
|
|
puts "Posts"
|
|
|
|
Post.includes(topic: [:category, :tags]).find_each do |p|
|
|
|
|
if p.post_number == 1
|
|
|
|
SearchIndexer.index(p.topic, force: true)
|
|
|
|
else
|
|
|
|
SearchIndexer.index(p, force: true)
|
|
|
|
end
|
2016-10-01 02:53:30 -04:00
|
|
|
putc "."
|
|
|
|
end
|
|
|
|
|
|
|
|
puts
|
2018-02-19 22:41:00 -05:00
|
|
|
puts "Users"
|
|
|
|
User.find_each do |u|
|
|
|
|
SearchIndexer.index(u, force: true)
|
2016-10-01 02:53:30 -04:00
|
|
|
putc "."
|
|
|
|
end
|
|
|
|
|
|
|
|
puts
|
|
|
|
puts "Categories"
|
|
|
|
|
2018-02-19 22:41:00 -05:00
|
|
|
Category.find_each do |c|
|
|
|
|
SearchIndexer.index(c, force: true)
|
|
|
|
putc "."
|
2017-10-24 17:55:05 -04:00
|
|
|
end
|
|
|
|
|
2018-02-19 22:41:00 -05:00
|
|
|
puts
|
|
|
|
puts "Tags"
|
2017-10-24 17:55:05 -04:00
|
|
|
|
2018-02-19 22:41:00 -05:00
|
|
|
Tag.find_each do |t|
|
|
|
|
SearchIndexer.index(t, force: true)
|
|
|
|
putc "."
|
2016-10-01 02:53:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
puts
|
|
|
|
end
|
|
|
|
|
|
|
|
def reindex_search_all_sites
|
2013-02-05 14:16:51 -05:00
|
|
|
RailsMultisite::ConnectionManagement.each_connection do |db|
|
2016-10-01 02:53:30 -04:00
|
|
|
reindex_search(db)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|