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)
|
2017-04-03 20:54:46 +00:00
|
|
|
raise Mastodon::RaceConditionError if status.visibility.nil?
|
|
|
|
|
2018-10-23 18:03:35 +00:00
|
|
|
deliver_to_self(status) if status.account.local?
|
|
|
|
|
2018-04-18 11:09:06 +00:00
|
|
|
render_anonymous_payload(status)
|
|
|
|
|
2017-04-02 13:46:31 +00:00
|
|
|
if status.direct_visibility?
|
2018-10-22 16:15:51 +00:00
|
|
|
deliver_to_mentioned_followers(status)
|
|
|
|
deliver_to_direct_timelines(status)
|
2018-10-07 21:44:58 +00:00
|
|
|
deliver_to_own_conversation(status)
|
2018-10-17 15:13:04 +00:00
|
|
|
elsif status.limited_visibility?
|
|
|
|
deliver_to_mentioned_followers(status)
|
2017-04-02 13:46:31 +00:00
|
|
|
else
|
|
|
|
deliver_to_followers(status)
|
2017-11-17 23:16:48 +00:00
|
|
|
deliver_to_lists(status)
|
2017-04-02 13:46:31 +00:00
|
|
|
end
|
2016-11-05 14:20:05 +00:00
|
|
|
|
2019-04-30 19:51:24 +00:00
|
|
|
return if status.account.silenced? || !status.public_visibility?
|
|
|
|
return if status.reblog? && !Setting.show_reblogs_in_public_timelines
|
2016-11-05 14:20:05 +00:00
|
|
|
|
|
|
|
deliver_to_hashtags(status)
|
2017-01-31 21:34:33 +00:00
|
|
|
|
2019-04-30 19:51:24 +00:00
|
|
|
return if status.reply? && status.in_reply_to_account_id != status.account_id && !Setting.show_replies_in_public_timelines
|
2017-01-31 21:34:33 +00:00
|
|
|
|
2016-10-07 14:00:11 +00:00
|
|
|
deliver_to_public(status)
|
2018-05-21 14:01:16 +00:00
|
|
|
deliver_to_media(status) if status.media_attachments.any?
|
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"
|
2017-11-17 23:16:48 +00:00
|
|
|
FeedManager.instance.push_to_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"
|
|
|
|
|
2018-05-29 20:55:33 +00:00
|
|
|
status.account.followers_for_local_distribution.select(:id).reorder(nil).find_in_batches do |followers|
|
2017-06-03 22:11:15 +00:00
|
|
|
FeedInsertWorker.push_bulk(followers) do |follower|
|
2017-11-17 23:16:48 +00:00
|
|
|
[status.id, follower.id, :home]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def deliver_to_lists(status)
|
|
|
|
Rails.logger.debug "Delivering status #{status.id} to lists"
|
|
|
|
|
2018-05-29 20:55:33 +00:00
|
|
|
status.account.lists_for_local_distribution.select(:id).reorder(nil).find_in_batches do |lists|
|
2017-11-17 23:16:48 +00:00
|
|
|
FeedInsertWorker.push_bulk(lists) do |list|
|
|
|
|
[status.id, list.id, :list]
|
2017-06-03 22:11:15 +00:00
|
|
|
end
|
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
|
|
|
|
2018-10-17 15:13:04 +00:00
|
|
|
def deliver_to_mentioned_followers(status)
|
|
|
|
Rails.logger.debug "Delivering status #{status.id} to limited followers"
|
|
|
|
|
2018-10-30 14:03:55 +00:00
|
|
|
FeedInsertWorker.push_bulk(status.mentions.includes(:account).map(&:account).select { |mentioned_account| mentioned_account.local? && mentioned_account.following?(status.account) }) do |follower|
|
|
|
|
[status.id, follower.id, :home]
|
2018-10-17 15:13:04 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-05 12:26:17 +00:00
|
|
|
def render_anonymous_payload(status)
|
2017-07-07 02:02:06 +00:00
|
|
|
@payload = InlineRenderer.render(status, nil, :status)
|
2017-04-06 00:26:59 +00:00
|
|
|
@payload = Oj.dump(event: :update, payload: @payload)
|
2017-04-05 12:26:17 +00:00
|
|
|
end
|
|
|
|
|
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"
|
2017-02-06 22:46:14 +00:00
|
|
|
|
2017-04-04 17:21:37 +00:00
|
|
|
status.tags.pluck(:name).each do |hashtag|
|
2017-04-06 02:03:23 +00:00
|
|
|
Redis.current.publish("timeline:hashtag:#{hashtag}", @payload)
|
|
|
|
Redis.current.publish("timeline:hashtag:#{hashtag}:local", @payload) if status.local?
|
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"
|
2017-02-06 22:46:14 +00:00
|
|
|
|
2017-04-06 02:03:23 +00:00
|
|
|
Redis.current.publish('timeline:public', @payload)
|
|
|
|
Redis.current.publish('timeline:public:local', @payload) if status.local?
|
2016-10-07 14:00:11 +00:00
|
|
|
end
|
2018-04-18 11:09:06 +00:00
|
|
|
|
2018-05-21 10:43:38 +00:00
|
|
|
def deliver_to_media(status)
|
|
|
|
Rails.logger.debug "Delivering status #{status.id} to media timeline"
|
|
|
|
|
|
|
|
Redis.current.publish('timeline:public:media', @payload)
|
|
|
|
Redis.current.publish('timeline:public:local:media', @payload) if status.local?
|
|
|
|
end
|
|
|
|
|
2018-10-22 16:15:51 +00:00
|
|
|
def deliver_to_direct_timelines(status)
|
|
|
|
Rails.logger.debug "Delivering status #{status.id} to direct timelines"
|
|
|
|
|
|
|
|
status.mentions.includes(:account).each do |mention|
|
|
|
|
Redis.current.publish("timeline:direct:#{mention.account.id}", @payload) if mention.account.local?
|
|
|
|
end
|
|
|
|
|
|
|
|
Redis.current.publish("timeline:direct:#{status.account.id}", @payload) if status.account.local?
|
|
|
|
end
|
|
|
|
|
2018-10-07 21:44:58 +00:00
|
|
|
def deliver_to_own_conversation(status)
|
|
|
|
AccountConversation.add_status(status.account, status)
|
|
|
|
end
|
2016-03-08 19:16:11 +00:00
|
|
|
end
|