2016-12-06 17:41:42 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class SuspendAccountService < BaseService
|
2017-06-14 18:01:27 +02:00
|
|
|
def call(account, remove_user = false)
|
2016-12-06 17:41:42 +01:00
|
|
|
@account = account
|
|
|
|
|
2017-06-14 18:01:27 +02:00
|
|
|
purge_user if remove_user
|
2016-12-06 17:41:42 +01:00
|
|
|
purge_profile
|
2017-06-14 20:30:12 +02:00
|
|
|
purge_content
|
2016-12-06 17:41:42 +01:00
|
|
|
unsubscribe_push_subscribers
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-06-14 18:01:27 +02:00
|
|
|
def purge_user
|
|
|
|
@account.user.destroy
|
|
|
|
end
|
|
|
|
|
2016-12-06 17:41:42 +01:00
|
|
|
def purge_content
|
2017-06-14 18:01:35 +02:00
|
|
|
@account.statuses.reorder(nil).find_in_batches do |statuses|
|
|
|
|
BatchedRemoveStatusService.new.call(statuses)
|
2016-12-06 18:32:36 +01:00
|
|
|
end
|
|
|
|
|
2017-05-04 23:44:39 +02:00
|
|
|
[
|
|
|
|
@account.media_attachments,
|
|
|
|
@account.stream_entries,
|
|
|
|
@account.notifications,
|
|
|
|
@account.favourites,
|
|
|
|
@account.active_relationships,
|
2017-06-08 13:24:28 +02:00
|
|
|
@account.passive_relationships,
|
2017-05-04 23:44:39 +02:00
|
|
|
].each do |association|
|
|
|
|
destroy_all(association)
|
|
|
|
end
|
2016-12-06 17:41:42 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def purge_profile
|
|
|
|
@account.suspended = true
|
|
|
|
@account.display_name = ''
|
|
|
|
@account.note = ''
|
|
|
|
@account.avatar.destroy
|
|
|
|
@account.header.destroy
|
|
|
|
@account.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
def unsubscribe_push_subscribers
|
2017-05-04 23:44:39 +02:00
|
|
|
destroy_all(@account.subscriptions)
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy_all(association)
|
|
|
|
association.in_batches.destroy_all
|
2016-12-06 17:41:42 +01:00
|
|
|
end
|
|
|
|
end
|