Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tootctl accounts reset-relationships #10483

Merged
merged 5 commits into from
Apr 8, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
67 changes: 67 additions & 0 deletions lib/mastodon/accounts_cli.rb
Expand Up @@ -367,6 +367,73 @@ def unfollow(acct)
say("OK, unfollowed target from #{processed} accounts, skipped #{failed}", :green)
end

option :follows, type: :boolean, default: false
option :followers, type: :boolean, default: false
desc 'reset-relationships USERNAME', 'Reset all follows and/or followers for a user'
long_desc <<-LONG_DESC
Reset all follows and/or followers for a user specified by USERNAME.

With the --follows option, the command unfollows everyone that the account follows,
and then re-follows the users that would be followed by a brand new account.

With the --followers option, the command removes all followers of the account.
LONG_DESC
def reset_relationships(username)
unless options[:follows] || options[:followers]
say('Please specify either --follows or --followers, or both', :red)
exit(1)
end

account = Account.find_local(username)

if account.nil?
say('No user with such username', :red)
exit(1)
end

if options[:follows]
processed = 0
failed = 0

say("Unfollowing #{account.username}'s followees, this might take a while...")

Account.where(id: ::Follow.where(account: account).select(:target_account_id)).find_each do |target_account|
begin
UnfollowService.new.call(account, target_account)
processed += 1
say('.', :green, false)
rescue StandardError
failed += 1
say('.', :red, false)
end
end

BootstrapTimelineWorker.perform_async(account.id)

say("OK, unfollowed #{processed} followees, skipped #{failed}", :green)
end

if options[:followers]
processed = 0
failed = 0

say("Removing #{account.username}'s followers, this might take a while...")

Account.where(id: ::Follow.where(target_account: account).select(:account_id)).find_each do |target_account|
begin
UnfollowService.new.call(target_account, account)
processed += 1
say('.', :green, false)
rescue StandardError
failed += 1
say('.', :red, false)
end
end

say("OK, removed #{processed} followers, skipped #{failed}", :green)
end
end

option :number, type: :numeric, aliases: [:n]
option :all, type: :boolean
desc 'approve [USERNAME]', 'Approve pending accounts'
Expand Down