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-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-03 09:17:06 -07:00
|
|
|
class BlockService < BaseService
|
|
|
|
def call(account, target_account)
|
|
|
|
return if account.id == target_account.id
|
|
|
|
|
|
|
|
UnfollowService.new.call(account, target_account) if account.following?(target_account)
|
|
|
|
account.block!(target_account)
|
|
|
|
clear_mentions(account, target_account)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def clear_mentions(account, target_account)
|
|
|
|
timeline_key = FeedManager.instance.key(:mentions, account.id)
|
|
|
|
|
|
|
|
target_account.statuses.select('id').find_each do |status|
|
|
|
|
redis.zrem(timeline_key, status.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
FeedManager.instance.broadcast(account.id, type: 'block', id: target_account.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def redis
|
2016-11-15 07:56:29 -08:00
|
|
|
Redis.current
|
2016-10-03 09:17:06 -07:00
|
|
|
end
|
|
|
|
end
|