2018-09-15 01:42:22 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-05-24 19:55:40 +10:00
|
|
|
require_relative 'base'
|
2018-09-15 01:42:22 +10:00
|
|
|
|
2023-05-24 00:08:26 +10:00
|
|
|
module Mastodon::CLI
|
2023-05-24 19:55:40 +10:00
|
|
|
class Feeds < Base
|
2022-04-29 01:47:34 +10:00
|
|
|
include Redisable
|
2019-09-10 21:48:48 +10:00
|
|
|
|
2018-09-15 01:42:22 +10:00
|
|
|
option :all, type: :boolean, default: false
|
2019-09-10 21:48:48 +10:00
|
|
|
option :concurrency, type: :numeric, default: 5, aliases: [:c]
|
|
|
|
option :verbose, type: :boolean, aliases: [:v]
|
2018-09-15 01:42:22 +10: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)
|
|
|
|
if options[:all] || username.nil?
|
2023-06-11 02:37:36 +10:00
|
|
|
processed, = parallelize_with_progress(active_user_accounts) do |account|
|
2023-05-31 00:07:44 +10:00
|
|
|
PrecomputeFeedService.new.call(account) unless dry_run?
|
2018-09-15 01:42:22 +10:00
|
|
|
end
|
|
|
|
|
2023-05-31 00:07:44 +10:00
|
|
|
say("Regenerated feeds for #{processed} accounts #{dry_run_mode_suffix}", :green, true)
|
2018-09-15 01:42:22 +10:00
|
|
|
elsif username.present?
|
|
|
|
account = Account.find_local(username)
|
|
|
|
|
2018-10-22 01:42:22 +11:00
|
|
|
if account.nil?
|
2018-10-28 07:56:16 +11:00
|
|
|
say('No such account', :red)
|
2018-10-22 01:42:22 +11:00
|
|
|
exit(1)
|
|
|
|
end
|
|
|
|
|
2023-05-31 00:07:44 +10:00
|
|
|
PrecomputeFeedService.new.call(account) unless dry_run?
|
2018-09-15 01:42:22 +10:00
|
|
|
|
2023-05-31 00:07:44 +10:00
|
|
|
say("OK #{dry_run_mode_suffix}", :green, true)
|
2018-09-15 01:42:22 +10:00
|
|
|
else
|
|
|
|
say('No account(s) given', :red)
|
|
|
|
exit(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
desc 'clear', 'Remove all home and list feeds from Redis'
|
|
|
|
def clear
|
2022-04-29 01:47:34 +10:00
|
|
|
keys = redis.keys('feed:*')
|
2023-03-05 02:38:28 +11:00
|
|
|
redis.del(keys)
|
2018-09-15 01:42:22 +10:00
|
|
|
say('OK', :green)
|
|
|
|
end
|
2023-06-11 02:37:36 +10:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def active_user_accounts
|
|
|
|
Account.joins(:user).merge(User.active)
|
|
|
|
end
|
2018-09-15 01:42:22 +10:00
|
|
|
end
|
|
|
|
end
|