2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-03 15:11:15 -07:00
|
|
|
require 'sidekiq-bulk'
|
|
|
|
|
2016-03-08 11:16:11 -08:00
|
|
|
class FanOutOnWriteService < BaseService
|
|
|
|
# Push a status into home and mentions feeds
|
|
|
|
# @param [Status] status
|
|
|
|
def call(status)
|
2017-04-03 13:54:46 -07:00
|
|
|
raise Mastodon::RaceConditionError if status.visibility.nil?
|
|
|
|
|
2016-03-21 09:02:16 -07:00
|
|
|
deliver_to_self(status) if status.account.local?
|
2017-03-15 14:52:57 -07:00
|
|
|
|
2017-04-02 06:46:31 -07:00
|
|
|
if status.direct_visibility?
|
|
|
|
deliver_to_mentioned_followers(status)
|
|
|
|
else
|
|
|
|
deliver_to_followers(status)
|
2017-11-17 15:16:48 -08:00
|
|
|
deliver_to_lists(status)
|
2017-04-02 06:46:31 -07:00
|
|
|
end
|
2016-11-05 07:20:05 -07:00
|
|
|
|
2017-01-31 13:34:33 -08:00
|
|
|
return if status.account.silenced? || !status.public_visibility? || status.reblog?
|
2016-11-05 07:20:05 -07:00
|
|
|
|
2017-04-05 05:26:17 -07:00
|
|
|
render_anonymous_payload(status)
|
2016-11-05 07:20:05 -07:00
|
|
|
deliver_to_hashtags(status)
|
2017-01-31 13:34:33 -08:00
|
|
|
|
|
|
|
return if status.reply? && status.in_reply_to_account_id != status.account_id
|
|
|
|
|
2016-10-07 07:00:11 -07:00
|
|
|
deliver_to_public(status)
|
2016-03-21 09:02:16 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
2016-03-08 11:16:11 -08:00
|
|
|
|
2016-03-21 09:02:16 -07:00
|
|
|
def deliver_to_self(status)
|
2016-11-06 06:56:34 -08:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to author"
|
2017-11-17 15:16:48 -08:00
|
|
|
FeedManager.instance.push_to_home(status.account, status)
|
2016-03-21 09:02:16 -07:00
|
|
|
end
|
2016-03-08 11:16:11 -08:00
|
|
|
|
2016-03-25 06:12:24 -07:00
|
|
|
def deliver_to_followers(status)
|
2016-11-06 06:56:34 -08:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to followers"
|
|
|
|
|
2017-06-03 15:11:15 -07:00
|
|
|
status.account.followers.where(domain: nil).joins(:user).where('users.current_sign_in_at > ?', 14.days.ago).select(:id).reorder(nil).find_in_batches do |followers|
|
|
|
|
FeedInsertWorker.push_bulk(followers) do |follower|
|
2017-11-17 15:16:48 -08:00
|
|
|
[status.id, follower.id, :home]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def deliver_to_lists(status)
|
|
|
|
Rails.logger.debug "Delivering status #{status.id} to lists"
|
|
|
|
|
|
|
|
status.account.lists.joins(account: :user).where('users.current_sign_in_at > ?', 14.days.ago).select(:id).reorder(nil).find_in_batches do |lists|
|
|
|
|
FeedInsertWorker.push_bulk(lists) do |list|
|
|
|
|
[status.id, list.id, :list]
|
2017-06-03 15:11:15 -07:00
|
|
|
end
|
2016-03-08 11:16:11 -08:00
|
|
|
end
|
2016-03-21 09:02:16 -07:00
|
|
|
end
|
2016-03-08 11:16:11 -08:00
|
|
|
|
2017-03-15 14:52:57 -07:00
|
|
|
def deliver_to_mentioned_followers(status)
|
|
|
|
Rails.logger.debug "Delivering status #{status.id} to mentioned followers"
|
|
|
|
|
|
|
|
status.mentions.includes(:account).each do |mention|
|
|
|
|
mentioned_account = mention.account
|
2017-04-04 10:21:37 -07:00
|
|
|
next if !mentioned_account.local? || !mentioned_account.following?(status.account) || FeedManager.instance.filter?(:home, status, mention.account_id)
|
2017-11-17 15:16:48 -08:00
|
|
|
FeedManager.instance.push_to_home(mentioned_account, status)
|
2017-03-15 14:52:57 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-05 05:26:17 -07:00
|
|
|
def render_anonymous_payload(status)
|
2017-07-06 19:02:06 -07:00
|
|
|
@payload = InlineRenderer.render(status, nil, :status)
|
2017-04-05 17:26:59 -07:00
|
|
|
@payload = Oj.dump(event: :update, payload: @payload)
|
2017-04-05 05:26:17 -07:00
|
|
|
end
|
|
|
|
|
2016-11-05 07:20:05 -07:00
|
|
|
def deliver_to_hashtags(status)
|
2016-11-26 06:45:35 -08:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to hashtags"
|
2017-02-06 14:46:14 -08:00
|
|
|
|
2017-04-04 10:21:37 -07:00
|
|
|
status.tags.pluck(:name).each do |hashtag|
|
2017-04-05 19:03:23 -07:00
|
|
|
Redis.current.publish("timeline:hashtag:#{hashtag}", @payload)
|
|
|
|
Redis.current.publish("timeline:hashtag:#{hashtag}:local", @payload) if status.local?
|
2016-11-05 07:20:05 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-07 07:00:11 -07:00
|
|
|
def deliver_to_public(status)
|
2016-11-06 06:56:34 -08:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to public timeline"
|
2017-02-06 14:46:14 -08:00
|
|
|
|
2017-04-05 19:03:23 -07:00
|
|
|
Redis.current.publish('timeline:public', @payload)
|
|
|
|
Redis.current.publish('timeline:public:local', @payload) if status.local?
|
2016-10-07 07:00:11 -07:00
|
|
|
end
|
2016-03-08 11:16:11 -08:00
|
|
|
end
|