You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

134 lines
4.6 KiB

  1. # frozen_string_literal: true
  2. require 'thor'
  3. require_relative 'mastodon/media_cli'
  4. require_relative 'mastodon/emoji_cli'
  5. require_relative 'mastodon/accounts_cli'
  6. require_relative 'mastodon/feeds_cli'
  7. require_relative 'mastodon/search_cli'
  8. require_relative 'mastodon/settings_cli'
  9. require_relative 'mastodon/statuses_cli'
  10. require_relative 'mastodon/domains_cli'
  11. require_relative 'mastodon/preview_cards_cli'
  12. require_relative 'mastodon/cache_cli'
  13. require_relative 'mastodon/version'
  14. module Mastodon
  15. class CLI < Thor
  16. def self.exit_on_failure?
  17. true
  18. end
  19. desc 'media SUBCOMMAND ...ARGS', 'Manage media files'
  20. subcommand 'media', Mastodon::MediaCLI
  21. desc 'emoji SUBCOMMAND ...ARGS', 'Manage custom emoji'
  22. subcommand 'emoji', Mastodon::EmojiCLI
  23. desc 'accounts SUBCOMMAND ...ARGS', 'Manage accounts'
  24. subcommand 'accounts', Mastodon::AccountsCLI
  25. desc 'feeds SUBCOMMAND ...ARGS', 'Manage feeds'
  26. subcommand 'feeds', Mastodon::FeedsCLI
  27. desc 'search SUBCOMMAND ...ARGS', 'Manage the search engine'
  28. subcommand 'search', Mastodon::SearchCLI
  29. desc 'settings SUBCOMMAND ...ARGS', 'Manage dynamic settings'
  30. subcommand 'settings', Mastodon::SettingsCLI
  31. desc 'statuses SUBCOMMAND ...ARGS', 'Manage statuses'
  32. subcommand 'statuses', Mastodon::StatusesCLI
  33. desc 'domains SUBCOMMAND ...ARGS', 'Manage account domains'
  34. subcommand 'domains', Mastodon::DomainsCLI
  35. desc 'preview_cards SUBCOMMAND ...ARGS', 'Manage preview cards'
  36. subcommand 'preview_cards', Mastodon::PreviewCardsCLI
  37. desc 'cache SUBCOMMAND ...ARGS', 'Manage cache'
  38. subcommand 'cache', Mastodon::CacheCLI
  39. option :dry_run, type: :boolean
  40. desc 'self-destruct', 'Erase the server from the federation'
  41. long_desc <<~LONG_DESC
  42. Erase the server from the federation by broadcasting account delete
  43. activities to all known other servers. This allows a "clean exit" from
  44. running a Mastodon server, as it leaves next to no cache behind on
  45. other servers.
  46. This command is always interactive and requires confirmation twice.
  47. No local data is actually deleted, because emptying the
  48. database or removing files is much faster through other, external
  49. means, such as e.g. deleting the entire VPS. However, because other
  50. servers will delete data about local users, but no local data will be
  51. updated (such as e.g. followers), there will be a state mismatch
  52. that will lead to glitches and issues if you then continue to run and use
  53. the server.
  54. So either you know exactly what you are doing, or you are starting
  55. from a blank slate afterwards by manually clearing out all the local
  56. data!
  57. LONG_DESC
  58. def self_destruct
  59. require 'tty-prompt'
  60. prompt = TTY::Prompt.new
  61. exit(1) unless prompt.ask('Type in the domain of the server to confirm:', required: true) == Rails.configuration.x.local_domain
  62. prompt.warn('This operation WILL NOT be reversible. It can also take a long time.')
  63. prompt.warn('While the data won\'t be erased locally, the server will be in a BROKEN STATE afterwards.')
  64. prompt.warn('A running Sidekiq process is required. Do not shut it down until queues clear.')
  65. exit(1) if prompt.no?('Are you sure you want to proceed?')
  66. inboxes = Account.inboxes
  67. processed = 0
  68. dry_run = options[:dry_run] ? ' (DRY RUN)' : ''
  69. if inboxes.empty?
  70. prompt.ok('It seems like your server has not federated with anything')
  71. prompt.ok('You can shut it down and delete it any time')
  72. return
  73. end
  74. prompt.warn('Do NOT interrupt this process...')
  75. Setting.registrations_mode = 'none'
  76. Account.local.without_suspended.find_each do |account|
  77. payload = ActiveModelSerializers::SerializableResource.new(
  78. account,
  79. serializer: ActivityPub::DeleteActorSerializer,
  80. adapter: ActivityPub::Adapter
  81. ).as_json
  82. json = Oj.dump(ActivityPub::LinkedDataSignature.new(payload).sign!(account))
  83. unless options[:dry_run]
  84. ActivityPub::DeliveryWorker.push_bulk(inboxes) do |inbox_url|
  85. [json, account.id, inbox_url]
  86. end
  87. account.suspend!
  88. end
  89. processed += 1
  90. end
  91. prompt.ok("Queued #{inboxes.size * processed} items into Sidekiq for #{processed} accounts#{dry_run}")
  92. prompt.ok('Wait until Sidekiq processes all items, then you can shut everything down and delete the data')
  93. rescue TTY::Reader::InputInterrupt
  94. exit(1)
  95. end
  96. map %w(--version -v) => :version
  97. desc 'version', 'Show version'
  98. def version
  99. say(Mastodon::Version.to_s)
  100. end
  101. end
  102. end