2018-08-25 07:25:39 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require_relative '../../config/boot'
|
|
|
|
require_relative '../../config/environment'
|
2018-08-26 10:53:06 -04:00
|
|
|
require_relative 'cli_helper'
|
2018-08-25 07:25:39 -04:00
|
|
|
|
|
|
|
module Mastodon
|
|
|
|
class MediaCLI < Thor
|
2018-11-08 15:06:26 -05:00
|
|
|
include ActionView::Helpers::NumberHelper
|
|
|
|
|
2018-10-25 10:05:33 -04:00
|
|
|
def self.exit_on_failure?
|
|
|
|
true
|
|
|
|
end
|
2018-10-27 16:56:16 -04:00
|
|
|
|
2018-08-25 07:25:39 -04:00
|
|
|
option :days, type: :numeric, default: 7
|
|
|
|
option :background, type: :boolean, default: false
|
2018-08-30 21:46:13 -04:00
|
|
|
option :verbose, type: :boolean, default: false
|
|
|
|
option :dry_run, type: :boolean, default: false
|
2018-08-26 14:21:03 -04:00
|
|
|
desc 'remove', 'Remove remote media files'
|
2018-08-25 07:25:39 -04:00
|
|
|
long_desc <<-DESC
|
|
|
|
Removes locally cached copies of media attachments from other servers.
|
|
|
|
|
|
|
|
The --days option specifies how old media attachments have to be before
|
|
|
|
they are removed. It defaults to 7 days.
|
|
|
|
|
|
|
|
With the --background option, instead of deleting the files sequentially,
|
|
|
|
they will be queued into Sidekiq and the command will exit as soon as
|
|
|
|
possible. In Sidekiq they will be processed with higher concurrency, but
|
|
|
|
it may impact other operations of the Mastodon server, and it may overload
|
|
|
|
the underlying file storage.
|
2018-08-30 21:46:13 -04:00
|
|
|
|
2018-09-14 11:42:22 -04:00
|
|
|
With the --dry-run option, no work will be done.
|
2018-08-30 21:46:13 -04:00
|
|
|
|
2018-09-14 11:42:22 -04:00
|
|
|
With the --verbose option, when media attachments are processed sequentially in the
|
|
|
|
foreground, the IDs of the media attachments will be printed.
|
2018-08-25 07:25:39 -04:00
|
|
|
DESC
|
|
|
|
def remove
|
2018-08-26 10:53:06 -04:00
|
|
|
time_ago = options[:days].days.ago
|
|
|
|
queued = 0
|
|
|
|
processed = 0
|
2018-11-08 15:06:26 -05:00
|
|
|
size = 0
|
|
|
|
dry_run = options[:dry_run] ? '(DRY RUN)' : ''
|
2018-08-25 07:25:39 -04:00
|
|
|
|
2018-08-29 12:35:09 -04:00
|
|
|
if options[:background]
|
2018-11-08 15:06:26 -05:00
|
|
|
MediaAttachment.where.not(remote_url: '').where.not(file_file_name: nil).where('created_at < ?', time_ago).select(:id, :file_file_size).reorder(nil).find_in_batches do |media_attachments|
|
2018-08-25 07:25:39 -04:00
|
|
|
queued += media_attachments.size
|
2018-11-08 15:06:26 -05:00
|
|
|
size += media_attachments.reduce(0) { |sum, m| sum + (m.file_file_size || 0) }
|
2018-08-30 21:46:13 -04:00
|
|
|
Maintenance::UncacheMediaWorker.push_bulk(media_attachments.map(&:id)) unless options[:dry_run]
|
2018-08-29 12:35:09 -04:00
|
|
|
end
|
|
|
|
else
|
|
|
|
MediaAttachment.where.not(remote_url: '').where.not(file_file_name: nil).where('created_at < ?', time_ago).reorder(nil).find_in_batches do |media_attachments|
|
2018-08-25 07:25:39 -04:00
|
|
|
media_attachments.each do |m|
|
2018-11-16 03:47:40 -05:00
|
|
|
size += m.file_file_size || 0
|
2018-08-30 21:46:13 -04:00
|
|
|
Maintenance::UncacheMediaWorker.new.perform(m) unless options[:dry_run]
|
|
|
|
options[:verbose] ? say(m.id) : say('.', :green, false)
|
2018-08-26 10:53:06 -04:00
|
|
|
processed += 1
|
2018-08-25 07:25:39 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-26 10:53:06 -04:00
|
|
|
say
|
|
|
|
|
|
|
|
if options[:background]
|
2018-11-08 15:06:26 -05:00
|
|
|
say("Scheduled the deletion of #{queued} media attachments (approx. #{number_to_human_size(size)}) #{dry_run}", :green, true)
|
2018-08-26 10:53:06 -04:00
|
|
|
else
|
2018-11-08 15:06:26 -05:00
|
|
|
say("Removed #{processed} media attachments (approx. #{number_to_human_size(size)}) #{dry_run}", :green, true)
|
2018-08-26 10:53:06 -04:00
|
|
|
end
|
2018-08-25 07:25:39 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|