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