chinwagsocial/app/services/fan_out_on_write_service.rb

56 lines
1.7 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
class FanOutOnWriteService < BaseService
# Push a status into home and mentions feeds
# @param [Status] status
def call(status)
deliver_to_self(status) if status.account.local?
deliver_to_followers(status)
deliver_to_mentioned(status)
2016-11-06 01:20:05 +11:00
return if status.account.silenced?
deliver_to_hashtags(status)
2016-10-08 01:00:11 +11:00
deliver_to_public(status)
end
private
def deliver_to_self(status)
2016-11-07 01:56:34 +11:00
Rails.logger.debug "Delivering status #{status.id} to author"
FeedManager.instance.push(:home, status.account, status)
end
def deliver_to_followers(status)
2016-11-07 01:56:34 +11:00
Rails.logger.debug "Delivering status #{status.id} to followers"
2016-11-06 01:20:05 +11:00
status.account.followers.find_each do |follower|
2016-10-03 00:28:47 +11:00
next if !follower.local? || FeedManager.instance.filter?(:home, status, follower)
FeedManager.instance.push(:home, follower, status)
end
end
def deliver_to_mentioned(status)
2016-11-07 01:56:34 +11:00
Rails.logger.debug "Delivering status #{status.id} to mentioned accounts"
status.mentions.includes(:account).each do |mention|
mentioned_account = mention.account
2016-11-08 12:08:32 +11:00
next if !mentioned_account.local? || FeedManager.instance.filter?(:mentions, status, mentioned_account)
FeedManager.instance.push(:mentions, mentioned_account, status)
end
end
2016-10-08 01:00:11 +11:00
2016-11-06 01:20:05 +11:00
def deliver_to_hashtags(status)
2016-11-07 01:56:34 +11:00
Rails.logger.debug "Delivering status #{status.id} to hashtags"
2016-11-06 01:20:05 +11:00
status.tags.find_each do |tag|
FeedManager.instance.broadcast("hashtag:#{tag.name}", type: 'update', id: status.id)
2016-11-06 01:20:05 +11:00
end
end
2016-10-08 01:00:11 +11:00
def deliver_to_public(status)
2016-11-07 01:56:34 +11:00
Rails.logger.debug "Delivering status #{status.id} to public timeline"
FeedManager.instance.broadcast(:public, type: 'update', id: status.id)
2016-10-08 01:00:11 +11:00
end
end