discourse/lib/tasks/categories.rake
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
This reduces chances of errors where consumers of strings mutate inputs
and reduces memory usage of the app.

Test suite passes now, but there may be some stuff left, so we will run
a few sites on a branch prior to merging
2019-05-13 09:31:32 +08:00

39 lines
1.1 KiB
Ruby

# frozen_string_literal: true
task "categories:move_topics", [:from_category, :to_category] => [:environment] do |_, args|
from_category_id = args[:from_category]
to_category_id = args[:to_category]
if !from_category_id || !to_category_id
puts "ERROR: Expecting categories:move_topics[from_category_id,to_category_id]"
exit 1
end
from_category = Category.find(from_category_id)
to_category = Category.find(to_category_id)
if from_category.present? && to_category.present?
puts "Moving topics from #{from_category.slug} to #{to_category.slug}..."
Topic.where(category_id: from_category.id).update_all(category_id: to_category.id)
from_category.update_attribute(:topic_count, 0)
puts "Updating category stats..."
Category.update_stats
end
puts "", "Done!", ""
end
task "categories:create_definition" => :environment do
puts "Creating category definitions"
puts
Category.where(topic_id: nil).each(&:create_category_definition)
puts "", "Done!", ""
end
def print_status(current, max)
print "\r%9d / %d (%5.1f%%)" % [current, max, ((current.to_f / max.to_f) * 100).round(1)]
end