2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-04 12:43:00 +00:00
|
|
|
class RemoveStatusService < BaseService
|
2017-02-11 01:12:05 +00:00
|
|
|
include StreamEntryRenderer
|
|
|
|
|
2016-09-04 12:43:00 +00:00
|
|
|
def call(status)
|
2016-09-04 23:59:46 +00:00
|
|
|
remove_from_self(status) if status.account.local?
|
|
|
|
remove_from_followers(status)
|
|
|
|
remove_from_mentioned(status)
|
|
|
|
remove_reblogs(status)
|
2016-11-09 18:16:27 +00:00
|
|
|
remove_from_hashtags(status)
|
|
|
|
remove_from_public(status)
|
2016-09-04 23:59:46 +00:00
|
|
|
|
2016-09-04 12:43:00 +00:00
|
|
|
status.destroy!
|
2016-11-28 12:36:47 +00:00
|
|
|
|
2016-12-06 17:32:36 +00:00
|
|
|
return unless status.account.local?
|
|
|
|
|
|
|
|
Pubsubhubbub::DistributionWorker.perform_async(status.stream_entry.id)
|
2016-09-04 23:59:46 +00:00
|
|
|
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)
|
2017-02-12 00:38:29 +00:00
|
|
|
notified_domains = []
|
|
|
|
|
2016-09-04 23:59:46 +00:00
|
|
|
status.mentions.each do |mention|
|
|
|
|
mentioned_account = mention.account
|
2016-09-04 12:43:00 +00:00
|
|
|
|
2016-09-04 23:59:46 +00:00
|
|
|
if mentioned_account.local?
|
|
|
|
unpush(:mentions, mentioned_account, status)
|
|
|
|
else
|
2017-02-12 00:38:29 +00:00
|
|
|
next if notified_domains.include?(mentioned_account.domain)
|
|
|
|
notified_domains << mentioned_account.domain
|
2016-09-04 23:59:46 +00:00
|
|
|
send_delete_salmon(mentioned_account, status)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def send_delete_salmon(account, status)
|
2016-10-16 17:14:23 +00:00
|
|
|
return unless status.local?
|
2017-02-11 01:12:05 +00:00
|
|
|
NotificationWorker.perform_async(stream_entry_to_xml(status.stream_entry), status.account_id, account.id)
|
2016-09-04 23:59:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def remove_reblogs(status)
|
|
|
|
status.reblogs.each do |reblog|
|
2016-09-29 19:28:21 +00:00
|
|
|
RemoveStatusService.new.call(reblog)
|
2016-09-04 23:59:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unpush(type, receiver, status)
|
2017-02-22 14:52:47 +00:00
|
|
|
if status.reblog? && !redis.zscore(FeedManager.instance.key(type, receiver.id), status.reblog_of_id).nil?
|
2017-01-07 14:44:22 +00:00
|
|
|
redis.zadd(FeedManager.instance.key(type, receiver.id), status.reblog_of_id, status.reblog_of_id)
|
|
|
|
else
|
|
|
|
redis.zremrangebyscore(FeedManager.instance.key(type, receiver.id), status.id, status.id)
|
|
|
|
end
|
|
|
|
|
2017-02-01 23:03:31 +00:00
|
|
|
FeedManager.instance.broadcast(receiver.id, event: 'delete', payload: status.id)
|
2016-09-04 23:59:46 +00:00
|
|
|
end
|
|
|
|
|
2016-11-09 18:16:27 +00:00
|
|
|
def remove_from_hashtags(status)
|
|
|
|
status.tags.each do |tag|
|
2017-02-01 23:03:31 +00:00
|
|
|
FeedManager.instance.broadcast("hashtag:#{tag.name}", event: 'delete', payload: status.id)
|
2016-11-09 18:16:27 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_public(status)
|
2017-02-01 23:03:31 +00:00
|
|
|
FeedManager.instance.broadcast(:public, event: 'delete', payload: status.id)
|
2016-11-09 18:16:27 +00:00
|
|
|
end
|
|
|
|
|
2016-09-04 23:59:46 +00:00
|
|
|
def redis
|
2016-11-15 15:56:29 +00:00
|
|
|
Redis.current
|
2016-09-04 12:43:00 +00:00
|
|
|
end
|
|
|
|
end
|