2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-08 19:16:11 +00:00
|
|
|
class FanOutOnWriteService < BaseService
|
|
|
|
# Push a status into home and mentions feeds
|
|
|
|
# @param [Status] status
|
|
|
|
def call(status)
|
2016-03-21 16:02:16 +00:00
|
|
|
deliver_to_self(status) if status.account.local?
|
2016-03-25 13:12:24 +00:00
|
|
|
deliver_to_followers(status)
|
2016-03-21 16:02:16 +00:00
|
|
|
deliver_to_mentioned(status)
|
2016-11-05 14:20:05 +00:00
|
|
|
|
2016-12-02 13:33:20 +00:00
|
|
|
return if status.account.silenced? || !status.public_visibility? || status.reblog? || (status.reply? && status.in_reply_to_account_id != status.account_id)
|
2016-11-05 14:20:05 +00:00
|
|
|
|
|
|
|
deliver_to_hashtags(status)
|
2016-10-07 14:00:11 +00:00
|
|
|
deliver_to_public(status)
|
2016-03-21 16:02:16 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
2016-03-08 19:16:11 +00:00
|
|
|
|
2016-03-21 16:02:16 +00:00
|
|
|
def deliver_to_self(status)
|
2016-11-06 14:56:34 +00:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to author"
|
2016-09-10 16:36:48 +00:00
|
|
|
FeedManager.instance.push(:home, status.account, status)
|
2016-03-21 16:02:16 +00:00
|
|
|
end
|
2016-03-08 19:16:11 +00:00
|
|
|
|
2016-03-25 13:12:24 +00:00
|
|
|
def deliver_to_followers(status)
|
2016-11-06 14:56:34 +00:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to followers"
|
|
|
|
|
2016-11-24 17:17:58 +00:00
|
|
|
status.account.followers.where(domain: nil).joins(:user).where('users.current_sign_in_at > ?', 14.days.ago).find_each do |follower|
|
2016-11-21 21:04:10 +00:00
|
|
|
next if FeedManager.instance.filter?(:home, status, follower)
|
2016-09-10 16:36:48 +00:00
|
|
|
FeedManager.instance.push(:home, follower, status)
|
2016-03-08 19:16:11 +00:00
|
|
|
end
|
2016-03-21 16:02:16 +00:00
|
|
|
end
|
2016-03-08 19:16:11 +00:00
|
|
|
|
2016-03-21 16:02:16 +00:00
|
|
|
def deliver_to_mentioned(status)
|
2016-11-06 14:56:34 +00:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to mentioned accounts"
|
|
|
|
|
|
|
|
status.mentions.includes(:account).each do |mention|
|
2016-03-19 18:20:07 +00:00
|
|
|
mentioned_account = mention.account
|
2016-11-08 01:08:32 +00:00
|
|
|
next if !mentioned_account.local? || FeedManager.instance.filter?(:mentions, status, mentioned_account)
|
2016-09-10 16:36:48 +00:00
|
|
|
FeedManager.instance.push(:mentions, mentioned_account, status)
|
2016-03-08 19:16:11 +00:00
|
|
|
end
|
|
|
|
end
|
2016-10-07 14:00:11 +00:00
|
|
|
|
2016-11-05 14:20:05 +00:00
|
|
|
def deliver_to_hashtags(status)
|
2016-11-26 14:45:35 +00:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to hashtags"
|
2016-11-05 14:20:05 +00:00
|
|
|
status.tags.find_each do |tag|
|
2016-11-09 23:47:47 +00:00
|
|
|
FeedManager.instance.broadcast("hashtag:#{tag.name}", type: 'update', id: status.id)
|
2016-11-05 14:20:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-07 14:00:11 +00:00
|
|
|
def deliver_to_public(status)
|
2016-11-06 14:56:34 +00:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to public timeline"
|
2016-11-09 23:47:47 +00:00
|
|
|
FeedManager.instance.broadcast(:public, type: 'update', id: status.id)
|
2016-10-07 14:00:11 +00:00
|
|
|
end
|
2016-03-08 19:16:11 +00:00
|
|
|
end
|