2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-08 14:16:11 -05:00
|
|
|
class FanOutOnWriteService < BaseService
|
|
|
|
# Push a status into home and mentions feeds
|
|
|
|
# @param [Status] status
|
|
|
|
def call(status)
|
2016-03-21 12:02:16 -04:00
|
|
|
deliver_to_self(status) if status.account.local?
|
2016-03-25 09:12:24 -04:00
|
|
|
deliver_to_followers(status)
|
2016-11-05 10:20:05 -04:00
|
|
|
|
2017-01-31 16:34:33 -05:00
|
|
|
return if status.account.silenced? || !status.public_visibility? || status.reblog?
|
2016-11-05 10:20:05 -04:00
|
|
|
|
|
|
|
deliver_to_hashtags(status)
|
2017-01-31 16:34:33 -05:00
|
|
|
|
|
|
|
return if status.reply? && status.in_reply_to_account_id != status.account_id
|
|
|
|
|
2016-10-07 10:00:11 -04:00
|
|
|
deliver_to_public(status)
|
2016-03-21 12:02:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
2016-03-08 14:16:11 -05:00
|
|
|
|
2016-03-21 12:02:16 -04:00
|
|
|
def deliver_to_self(status)
|
2016-11-06 09:56:34 -05:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to author"
|
2016-09-10 12:36:48 -04:00
|
|
|
FeedManager.instance.push(:home, status.account, status)
|
2016-03-21 12:02:16 -04:00
|
|
|
end
|
2016-03-08 14:16:11 -05:00
|
|
|
|
2016-03-25 09:12:24 -04:00
|
|
|
def deliver_to_followers(status)
|
2016-11-06 09:56:34 -05:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to followers"
|
|
|
|
|
2016-11-24 12:17:58 -05: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 16:04:10 -05:00
|
|
|
next if FeedManager.instance.filter?(:home, status, follower)
|
2016-09-10 12:36:48 -04:00
|
|
|
FeedManager.instance.push(:home, follower, status)
|
2016-03-08 14:16:11 -05:00
|
|
|
end
|
2016-03-21 12:02:16 -04:00
|
|
|
end
|
2016-03-08 14:16:11 -05:00
|
|
|
|
2016-11-05 10:20:05 -04:00
|
|
|
def deliver_to_hashtags(status)
|
2016-11-26 09:45:35 -05:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to hashtags"
|
2017-02-06 17:46:14 -05:00
|
|
|
|
|
|
|
payload = FeedManager.instance.inline_render(nil, 'api/v1/statuses/show', status)
|
|
|
|
|
2016-11-05 10:20:05 -04:00
|
|
|
status.tags.find_each do |tag|
|
2017-02-06 17:46:14 -05:00
|
|
|
FeedManager.instance.broadcast("hashtag:#{tag.name}", event: 'update', payload: payload)
|
|
|
|
FeedManager.instance.broadcast("hashtag:#{tag.name}:local", event: 'update', payload: payload) if status.account.local?
|
2016-11-05 10:20:05 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-07 10:00:11 -04:00
|
|
|
def deliver_to_public(status)
|
2016-11-06 09:56:34 -05:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to public timeline"
|
2017-02-06 17:46:14 -05:00
|
|
|
|
|
|
|
payload = FeedManager.instance.inline_render(nil, 'api/v1/statuses/show', status)
|
|
|
|
|
|
|
|
FeedManager.instance.broadcast(:public, event: 'update', payload: payload)
|
|
|
|
FeedManager.instance.broadcast('public:local', event: 'update', payload: payload) if status.account.local?
|
2016-10-07 10:00:11 -04:00
|
|
|
end
|
2016-03-08 14:16:11 -05:00
|
|
|
end
|