about summary refs log tree commit diff
path: root/lib/tasks/mastodon.rake
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2018-08-11 22:02:55 +0200
committerEugen Rochko <eugen@zeonfederated.com>2018-08-11 22:02:55 +0200
commit110b3f63352e85c6ac138918b285d963382ce623 (patch)
treebd3900fbd0751f18d74c648f1a50180648765e10 /lib/tasks/mastodon.rake
parent38e39c9366d16ccb6536b4de5164e76684ff500b (diff)
Add some feedback to maintenance rake tasks (#8173)
Diffstat (limited to 'lib/tasks/mastodon.rake')
-rw-r--r--lib/tasks/mastodon.rake9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/tasks/mastodon.rake b/lib/tasks/mastodon.rake
index de8c0bb86..f693c8b5a 100644
--- a/lib/tasks/mastodon.rake
+++ b/lib/tasks/mastodon.rake
@@ -502,18 +502,24 @@ namespace :mastodon do
 
     desc 'Remove media attachments attributed to silenced accounts'
     task remove_silenced: :environment do
+      nb_media_attachments = 0
       MediaAttachment.where(account: Account.silenced).select(:id).find_in_batches do |media_attachments|
+        nb_media_attachments += media_attachments.length
         Maintenance::DestroyMediaWorker.push_bulk(media_attachments.map(&:id))
       end
+      puts "Scheduled the deletion of #{nb_media_attachments} media attachments"
     end
 
     desc 'Remove cached remote media attachments that are older than NUM_DAYS. By default 7 (week)'
     task remove_remote: :environment do
       time_ago = ENV.fetch('NUM_DAYS') { 7 }.to_i.days.ago
+      nb_media_attachments = 0
 
       MediaAttachment.where.not(remote_url: '').where.not(file_file_name: nil).where('created_at < ?', time_ago).select(:id).find_in_batches do |media_attachments|
+        nb_media_attachments += media_attachments.length
         Maintenance::UncacheMediaWorker.push_bulk(media_attachments.map(&:id))
       end
+      puts "Scheduled the deletion of #{nb_media_attachments} media attachments"
     end
 
     desc 'Set unknown attachment type for remote-only attachments'
@@ -527,10 +533,13 @@ namespace :mastodon do
     task redownload_avatars: :environment do
       accounts = Account.remote
       accounts = accounts.where(domain: ENV['DOMAIN']) if ENV['DOMAIN'].present?
+      nb_accounts = 0
 
       accounts.select(:id).find_in_batches do |accounts_batch|
+        nb_accounts += accounts_batch.length
         Maintenance::RedownloadAccountMediaWorker.push_bulk(accounts_batch.map(&:id))
       end
+      puts "Scheduled the download of avatars/headers for #{nb_accounts} remote users"
     end
   end