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)
|
2017-04-06 00:26:59 +00:00
|
|
|
@payload = Oj.dump(event: :delete, payload: status.id)
|
|
|
|
|
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)
|
2017-04-06 00:26:59 +00:00
|
|
|
status.account.followers.where(domain: nil).each do |follower|
|
2016-09-04 23:59:46 +00:00
|
|
|
unpush(:home, follower, status)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_mentioned(status)
|
2017-04-06 00:26:59 +00:00
|
|
|
return unless status.local?
|
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
|
|
|
|
2017-04-06 00:26:59 +00:00
|
|
|
next if mentioned_account.local?
|
|
|
|
next if notified_domains.include?(mentioned_account.domain)
|
|
|
|
|
|
|
|
notified_domains << mentioned_account.domain
|
|
|
|
send_delete_salmon(mentioned_account, status)
|
2016-09-04 23:59:46 +00:00
|
|
|
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-04-06 00:26:59 +00:00
|
|
|
Redis.current.publish("timeline:#{receiver.id}", @payload)
|
2016-09-04 23:59:46 +00:00
|
|
|
end
|
|
|
|
|
2016-11-09 18:16:27 +00:00
|
|
|
def remove_from_hashtags(status)
|
2017-04-06 00:26:59 +00:00
|
|
|
status.tags.pluck(:name) do |hashtag|
|
2017-04-06 02:03:23 +00:00
|
|
|
Redis.current.publish("timeline:hashtag:#{hashtag}", @payload)
|
|
|
|
Redis.current.publish("timeline:hashtag:#{hashtag}:local", @payload) if status.local?
|
2016-11-09 18:16:27 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_public(status)
|
2017-04-06 02:03:23 +00:00
|
|
|
Redis.current.publish('timeline:public', @payload)
|
|
|
|
Redis.current.publish('timeline:public:local', @payload) if status.local?
|
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
|