54 lines
1.6 KiB
Ruby
54 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative 'base'
|
|
|
|
module Mastodon::CLI
|
|
class Feeds < Base
|
|
include Redisable
|
|
|
|
option :all, type: :boolean, default: false
|
|
option :concurrency, type: :numeric, default: 5, aliases: [:c]
|
|
option :verbose, type: :boolean, aliases: [:v]
|
|
option :dry_run, type: :boolean, default: false
|
|
desc 'build [USERNAME]', 'Build home and list feeds for one or all users'
|
|
long_desc <<-LONG_DESC
|
|
Build home and list feeds that are stored in Redis from the database.
|
|
|
|
With the --all option, all active users will be processed.
|
|
Otherwise, a single user specified by USERNAME.
|
|
LONG_DESC
|
|
def build(username = nil)
|
|
if options[:all] || username.nil?
|
|
processed, = parallelize_with_progress(active_user_accounts) do |account|
|
|
PrecomputeFeedService.new.call(account) unless dry_run?
|
|
end
|
|
|
|
say("Regenerated feeds for #{processed} accounts #{dry_run_mode_suffix}", :green, true)
|
|
elsif username.present?
|
|
account = Account.find_local(username)
|
|
|
|
fail_with_message 'No such account' if account.nil?
|
|
|
|
PrecomputeFeedService.new.call(account) unless dry_run?
|
|
|
|
say("OK #{dry_run_mode_suffix}", :green, true)
|
|
else
|
|
fail_with_message 'No account(s) given'
|
|
end
|
|
end
|
|
|
|
desc 'clear', 'Remove all home and list feeds from Redis'
|
|
def clear
|
|
keys = redis.keys('feed:*')
|
|
redis.del(keys)
|
|
say('OK', :green)
|
|
end
|
|
|
|
private
|
|
|
|
def active_user_accounts
|
|
Account.joins(:user).merge(User.active)
|
|
end
|
|
end
|
|
end
|