commit: 2ef9f36cf2b956a6e9057a4ef784f7770a97419e
parent: f978b06dd188fef4c2ece5e787818579b663ddf8
Author: Eugen Rochko <eugen@zeonfederated.com>
Date: Tue, 6 Dec 2016 18:32:36 +0100
Improve suspend account service
Diffstat:
2 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/app/services/remove_status_service.rb b/app/services/remove_status_service.rb
@@ -11,10 +11,10 @@ class RemoveStatusService < BaseService
status.destroy!
- if status.account.local?
- HubPingWorker.perform_async(status.account.id)
- Pubsubhubbub::DistributionWorker.perform_async(status.stream_entry.id)
- end
+ return unless status.account.local?
+
+ HubPingWorker.perform_async(status.account.id)
+ Pubsubhubbub::DistributionWorker.perform_async(status.stream_entry.id)
end
private
diff --git a/app/services/suspend_account_service.rb b/app/services/suspend_account_service.rb
@@ -12,8 +12,11 @@ class SuspendAccountService < BaseService
private
def purge_content
+ @account.statuses.find_each do |status|
+ RemoveStatusService.new.call(status)
+ end
+
@account.media_attachments.destroy_all
- @account.statuses.destroy_all
@account.stream_entries.destroy_all
@account.mentions.destroy_all
@account.notifications.destroy_all