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.
2017-01-24 12:40:41 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AfterBlockService < BaseService
|
|
|
|
def call(account, target_account)
|
2019-07-24 19:17:35 -07:00
|
|
|
@account = account
|
|
|
|
@target_account = target_account
|
|
|
|
|
|
|
|
clear_home_feed!
|
|
|
|
clear_notifications!
|
|
|
|
clear_conversations!
|
2017-01-24 12:40:41 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-07-24 19:17:35 -07:00
|
|
|
def clear_home_feed!
|
|
|
|
FeedManager.instance.clear_from_timeline(@account, @target_account)
|
2018-10-07 14:44:58 -07:00
|
|
|
end
|
|
|
|
|
2019-07-24 19:17:35 -07:00
|
|
|
def clear_conversations!
|
|
|
|
AccountConversation.where(account: @account).where('? = ANY(participant_account_ids)', @target_account.id).in_batches.destroy_all
|
2018-10-07 14:44:58 -07:00
|
|
|
end
|
|
|
|
|
2019-07-24 19:17:35 -07:00
|
|
|
def clear_notifications!
|
|
|
|
Notification.where(account: @account).where(from_account: @target_account).in_batches.delete_all
|
2017-01-24 12:40:41 -08:00
|
|
|
end
|
|
|
|
end
|