2016-12-06 16:41:42 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class SuspendAccountService < BaseService
|
2017-12-06 10:41:57 +00:00
|
|
|
def call(account, **options)
|
2016-12-06 16:41:42 +00:00
|
|
|
@account = account
|
2017-11-07 18:06:44 +00:00
|
|
|
@options = options
|
2016-12-06 16:41:42 +00:00
|
|
|
|
2017-11-07 18:06:44 +00:00
|
|
|
purge_user!
|
|
|
|
purge_profile!
|
|
|
|
purge_content!
|
|
|
|
unsubscribe_push_subscribers!
|
2016-12-06 16:41:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-11-07 18:06:44 +00:00
|
|
|
def purge_user!
|
|
|
|
if @options[:remove_user]
|
|
|
|
@account.user&.destroy
|
|
|
|
else
|
|
|
|
@account.user&.disable!
|
|
|
|
end
|
2017-06-14 16:01:27 +00:00
|
|
|
end
|
|
|
|
|
2017-11-07 18:06:44 +00:00
|
|
|
def purge_content!
|
2018-07-13 00:16:06 +00:00
|
|
|
if @account.local?
|
2018-08-20 11:28:05 +00:00
|
|
|
ActivityPub::DeliveryWorker.push_bulk(delivery_inboxes) do |inbox_url|
|
2018-07-13 00:16:06 +00:00
|
|
|
[delete_actor_json, @account.id, inbox_url]
|
|
|
|
end
|
|
|
|
end
|
2018-01-04 13:40:49 +00:00
|
|
|
|
2017-06-14 16:01:35 +00:00
|
|
|
@account.statuses.reorder(nil).find_in_batches do |statuses|
|
|
|
|
BatchedRemoveStatusService.new.call(statuses)
|
2016-12-06 17:32:36 +00:00
|
|
|
end
|
|
|
|
|
2017-05-04 21:44:39 +00:00
|
|
|
[
|
|
|
|
@account.media_attachments,
|
|
|
|
@account.stream_entries,
|
|
|
|
@account.notifications,
|
|
|
|
@account.favourites,
|
|
|
|
@account.active_relationships,
|
2017-06-08 11:24:28 +00:00
|
|
|
@account.passive_relationships,
|
2017-05-04 21:44:39 +00:00
|
|
|
].each do |association|
|
|
|
|
destroy_all(association)
|
|
|
|
end
|
2016-12-06 16:41:42 +00:00
|
|
|
end
|
|
|
|
|
2017-11-07 18:06:44 +00:00
|
|
|
def purge_profile!
|
2018-05-30 00:50:23 +00:00
|
|
|
@account.suspended = true
|
|
|
|
@account.display_name = ''
|
|
|
|
@account.note = ''
|
|
|
|
@account.statuses_count = 0
|
2016-12-06 16:41:42 +00:00
|
|
|
@account.avatar.destroy
|
|
|
|
@account.header.destroy
|
|
|
|
@account.save!
|
|
|
|
end
|
|
|
|
|
2017-11-07 18:06:44 +00:00
|
|
|
def unsubscribe_push_subscribers!
|
2017-05-04 21:44:39 +00:00
|
|
|
destroy_all(@account.subscriptions)
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy_all(association)
|
|
|
|
association.in_batches.destroy_all
|
2016-12-06 16:41:42 +00:00
|
|
|
end
|
2018-01-04 13:40:49 +00:00
|
|
|
|
|
|
|
def delete_actor_json
|
2018-07-13 00:16:06 +00:00
|
|
|
return @delete_actor_json if defined?(@delete_actor_json)
|
|
|
|
|
2018-01-04 13:40:49 +00:00
|
|
|
payload = ActiveModelSerializers::SerializableResource.new(
|
|
|
|
@account,
|
|
|
|
serializer: ActivityPub::DeleteActorSerializer,
|
|
|
|
adapter: ActivityPub::Adapter
|
|
|
|
).as_json
|
|
|
|
|
2018-07-13 00:16:06 +00:00
|
|
|
@delete_actor_json = Oj.dump(ActivityPub::LinkedDataSignature.new(payload).sign!(@account))
|
2018-01-04 13:40:49 +00:00
|
|
|
end
|
2018-08-20 11:28:05 +00:00
|
|
|
|
|
|
|
def delivery_inboxes
|
|
|
|
Account.inboxes + Relay.enabled.pluck(:inbox_url)
|
|
|
|
end
|
2016-12-06 16:41:42 +00:00
|
|
|
end
|