2016-11-16 00:56:29 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-09 04:16:11 +09:00
|
|
|
class FanOutOnWriteService < BaseService
|
|
|
|
# Push a status into home and mentions feeds
|
|
|
|
# @param [Status] status
|
|
|
|
def call(status)
|
2017-04-04 05:54:46 +09:00
|
|
|
raise Mastodon::RaceConditionError if status.visibility.nil?
|
|
|
|
|
2020-09-01 20:30:42 +09:00
|
|
|
deliver_to_self(status) if status.account.local?
|
|
|
|
|
2017-04-02 22:46:31 +09:00
|
|
|
if status.direct_visibility?
|
2020-11-19 08:23:46 +09:00
|
|
|
deliver_to_mentioned_followers(status)
|
2018-10-08 06:44:58 +09:00
|
|
|
deliver_to_own_conversation(status)
|
2018-10-18 00:13:04 +09:00
|
|
|
elsif status.limited_visibility?
|
|
|
|
deliver_to_mentioned_followers(status)
|
2017-04-02 22:46:31 +09:00
|
|
|
else
|
|
|
|
deliver_to_followers(status)
|
2017-11-18 08:16:48 +09:00
|
|
|
deliver_to_lists(status)
|
2017-04-02 22:46:31 +09:00
|
|
|
end
|
2016-11-05 23:20:05 +09:00
|
|
|
|
2017-02-01 06:34:33 +09:00
|
|
|
return if status.account.silenced? || !status.public_visibility? || status.reblog?
|
2016-11-05 23:20:05 +09:00
|
|
|
|
2020-08-30 19:33:59 +09:00
|
|
|
render_anonymous_payload(status)
|
|
|
|
|
2016-11-05 23:20:05 +09:00
|
|
|
deliver_to_hashtags(status)
|
2017-02-01 06:34:33 +09:00
|
|
|
|
|
|
|
return if status.reply? && status.in_reply_to_account_id != status.account_id
|
|
|
|
|
2016-10-07 23:00:11 +09:00
|
|
|
deliver_to_public(status)
|
2018-05-21 23:01:16 +09:00
|
|
|
deliver_to_media(status) if status.media_attachments.any?
|
2016-03-22 01:02:16 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
2016-03-09 04:16:11 +09:00
|
|
|
|
2016-03-22 01:02:16 +09:00
|
|
|
def deliver_to_self(status)
|
2016-11-06 23:56:34 +09:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to author"
|
2017-11-18 08:16:48 +09:00
|
|
|
FeedManager.instance.push_to_home(status.account, status)
|
2016-03-22 01:02:16 +09:00
|
|
|
end
|
2016-03-09 04:16:11 +09:00
|
|
|
|
2016-03-25 22:12:24 +09:00
|
|
|
def deliver_to_followers(status)
|
2016-11-06 23:56:34 +09:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to followers"
|
|
|
|
|
2018-05-30 05:55:33 +09:00
|
|
|
status.account.followers_for_local_distribution.select(:id).reorder(nil).find_in_batches do |followers|
|
2017-06-04 07:11:15 +09:00
|
|
|
FeedInsertWorker.push_bulk(followers) do |follower|
|
2017-11-18 08:16:48 +09: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-30 05:55:33 +09:00
|
|
|
status.account.lists_for_local_distribution.select(:id).reorder(nil).find_in_batches do |lists|
|
2017-11-18 08:16:48 +09:00
|
|
|
FeedInsertWorker.push_bulk(lists) do |list|
|
|
|
|
[status.id, list.id, :list]
|
2017-06-04 07:11:15 +09:00
|
|
|
end
|
2016-03-09 04:16:11 +09:00
|
|
|
end
|
2016-03-22 01:02:16 +09:00
|
|
|
end
|
2016-03-09 04:16:11 +09:00
|
|
|
|
2018-10-18 00:13:04 +09:00
|
|
|
def deliver_to_mentioned_followers(status)
|
|
|
|
Rails.logger.debug "Delivering status #{status.id} to limited followers"
|
|
|
|
|
2020-09-01 01:11:27 +09:00
|
|
|
status.mentions.joins(:account).merge(status.account.followers_for_local_distribution).select(:id, :account_id).reorder(nil).find_in_batches do |mentions|
|
|
|
|
FeedInsertWorker.push_bulk(mentions) do |mention|
|
|
|
|
[status.id, mention.account_id, :home]
|
2020-08-30 19:33:59 +09:00
|
|
|
end
|
2018-10-18 00:13:04 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-05 21:26:17 +09:00
|
|
|
def render_anonymous_payload(status)
|
2017-07-07 11:02:06 +09:00
|
|
|
@payload = InlineRenderer.render(status, nil, :status)
|
2017-04-06 09:26:59 +09:00
|
|
|
@payload = Oj.dump(event: :update, payload: @payload)
|
2017-04-05 21:26:17 +09:00
|
|
|
end
|
|
|
|
|
2016-11-05 23:20:05 +09:00
|
|
|
def deliver_to_hashtags(status)
|
2016-11-26 23:45:35 +09:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to hashtags"
|
2017-02-07 07:46:14 +09:00
|
|
|
|
2017-04-05 02:21:37 +09:00
|
|
|
status.tags.pluck(:name).each do |hashtag|
|
2019-08-07 17:01:19 +09:00
|
|
|
Redis.current.publish("timeline:hashtag:#{hashtag.mb_chars.downcase}", @payload)
|
|
|
|
Redis.current.publish("timeline:hashtag:#{hashtag.mb_chars.downcase}:local", @payload) if status.local?
|
2016-11-05 23:20:05 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-07 23:00:11 +09:00
|
|
|
def deliver_to_public(status)
|
2016-11-06 23:56:34 +09:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to public timeline"
|
2017-02-07 07:46:14 +09:00
|
|
|
|
2017-04-06 11:03:23 +09:00
|
|
|
Redis.current.publish('timeline:public', @payload)
|
2020-05-12 22:24:35 +09:00
|
|
|
if status.local?
|
|
|
|
Redis.current.publish('timeline:public:local', @payload)
|
|
|
|
else
|
|
|
|
Redis.current.publish('timeline:public:remote', @payload)
|
|
|
|
end
|
2016-10-07 23:00:11 +09:00
|
|
|
end
|
2018-04-18 20:09:06 +09:00
|
|
|
|
2018-05-21 19:43:38 +09:00
|
|
|
def deliver_to_media(status)
|
|
|
|
Rails.logger.debug "Delivering status #{status.id} to media timeline"
|
|
|
|
|
|
|
|
Redis.current.publish('timeline:public:media', @payload)
|
2020-05-12 22:24:35 +09:00
|
|
|
if status.local?
|
|
|
|
Redis.current.publish('timeline:public:local:media', @payload)
|
|
|
|
else
|
|
|
|
Redis.current.publish('timeline:public:remote:media', @payload)
|
|
|
|
end
|
2018-05-21 19:43:38 +09:00
|
|
|
end
|
|
|
|
|
2018-10-08 06:44:58 +09:00
|
|
|
def deliver_to_own_conversation(status)
|
|
|
|
AccountConversation.add_status(status.account, status)
|
|
|
|
end
|
2016-03-09 04:16:11 +09:00
|
|
|
end
|