12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- # frozen_string_literal: true
- class RemoveStatusService < BaseService
- def call(status)
- remove_from_self(status) if status.account.local?
- remove_from_followers(status)
- remove_from_mentioned(status)
- remove_reblogs(status)
- remove_from_hashtags(status)
- remove_from_public(status)
- status.destroy!
- return unless status.account.local?
- Pubsubhubbub::DistributionWorker.perform_async(status.stream_entry.id)
- end
- private
- def remove_from_self(status)
- unpush(:home, status.account, status)
- end
- def remove_from_followers(status)
- status.account.followers.each do |follower|
- next unless follower.local?
- unpush(:home, follower, status)
- end
- end
- def remove_from_mentioned(status)
- status.mentions.each do |mention|
- mentioned_account = mention.account
- if mentioned_account.local?
- unpush(:mentions, mentioned_account, status)
- else
- send_delete_salmon(mentioned_account, status)
- end
- end
- end
- def send_delete_salmon(account, status)
- return unless status.local?
- NotificationWorker.perform_async(status.stream_entry.id, account.id)
- end
- def remove_reblogs(status)
- status.reblogs.each do |reblog|
- RemoveStatusService.new.call(reblog)
- end
- end
- def unpush(type, receiver, status)
- redis.zremrangebyscore(FeedManager.instance.key(type, receiver.id), status.id, status.id)
- FeedManager.instance.broadcast(receiver.id, type: 'delete', id: status.id)
- end
- def remove_from_hashtags(status)
- status.tags.each do |tag|
- FeedManager.instance.broadcast("hashtag:#{tag.name}", type: 'delete', id: status.id)
- end
- end
- def remove_from_public(status)
- FeedManager.instance.broadcast(:public, type: 'delete', id: status.id)
- end
- def redis
- Redis.current
- end
- end
|