2016-09-04 05:43:00 -07:00
|
|
|
class RemoveStatusService < BaseService
|
|
|
|
def call(status)
|
2016-09-04 16:59:46 -07:00
|
|
|
remove_from_self(status) if status.account.local?
|
|
|
|
remove_from_followers(status)
|
|
|
|
remove_from_mentioned(status)
|
|
|
|
remove_reblogs(status)
|
|
|
|
|
2016-09-04 05:43:00 -07:00
|
|
|
status.destroy!
|
2016-09-04 16:59:46 -07: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)
|
|
|
|
status.mentions.each do |mention|
|
|
|
|
mentioned_account = mention.account
|
2016-09-04 05:43:00 -07:00
|
|
|
|
2016-09-04 16:59:46 -07:00
|
|
|
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)
|
2016-10-16 10:14:23 -07:00
|
|
|
return unless status.local?
|
2016-10-14 11:09:33 -07:00
|
|
|
NotificationWorker.perform_async(status.stream_entry.id, account.id)
|
2016-09-04 16:59:46 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def remove_reblogs(status)
|
|
|
|
status.reblogs.each do |reblog|
|
2016-09-29 12:28:21 -07:00
|
|
|
RemoveStatusService.new.call(reblog)
|
2016-09-04 16:59:46 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unpush(type, receiver, status)
|
2016-09-09 11:04:34 -07:00
|
|
|
redis.zremrangebyscore(FeedManager.instance.key(type, receiver.id), status.id, status.id)
|
2016-09-12 09:33:16 -07:00
|
|
|
FeedManager.instance.broadcast(receiver.id, type: 'delete', id: status.id)
|
2016-09-04 16:59:46 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def redis
|
|
|
|
$redis
|
2016-09-04 05:43:00 -07:00
|
|
|
end
|
|
|
|
end
|