This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-12-06 08:41:42 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class SuspendAccountService < BaseService
|
|
|
|
def call(account)
|
|
|
|
@account = account
|
|
|
|
|
|
|
|
purge_content
|
|
|
|
purge_profile
|
|
|
|
unsubscribe_push_subscribers
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def purge_content
|
2017-04-12 06:58:08 -07:00
|
|
|
@account.statuses.reorder(nil).find_each do |status|
|
2017-04-16 03:51:30 -07:00
|
|
|
# This federates out deletes to previous followers
|
2016-12-06 09:32:36 -08:00
|
|
|
RemoveStatusService.new.call(status)
|
|
|
|
end
|
|
|
|
|
2017-05-04 14:44:39 -07:00
|
|
|
[
|
|
|
|
@account.media_attachments,
|
|
|
|
@account.stream_entries,
|
|
|
|
@account.notifications,
|
|
|
|
@account.favourites,
|
|
|
|
@account.active_relationships,
|
|
|
|
@account.passive_relationships
|
|
|
|
].each do |association|
|
|
|
|
destroy_all(association)
|
|
|
|
end
|
2016-12-06 08:41:42 -08: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 14:44:39 -07:00
|
|
|
destroy_all(@account.subscriptions)
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy_all(association)
|
|
|
|
association.in_batches.destroy_all
|
2016-12-06 08:41:42 -08:00
|
|
|
end
|
|
|
|
end
|