2020-09-15 22:37:58 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class DeleteAccountService < BaseService
|
|
|
|
include Payloadable
|
|
|
|
|
|
|
|
ASSOCIATIONS_ON_SUSPEND = %w(
|
2021-08-08 23:29:57 +10:00
|
|
|
account_notes
|
2020-09-15 22:37:58 +10:00
|
|
|
account_pins
|
|
|
|
active_relationships
|
2020-12-23 03:13:55 +11:00
|
|
|
aliases
|
2020-09-15 22:37:58 +10:00
|
|
|
block_relationships
|
|
|
|
blocked_by_relationships
|
|
|
|
conversation_mutes
|
|
|
|
conversations
|
|
|
|
custom_filters
|
2020-12-23 03:13:55 +11:00
|
|
|
devices
|
2020-09-15 22:37:58 +10:00
|
|
|
domain_blocks
|
2020-12-23 03:13:55 +11:00
|
|
|
featured_tags
|
2020-09-15 22:37:58 +10:00
|
|
|
follow_requests
|
|
|
|
list_accounts
|
2020-12-23 03:13:55 +11:00
|
|
|
migrations
|
2020-09-15 22:37:58 +10:00
|
|
|
mute_relationships
|
|
|
|
muted_by_relationships
|
|
|
|
notifications
|
|
|
|
owned_lists
|
|
|
|
passive_relationships
|
|
|
|
report_notes
|
|
|
|
scheduled_statuses
|
|
|
|
status_pins
|
|
|
|
).freeze
|
|
|
|
|
2020-12-23 03:13:55 +11:00
|
|
|
# The following associations have no important side-effects
|
|
|
|
# in callbacks and all of their own associations are secured
|
|
|
|
# by foreign keys, making them safe to delete without loading
|
|
|
|
# into memory
|
|
|
|
ASSOCIATIONS_WITHOUT_SIDE_EFFECTS = %w(
|
2021-08-08 23:29:57 +10:00
|
|
|
account_notes
|
2020-12-23 03:13:55 +11:00
|
|
|
account_pins
|
|
|
|
aliases
|
|
|
|
conversation_mutes
|
|
|
|
conversations
|
|
|
|
custom_filters
|
|
|
|
devices
|
|
|
|
domain_blocks
|
|
|
|
featured_tags
|
|
|
|
follow_requests
|
2020-12-23 09:57:46 +11:00
|
|
|
list_accounts
|
2020-12-23 03:13:55 +11:00
|
|
|
migrations
|
|
|
|
mute_relationships
|
|
|
|
muted_by_relationships
|
|
|
|
notifications
|
2020-12-23 09:57:46 +11:00
|
|
|
owned_lists
|
2020-12-23 03:13:55 +11:00
|
|
|
scheduled_statuses
|
|
|
|
status_pins
|
|
|
|
)
|
|
|
|
|
2020-09-15 22:37:58 +10:00
|
|
|
ASSOCIATIONS_ON_DESTROY = %w(
|
|
|
|
reports
|
|
|
|
targeted_moderation_notes
|
|
|
|
targeted_reports
|
|
|
|
).freeze
|
|
|
|
|
|
|
|
# Suspend or remove an account and remove as much of its data
|
|
|
|
# as possible. If it's a local account and it has not been confirmed
|
|
|
|
# or never been approved, then side effects are skipped and both
|
|
|
|
# the user and account records are removed fully. Otherwise,
|
|
|
|
# it is controlled by options.
|
|
|
|
# @param [Account]
|
|
|
|
# @param [Hash] options
|
|
|
|
# @option [Boolean] :reserve_email Keep user record. Only applicable for local accounts
|
|
|
|
# @option [Boolean] :reserve_username Keep account record
|
|
|
|
# @option [Boolean] :skip_side_effects Side effects are ActivityPub and streaming API payloads
|
2020-11-20 03:39:47 +11:00
|
|
|
# @option [Boolean] :skip_activitypub Skip sending ActivityPub payloads. Implied by :skip_side_effects
|
2020-09-15 22:37:58 +10:00
|
|
|
# @option [Time] :suspended_at Only applicable when :reserve_username is true
|
|
|
|
def call(account, **options)
|
|
|
|
@account = account
|
|
|
|
@options = { reserve_username: true, reserve_email: true }.merge(options)
|
|
|
|
|
|
|
|
if @account.local? && @account.user_unconfirmed_or_pending?
|
|
|
|
@options[:reserve_email] = false
|
|
|
|
@options[:reserve_username] = false
|
|
|
|
@options[:skip_side_effects] = true
|
|
|
|
end
|
|
|
|
|
2020-11-20 03:39:47 +11:00
|
|
|
@options[:skip_activitypub] = true if @options[:skip_side_effects]
|
|
|
|
|
2020-12-23 03:13:55 +11:00
|
|
|
distribute_activities!
|
2020-09-15 22:37:58 +10:00
|
|
|
purge_content!
|
|
|
|
fulfill_deletion_request!
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2020-12-23 03:13:55 +11:00
|
|
|
def distribute_activities!
|
|
|
|
return if skip_activitypub?
|
2020-09-15 22:37:58 +10:00
|
|
|
|
2020-12-23 03:13:55 +11:00
|
|
|
if @account.local?
|
|
|
|
delete_actor!
|
|
|
|
elsif @account.activitypub?
|
|
|
|
reject_follows!
|
|
|
|
undo_follows!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def reject_follows!
|
2020-11-08 10:28:39 +11:00
|
|
|
# When deleting a remote account, the account obviously doesn't
|
|
|
|
# actually become deleted on its origin server, i.e. unlike a
|
|
|
|
# locally deleted account it continues to have access to its home
|
|
|
|
# feed and other content. To prevent it from being able to continue
|
|
|
|
# to access toots it would receive because it follows local accounts,
|
|
|
|
# we have to force it to unfollow them.
|
|
|
|
|
2020-09-15 22:37:58 +10:00
|
|
|
ActivityPub::DeliveryWorker.push_bulk(Follow.where(account: @account)) do |follow|
|
2020-11-08 10:28:39 +11:00
|
|
|
[Oj.dump(serialize_payload(follow, ActivityPub::RejectFollowSerializer)), follow.target_account_id, @account.inbox_url]
|
2020-09-15 22:37:58 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-22 07:27:00 +11:00
|
|
|
def undo_follows!
|
|
|
|
# When deleting a remote account, the account obviously doesn't
|
|
|
|
# actually become deleted on its origin server, but following relationships
|
|
|
|
# are severed on our end. Therefore, make the remote server aware that the
|
|
|
|
# follow relationships are severed to avoid confusion and potential issues
|
|
|
|
# if the remote account gets un-suspended.
|
|
|
|
|
|
|
|
ActivityPub::DeliveryWorker.push_bulk(Follow.where(target_account: @account)) do |follow|
|
|
|
|
[Oj.dump(serialize_payload(follow, ActivityPub::UndoFollowSerializer)), follow.account_id, @account.inbox_url]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-09-15 22:37:58 +10:00
|
|
|
def purge_user!
|
|
|
|
return if !@account.local? || @account.user.nil?
|
|
|
|
|
2020-12-23 03:13:55 +11:00
|
|
|
if keep_user_record?
|
2020-09-15 22:37:58 +10:00
|
|
|
@account.user.disable!
|
|
|
|
@account.user.invites.where(uses: 0).destroy_all
|
|
|
|
else
|
|
|
|
@account.user.destroy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def purge_content!
|
2020-12-23 03:13:55 +11:00
|
|
|
purge_user!
|
|
|
|
purge_profile!
|
|
|
|
purge_statuses!
|
2020-12-24 02:43:11 +11:00
|
|
|
purge_mentions!
|
2020-12-23 03:13:55 +11:00
|
|
|
purge_media_attachments!
|
|
|
|
purge_polls!
|
|
|
|
purge_generated_notifications!
|
2020-12-23 11:35:02 +11:00
|
|
|
purge_favourites!
|
|
|
|
purge_bookmarks!
|
2020-12-23 09:57:46 +11:00
|
|
|
purge_feeds!
|
2020-12-23 03:13:55 +11:00
|
|
|
purge_other_associations!
|
2020-09-15 22:37:58 +10:00
|
|
|
|
2020-12-23 03:13:55 +11:00
|
|
|
@account.destroy unless keep_account_record?
|
|
|
|
end
|
|
|
|
|
|
|
|
def purge_statuses!
|
2020-12-23 09:57:46 +11:00
|
|
|
@account.statuses.reorder(nil).where.not(id: reported_status_ids).in_batches do |statuses|
|
2020-12-23 03:13:55 +11:00
|
|
|
BatchedRemoveStatusService.new.call(statuses, skip_side_effects: skip_side_effects?)
|
2020-09-15 22:37:58 +10:00
|
|
|
end
|
2020-12-23 03:13:55 +11:00
|
|
|
end
|
2020-09-15 22:37:58 +10:00
|
|
|
|
2020-12-24 02:43:11 +11:00
|
|
|
def purge_mentions!
|
|
|
|
@account.mentions.reorder(nil).where.not(status_id: reported_status_ids).in_batches.delete_all
|
|
|
|
end
|
|
|
|
|
2020-12-23 03:13:55 +11:00
|
|
|
def purge_media_attachments!
|
2020-09-15 22:37:58 +10:00
|
|
|
@account.media_attachments.reorder(nil).find_each do |media_attachment|
|
2020-12-23 03:13:55 +11:00
|
|
|
next if keep_account_record? && reported_status_ids.include?(media_attachment.status_id)
|
2020-09-15 22:37:58 +10:00
|
|
|
|
|
|
|
media_attachment.destroy
|
|
|
|
end
|
2020-12-23 03:13:55 +11:00
|
|
|
end
|
2020-09-15 22:37:58 +10:00
|
|
|
|
2020-12-23 03:13:55 +11:00
|
|
|
def purge_polls!
|
2020-12-23 09:57:46 +11:00
|
|
|
@account.polls.reorder(nil).where.not(status_id: reported_status_ids).in_batches.delete_all
|
2020-12-23 03:13:55 +11:00
|
|
|
end
|
2020-09-15 22:37:58 +10:00
|
|
|
|
2020-12-23 03:13:55 +11:00
|
|
|
def purge_generated_notifications!
|
|
|
|
# By deleting polls and statuses without callbacks, we've left behind
|
|
|
|
# polymorphically associated notifications generated by this account
|
|
|
|
|
|
|
|
Notification.where(from_account: @account).in_batches.delete_all
|
|
|
|
end
|
|
|
|
|
2020-12-23 11:35:02 +11:00
|
|
|
def purge_favourites!
|
|
|
|
@account.favourites.in_batches do |favourites|
|
|
|
|
ids = favourites.pluck(:status_id)
|
|
|
|
StatusStat.where(status_id: ids).update_all('favourites_count = GREATEST(0, favourites_count - 1)')
|
2021-11-19 08:02:08 +11:00
|
|
|
Chewy.strategy.current.update(StatusesIndex, ids) if Chewy.enabled?
|
2021-03-24 20:44:31 +11:00
|
|
|
Rails.cache.delete_multi(ids.map { |id| "statuses/#{id}" })
|
2020-12-23 11:35:02 +11:00
|
|
|
favourites.delete_all
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def purge_bookmarks!
|
|
|
|
@account.bookmarks.in_batches do |bookmarks|
|
2021-11-19 08:02:08 +11:00
|
|
|
Chewy.strategy.current.update(StatusesIndex, bookmarks.pluck(:status_id)) if Chewy.enabled?
|
2020-12-23 11:35:02 +11:00
|
|
|
bookmarks.delete_all
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-12-23 03:13:55 +11:00
|
|
|
def purge_other_associations!
|
2020-09-15 22:37:58 +10:00
|
|
|
associations_for_destruction.each do |association_name|
|
2020-12-23 03:13:55 +11:00
|
|
|
purge_association(association_name)
|
2020-09-15 22:37:58 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-12-23 09:57:46 +11:00
|
|
|
def purge_feeds!
|
|
|
|
return unless @account.local?
|
|
|
|
|
|
|
|
FeedManager.instance.clean_feeds!(:home, [@account.id])
|
|
|
|
FeedManager.instance.clean_feeds!(:list, @account.owned_lists.pluck(:id))
|
|
|
|
end
|
|
|
|
|
2020-09-15 22:37:58 +10:00
|
|
|
def purge_profile!
|
|
|
|
# If the account is going to be destroyed
|
|
|
|
# there is no point wasting time updating
|
|
|
|
# its values first
|
|
|
|
|
2020-12-23 03:13:55 +11:00
|
|
|
return unless keep_account_record?
|
2020-09-15 22:37:58 +10:00
|
|
|
|
2022-02-25 10:34:14 +11:00
|
|
|
@account.silenced_at = nil
|
|
|
|
@account.suspended_at = @options[:suspended_at] || Time.now.utc
|
|
|
|
@account.suspension_origin = :local
|
|
|
|
@account.locked = false
|
|
|
|
@account.memorial = false
|
|
|
|
@account.discoverable = false
|
|
|
|
@account.trendable = false
|
|
|
|
@account.display_name = ''
|
|
|
|
@account.note = ''
|
|
|
|
@account.fields = []
|
|
|
|
@account.statuses_count = 0
|
|
|
|
@account.followers_count = 0
|
|
|
|
@account.following_count = 0
|
|
|
|
@account.moved_to_account = nil
|
|
|
|
@account.reviewed_at = nil
|
|
|
|
@account.requested_review_at = nil
|
|
|
|
@account.also_known_as = []
|
2020-09-15 22:37:58 +10:00
|
|
|
@account.avatar.destroy
|
|
|
|
@account.header.destroy
|
|
|
|
@account.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
def fulfill_deletion_request!
|
|
|
|
@account.deletion_request&.destroy
|
|
|
|
end
|
|
|
|
|
2020-12-23 03:13:55 +11:00
|
|
|
def purge_association(association_name)
|
|
|
|
association = @account.public_send(association_name)
|
|
|
|
|
|
|
|
if ASSOCIATIONS_WITHOUT_SIDE_EFFECTS.include?(association_name)
|
|
|
|
association.in_batches.delete_all
|
|
|
|
else
|
|
|
|
association.in_batches.destroy_all
|
|
|
|
end
|
2020-09-15 22:37:58 +10:00
|
|
|
end
|
|
|
|
|
2020-12-23 03:13:55 +11:00
|
|
|
def delete_actor!
|
2020-09-15 22:37:58 +10:00
|
|
|
ActivityPub::DeliveryWorker.push_bulk(delivery_inboxes) do |inbox_url|
|
|
|
|
[delete_actor_json, @account.id, inbox_url]
|
|
|
|
end
|
|
|
|
|
|
|
|
ActivityPub::LowPriorityDeliveryWorker.push_bulk(low_priority_delivery_inboxes) do |inbox_url|
|
|
|
|
[delete_actor_json, @account.id, inbox_url]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_actor_json
|
2022-02-12 00:52:45 +11:00
|
|
|
@delete_actor_json ||= Oj.dump(serialize_payload(@account, ActivityPub::DeleteActorSerializer, signer: @account, always_sign: true))
|
2020-09-15 22:37:58 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def delivery_inboxes
|
|
|
|
@delivery_inboxes ||= @account.followers.inboxes + Relay.enabled.pluck(:inbox_url)
|
|
|
|
end
|
|
|
|
|
|
|
|
def low_priority_delivery_inboxes
|
|
|
|
Account.inboxes - delivery_inboxes
|
|
|
|
end
|
|
|
|
|
|
|
|
def reported_status_ids
|
|
|
|
@reported_status_ids ||= Report.where(target_account: @account).unresolved.pluck(:status_ids).flatten.uniq
|
|
|
|
end
|
|
|
|
|
|
|
|
def associations_for_destruction
|
2020-12-23 03:13:55 +11:00
|
|
|
if keep_account_record?
|
2020-09-15 22:37:58 +10:00
|
|
|
ASSOCIATIONS_ON_SUSPEND
|
|
|
|
else
|
|
|
|
ASSOCIATIONS_ON_SUSPEND + ASSOCIATIONS_ON_DESTROY
|
|
|
|
end
|
|
|
|
end
|
2020-12-23 03:13:55 +11:00
|
|
|
|
|
|
|
def keep_user_record?
|
|
|
|
@options[:reserve_email]
|
|
|
|
end
|
|
|
|
|
|
|
|
def keep_account_record?
|
|
|
|
@options[:reserve_username]
|
|
|
|
end
|
|
|
|
|
|
|
|
def skip_side_effects?
|
|
|
|
@options[:skip_side_effects]
|
|
|
|
end
|
|
|
|
|
|
|
|
def skip_activitypub?
|
|
|
|
@options[:skip_activitypub]
|
|
|
|
end
|
2020-09-15 22:37:58 +10:00
|
|
|
end
|