2017-01-24 21:40:41 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AfterBlockService < BaseService
|
|
|
|
def call(account, target_account)
|
2019-07-25 04:17:35 +02:00
|
|
|
@account = account
|
|
|
|
@target_account = target_account
|
|
|
|
|
|
|
|
clear_home_feed!
|
2021-05-10 17:31:55 +02:00
|
|
|
clear_list_feeds!
|
2019-07-25 04:17:35 +02:00
|
|
|
clear_notifications!
|
|
|
|
clear_conversations!
|
2017-01-24 21:40:41 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-07-25 04:17:35 +02:00
|
|
|
def clear_home_feed!
|
2020-09-08 03:41:16 +02:00
|
|
|
FeedManager.instance.clear_from_home(@account, @target_account)
|
2018-10-07 23:44:58 +02:00
|
|
|
end
|
|
|
|
|
2021-05-10 17:31:55 +02:00
|
|
|
def clear_list_feeds!
|
|
|
|
FeedManager.instance.clear_from_lists(@account, @target_account)
|
|
|
|
end
|
|
|
|
|
2019-07-25 04:17:35 +02:00
|
|
|
def clear_conversations!
|
|
|
|
AccountConversation.where(account: @account).where('? = ANY(participant_account_ids)', @target_account.id).in_batches.destroy_all
|
2018-10-07 23:44:58 +02:00
|
|
|
end
|
|
|
|
|
2019-07-25 04:17:35 +02:00
|
|
|
def clear_notifications!
|
|
|
|
Notification.where(account: @account).where(from_account: @target_account).in_batches.delete_all
|
2017-01-24 21:40:41 +01:00
|
|
|
end
|
|
|
|
end
|