59 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
require 'tty-prompt'
 | 
						|
require_relative '../../config/boot'
 | 
						|
require_relative '../../config/environment'
 | 
						|
require_relative 'cli_helper'
 | 
						|
 | 
						|
module Mastodon
 | 
						|
  class PreviewCardsCLI < Thor
 | 
						|
    include ActionView::Helpers::NumberHelper
 | 
						|
    include CLIHelper
 | 
						|
 | 
						|
    def self.exit_on_failure?
 | 
						|
      true
 | 
						|
    end
 | 
						|
 | 
						|
    option :days, type: :numeric, default: 180
 | 
						|
    option :concurrency, type: :numeric, default: 5, aliases: [:c]
 | 
						|
    option :verbose, type: :boolean, aliases: [:v]
 | 
						|
    option :dry_run, type: :boolean, default: false
 | 
						|
    option :link, type: :boolean, default: false
 | 
						|
    desc 'remove', 'Remove preview cards'
 | 
						|
    long_desc <<-DESC
 | 
						|
      Removes local thumbnails for preview cards.
 | 
						|
 | 
						|
      The --days option specifies how old preview cards have to be before
 | 
						|
      they are removed. It defaults to 180 days. Since preview cards will
 | 
						|
      not be re-fetched unless the link is re-posted after 2 weeks from
 | 
						|
      last time, it is not recommended to delete preview cards within the
 | 
						|
      last 14 days.
 | 
						|
 | 
						|
      With the --link option, only link-type preview cards will be deleted,
 | 
						|
      leaving video and photo cards untouched.
 | 
						|
    DESC
 | 
						|
    def remove
 | 
						|
      time_ago = options[:days].days.ago
 | 
						|
      dry_run  = options[:dry_run] ? ' (DRY RUN)' : ''
 | 
						|
      link     = options[:link] ? 'link-type ' : ''
 | 
						|
      scope    = PreviewCard.cached
 | 
						|
      scope    = scope.where(type: :link) if options[:link]
 | 
						|
      scope    = scope.where('updated_at < ?', time_ago)
 | 
						|
 | 
						|
      processed, aggregate = parallelize_with_progress(scope) do |preview_card|
 | 
						|
        next if preview_card.image.blank?
 | 
						|
 | 
						|
        size = preview_card.image_file_size
 | 
						|
 | 
						|
        unless options[:dry_run]
 | 
						|
          preview_card.image.destroy
 | 
						|
          preview_card.save
 | 
						|
        end
 | 
						|
 | 
						|
        size
 | 
						|
      end
 | 
						|
 | 
						|
      say("Removed #{processed} #{link}preview cards (approx. #{number_to_human_size(aggregate)})#{dry_run}", :green, true)
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |