2018-08-25 07:25:39 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'thor'
|
|
|
|
require_relative 'mastodon/media_cli'
|
2018-08-26 10:53:06 -04:00
|
|
|
require_relative 'mastodon/emoji_cli'
|
2018-08-26 14:21:03 -04:00
|
|
|
require_relative 'mastodon/accounts_cli'
|
2018-09-14 11:42:22 -04:00
|
|
|
require_relative 'mastodon/feeds_cli'
|
2019-03-27 21:16:11 -04:00
|
|
|
require_relative 'mastodon/search_cli'
|
2018-10-04 10:05:54 -04:00
|
|
|
require_relative 'mastodon/settings_cli'
|
2019-03-11 08:45:17 -04:00
|
|
|
require_relative 'mastodon/statuses_cli'
|
2018-10-27 16:56:16 -04:00
|
|
|
require_relative 'mastodon/domains_cli'
|
2019-07-28 07:48:19 -04:00
|
|
|
require_relative 'mastodon/preview_cards_cli'
|
2019-05-03 19:02:57 -04:00
|
|
|
require_relative 'mastodon/cache_cli'
|
2019-01-17 15:32:55 -05:00
|
|
|
require_relative 'mastodon/version'
|
2018-09-14 11:42:22 -04:00
|
|
|
|
2018-08-25 07:25:39 -04:00
|
|
|
module Mastodon
|
|
|
|
class CLI < Thor
|
2018-10-25 10:05:33 -04:00
|
|
|
def self.exit_on_failure?
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2018-08-26 14:21:03 -04:00
|
|
|
desc 'media SUBCOMMAND ...ARGS', 'Manage media files'
|
2018-08-25 07:25:39 -04:00
|
|
|
subcommand 'media', Mastodon::MediaCLI
|
2018-08-26 10:53:06 -04:00
|
|
|
|
2018-08-26 14:21:03 -04:00
|
|
|
desc 'emoji SUBCOMMAND ...ARGS', 'Manage custom emoji'
|
2018-08-26 10:53:06 -04:00
|
|
|
subcommand 'emoji', Mastodon::EmojiCLI
|
2018-08-26 14:21:03 -04:00
|
|
|
|
|
|
|
desc 'accounts SUBCOMMAND ...ARGS', 'Manage accounts'
|
|
|
|
subcommand 'accounts', Mastodon::AccountsCLI
|
2018-09-14 11:42:22 -04:00
|
|
|
|
|
|
|
desc 'feeds SUBCOMMAND ...ARGS', 'Manage feeds'
|
|
|
|
subcommand 'feeds', Mastodon::FeedsCLI
|
2018-10-04 10:05:54 -04:00
|
|
|
|
2019-03-27 21:16:11 -04:00
|
|
|
desc 'search SUBCOMMAND ...ARGS', 'Manage the search engine'
|
|
|
|
subcommand 'search', Mastodon::SearchCLI
|
|
|
|
|
2018-10-04 10:05:54 -04:00
|
|
|
desc 'settings SUBCOMMAND ...ARGS', 'Manage dynamic settings'
|
|
|
|
subcommand 'settings', Mastodon::SettingsCLI
|
2018-10-27 16:56:16 -04:00
|
|
|
|
2019-03-11 08:45:17 -04:00
|
|
|
desc 'statuses SUBCOMMAND ...ARGS', 'Manage statuses'
|
|
|
|
subcommand 'statuses', Mastodon::StatusesCLI
|
|
|
|
|
2018-10-27 16:56:16 -04:00
|
|
|
desc 'domains SUBCOMMAND ...ARGS', 'Manage account domains'
|
|
|
|
subcommand 'domains', Mastodon::DomainsCLI
|
2019-01-17 15:32:55 -05:00
|
|
|
|
2019-07-28 07:48:19 -04:00
|
|
|
desc 'preview_cards SUBCOMMAND ...ARGS', 'Manage preview cards'
|
|
|
|
subcommand 'preview_cards', Mastodon::PreviewCardsCLI
|
|
|
|
|
2019-05-03 19:02:57 -04:00
|
|
|
desc 'cache SUBCOMMAND ...ARGS', 'Manage cache'
|
|
|
|
subcommand 'cache', Mastodon::CacheCLI
|
|
|
|
|
2019-03-28 12:56:25 -04:00
|
|
|
option :dry_run, type: :boolean
|
|
|
|
desc 'self-destruct', 'Erase the server from the federation'
|
|
|
|
long_desc <<~LONG_DESC
|
|
|
|
Erase the server from the federation by broadcasting account delete
|
|
|
|
activities to all known other servers. This allows a "clean exit" from
|
|
|
|
running a Mastodon server, as it leaves next to no cache behind on
|
|
|
|
other servers.
|
|
|
|
|
|
|
|
This command is always interactive and requires confirmation twice.
|
|
|
|
|
|
|
|
No local data is actually deleted, because emptying the
|
|
|
|
database or removing files is much faster through other, external
|
|
|
|
means, such as e.g. deleting the entire VPS. However, because other
|
|
|
|
servers will delete data about local users, but no local data will be
|
|
|
|
updated (such as e.g. followers), there will be a state mismatch
|
|
|
|
that will lead to glitches and issues if you then continue to run and use
|
|
|
|
the server.
|
|
|
|
|
|
|
|
So either you know exactly what you are doing, or you are starting
|
|
|
|
from a blank slate afterwards by manually clearing out all the local
|
|
|
|
data!
|
|
|
|
LONG_DESC
|
|
|
|
def self_destruct
|
|
|
|
require 'tty-prompt'
|
|
|
|
|
|
|
|
prompt = TTY::Prompt.new
|
|
|
|
|
|
|
|
exit(1) unless prompt.ask('Type in the domain of the server to confirm:', required: true) == Rails.configuration.x.local_domain
|
|
|
|
|
|
|
|
prompt.warn('This operation WILL NOT be reversible. It can also take a long time.')
|
|
|
|
prompt.warn('While the data won\'t be erased locally, the server will be in a BROKEN STATE afterwards.')
|
|
|
|
prompt.warn('A running Sidekiq process is required. Do not shut it down until queues clear.')
|
|
|
|
|
|
|
|
exit(1) if prompt.no?('Are you sure you want to proceed?')
|
|
|
|
|
|
|
|
inboxes = Account.inboxes
|
|
|
|
processed = 0
|
|
|
|
dry_run = options[:dry_run] ? ' (DRY RUN)' : ''
|
|
|
|
|
|
|
|
if inboxes.empty?
|
|
|
|
prompt.ok('It seems like your server has not federated with anything')
|
|
|
|
prompt.ok('You can shut it down and delete it any time')
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
prompt.warn('Do NOT interrupt this process...')
|
|
|
|
|
2020-01-21 12:56:18 -05:00
|
|
|
Setting.registrations_mode = 'none'
|
|
|
|
|
2019-03-28 12:56:25 -04:00
|
|
|
Account.local.without_suspended.find_each do |account|
|
|
|
|
payload = ActiveModelSerializers::SerializableResource.new(
|
|
|
|
account,
|
|
|
|
serializer: ActivityPub::DeleteActorSerializer,
|
|
|
|
adapter: ActivityPub::Adapter
|
|
|
|
).as_json
|
|
|
|
|
|
|
|
json = Oj.dump(ActivityPub::LinkedDataSignature.new(payload).sign!(account))
|
|
|
|
|
|
|
|
unless options[:dry_run]
|
|
|
|
ActivityPub::DeliveryWorker.push_bulk(inboxes) do |inbox_url|
|
|
|
|
[json, account.id, inbox_url]
|
|
|
|
end
|
|
|
|
|
2019-05-14 13:05:02 -04:00
|
|
|
account.suspend!
|
2019-03-28 12:56:25 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
processed += 1
|
|
|
|
end
|
|
|
|
|
|
|
|
prompt.ok("Queued #{inboxes.size * processed} items into Sidekiq for #{processed} accounts#{dry_run}")
|
|
|
|
prompt.ok('Wait until Sidekiq processes all items, then you can shut everything down and delete the data')
|
|
|
|
rescue TTY::Reader::InputInterrupt
|
|
|
|
exit(1)
|
|
|
|
end
|
|
|
|
|
2019-01-17 15:32:55 -05:00
|
|
|
map %w(--version -v) => :version
|
|
|
|
|
|
|
|
desc 'version', 'Show version'
|
|
|
|
def version
|
|
|
|
say(Mastodon::Version.to_s)
|
|
|
|
end
|
2018-08-25 07:25:39 -04:00
|
|
|
end
|
|
|
|
end
|