2018-09-14 15:42:22 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require_relative '../../config/boot'
|
|
|
|
require_relative '../../config/environment'
|
|
|
|
require_relative 'cli_helper'
|
|
|
|
|
|
|
|
module Mastodon
|
|
|
|
class FeedsCLI < Thor
|
2019-09-10 11:48:48 +00:00
|
|
|
include CLIHelper
|
|
|
|
|
2018-10-25 14:05:33 +00:00
|
|
|
def self.exit_on_failure?
|
|
|
|
true
|
|
|
|
end
|
2018-10-27 20:56:16 +00:00
|
|
|
|
2018-09-14 15:42:22 +00:00
|
|
|
option :all, type: :boolean, default: false
|
2019-09-10 11:48:48 +00:00
|
|
|
option :concurrency, type: :numeric, default: 5, aliases: [:c]
|
|
|
|
option :verbose, type: :boolean, aliases: [:v]
|
2018-09-14 15:42:22 +00:00
|
|
|
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)
|
|
|
|
dry_run = options[:dry_run] ? '(DRY RUN)' : ''
|
|
|
|
|
|
|
|
if options[:all] || username.nil?
|
2019-09-10 11:48:48 +00:00
|
|
|
processed, = parallelize_with_progress(Account.joins(:user).merge(User.active)) do |account|
|
|
|
|
PrecomputeFeedService.new.call(account) unless options[:dry_run]
|
2018-09-14 15:42:22 +00:00
|
|
|
end
|
|
|
|
|
2019-09-10 11:48:48 +00:00
|
|
|
say("Regenerated feeds for #{processed} accounts #{dry_run}", :green, true)
|
2018-09-14 15:42:22 +00:00
|
|
|
elsif username.present?
|
|
|
|
account = Account.find_local(username)
|
|
|
|
|
2018-10-21 14:42:22 +00:00
|
|
|
if account.nil?
|
2018-10-27 20:56:16 +00:00
|
|
|
say('No such account', :red)
|
2018-10-21 14:42:22 +00:00
|
|
|
exit(1)
|
|
|
|
end
|
|
|
|
|
2019-09-10 11:48:48 +00:00
|
|
|
PrecomputeFeedService.new.call(account) unless options[:dry_run]
|
2018-09-14 15:42:22 +00:00
|
|
|
|
|
|
|
say("OK #{dry_run}", :green, true)
|
|
|
|
else
|
|
|
|
say('No account(s) given', :red)
|
|
|
|
exit(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
desc 'clear', 'Remove all home and list feeds from Redis'
|
|
|
|
def clear
|
|
|
|
keys = Redis.current.keys('feed:*')
|
|
|
|
|
|
|
|
Redis.current.pipelined do
|
|
|
|
keys.each { |key| Redis.current.del(key) }
|
|
|
|
end
|
|
|
|
|
|
|
|
say('OK', :green)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|