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?
|
|
|
|
|
2020-09-01 11:30:42 +00:00
|
|
|
deliver_to_self(status) if status.account.local?
|
|
|
|
|
2017-04-02 13:46:31 +00:00
|
|
|
if status.direct_visibility?
|
2020-11-18 23:23:46 +00:00
|
|
|
deliver_to_mentioned_followers(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
|
|
|
|
2020-08-31 23:18:12 +00:00
|
|
|
if status.account.group?
|
|
|
|
if status.reblog?
|
|
|
|
render_anonymous_reblog_payload(status)
|
|
|
|
else
|
|
|
|
render_anonymous_payload(status)
|
|
|
|
end
|
2020-07-12 13:00:23 +00:00
|
|
|
|
|
|
|
deliver_to_group(status)
|
|
|
|
end
|
|
|
|
|
2019-08-30 08:02:41 +00:00
|
|
|
return if status.account.silenced? || !status.public_visibility?
|
|
|
|
|
2020-08-31 23:18:12 +00:00
|
|
|
render_anonymous_payload(status)
|
|
|
|
|
2019-10-29 12:39:21 +00:00
|
|
|
if !status.reblog? && (!status.reply? || status.in_reply_to_account_id == status.account_id)
|
|
|
|
deliver_to_public(status)
|
2022-08-23 05:14:23 +00:00
|
|
|
deliver_to_index(status)
|
2022-07-03 05:54:03 +00:00
|
|
|
if status.media_attachments.any?
|
|
|
|
deliver_to_media(status)
|
|
|
|
else
|
|
|
|
deliver_to_nomedia(status)
|
|
|
|
end
|
2019-10-29 12:39:21 +00:00
|
|
|
end
|
|
|
|
|
2019-08-30 08:02:41 +00:00
|
|
|
deliver_to_domain_subscribers(status)
|
2020-01-05 06:36:28 +00:00
|
|
|
deliver_to_subscribers(status)
|
|
|
|
deliver_to_subscribers_lists(status)
|
2019-08-30 08:02:41 +00:00
|
|
|
|
|
|
|
return if status.reblog?
|
2016-11-05 14:20:05 +00:00
|
|
|
|
|
|
|
deliver_to_hashtags(status)
|
2019-08-30 08:02:41 +00:00
|
|
|
deliver_to_hashtag_followers(status)
|
|
|
|
deliver_to_keyword_subscribers(status)
|
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
|
|
|
|
|
2019-08-30 08:02:41 +00:00
|
|
|
def deliver_to_subscribers(status)
|
|
|
|
Rails.logger.debug "Delivering status #{status.id} to subscribers"
|
|
|
|
|
2020-11-15 06:57:58 +00:00
|
|
|
status.account.subscribers_for_local_distribution.with_reblog(status.reblog?).with_media(status.proper).select(:id, :account_id).reorder(nil).find_in_batches do |subscribings|
|
2019-08-30 08:02:41 +00:00
|
|
|
FeedInsertWorker.push_bulk(subscribings) do |subscribing|
|
2020-01-05 06:36:28 +00:00
|
|
|
[status.id, subscribing.account_id, :home]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def deliver_to_subscribers_lists(status)
|
|
|
|
Rails.logger.debug "Delivering status #{status.id} to subscribers lists"
|
|
|
|
|
2020-11-15 06:57:58 +00:00
|
|
|
status.account.list_subscribers_for_local_distribution.with_reblog(status.reblog?).with_media(status.proper).select(:id, :list_id).reorder(nil).find_in_batches do |subscribings|
|
2020-01-05 06:36:28 +00:00
|
|
|
FeedInsertWorker.push_bulk(subscribings) do |subscribing|
|
|
|
|
[status.id, subscribing.list_id, :list]
|
2019-08-30 08:02:41 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def deliver_to_domain_subscribers(status)
|
|
|
|
Rails.logger.debug "Delivering status #{status.id} to domain subscribers"
|
|
|
|
|
|
|
|
deliver_to_domain_subscribers_home(status)
|
|
|
|
deliver_to_domain_subscribers_list(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
def deliver_to_domain_subscribers_home(status)
|
2020-11-15 06:57:58 +00:00
|
|
|
DomainSubscribe.domain_to_home(status.account.domain).with_reblog(status.reblog?).with_media(status.proper).select(:id, :account_id).find_in_batches do |subscribes|
|
2019-08-30 08:02:41 +00:00
|
|
|
FeedInsertWorker.push_bulk(subscribes) do |subscribe|
|
|
|
|
[status.id, subscribe.account_id, :home]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def deliver_to_domain_subscribers_list(status)
|
2020-11-15 06:57:58 +00:00
|
|
|
DomainSubscribe.domain_to_list(status.account.domain).with_reblog(status.reblog?).with_media(status.proper).select(:id, :list_id).find_in_batches do |subscribes|
|
2019-08-30 08:02:41 +00:00
|
|
|
FeedInsertWorker.push_bulk(subscribes) do |subscribe|
|
|
|
|
[status.id, subscribe.list_id, :list]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def deliver_to_keyword_subscribers(status)
|
|
|
|
Rails.logger.debug "Delivering status #{status.id} to keyword subscribers"
|
|
|
|
|
|
|
|
deliver_to_keyword_subscribers_home(status)
|
|
|
|
deliver_to_keyword_subscribers_list(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
def deliver_to_keyword_subscribers_home(status)
|
|
|
|
match_accounts = []
|
|
|
|
|
2020-11-15 06:57:58 +00:00
|
|
|
KeywordSubscribe.active.with_media(status.proper).without_local_followed_home(status.account).order(:account_id).each do |keyword_subscribe|
|
2019-08-30 08:02:41 +00:00
|
|
|
next if match_accounts[-1] == keyword_subscribe.account_id
|
|
|
|
match_accounts << keyword_subscribe.account_id if keyword_subscribe.match?(status.index_text)
|
|
|
|
end
|
|
|
|
|
|
|
|
FeedInsertWorker.push_bulk(match_accounts) do |match_account|
|
|
|
|
[status.id, match_account, :home]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def deliver_to_keyword_subscribers_list(status)
|
|
|
|
match_lists = []
|
|
|
|
|
2020-11-15 06:57:58 +00:00
|
|
|
KeywordSubscribe.active.with_media(status.proper).without_local_followed_list(status.account).order(:list_id).each do |keyword_subscribe|
|
2019-08-30 08:02:41 +00:00
|
|
|
next if match_lists[-1] == keyword_subscribe.list_id
|
|
|
|
match_lists << keyword_subscribe.list_id if keyword_subscribe.match?(status.index_text)
|
|
|
|
end
|
|
|
|
|
|
|
|
FeedInsertWorker.push_bulk(match_lists) do |match_list|
|
|
|
|
[status.id, match_list, :list]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-17 23:16:48 +00:00
|
|
|
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"
|
|
|
|
|
2020-08-31 16:11:27 +00: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 10:33:59 +00:00
|
|
|
end
|
2018-10-17 15:13:04 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-05 12:26:17 +00:00
|
|
|
def render_anonymous_payload(status)
|
2020-08-31 23:18:12 +00:00
|
|
|
return @payload if defined?(@payload)
|
|
|
|
|
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
|
|
|
|
|
2020-07-12 13:00:23 +00:00
|
|
|
def render_anonymous_reblog_payload(status)
|
2020-08-31 23:18:12 +00:00
|
|
|
return @reblog_payload if defined?(@reblog_payload)
|
|
|
|
|
2020-07-12 13:00:23 +00:00
|
|
|
@reblog_payload = InlineRenderer.render(status.reblog, nil, :status)
|
|
|
|
@reblog_payload = Oj.dump(event: :update, payload: @reblog_payload)
|
|
|
|
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|
|
2019-08-07 08:01:19 +00:00
|
|
|
Redis.current.publish("timeline:hashtag:#{hashtag.mb_chars.downcase}", @payload)
|
2022-07-03 05:54:03 +00:00
|
|
|
Redis.current.publish("timeline:hashtag:nobot:#{hashtag.mb_chars.downcase}", @payload) unless status.account.bot?
|
2016-11-05 14:20:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-30 08:02:41 +00:00
|
|
|
def deliver_to_hashtag_followers(status)
|
|
|
|
Rails.logger.debug "Delivering status #{status.id} to hashtag followers"
|
|
|
|
|
2020-01-05 06:36:28 +00:00
|
|
|
deliver_to_hashtag_followers_home(status)
|
|
|
|
deliver_to_hashtag_followers_list(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
def deliver_to_hashtag_followers_home(status)
|
2020-11-15 06:57:58 +00:00
|
|
|
FeedInsertWorker.push_bulk(FollowTag.home.where(tag: status.tags).with_media(status.proper).pluck(:account_id).uniq) do |follower|
|
2019-08-30 08:02:41 +00:00
|
|
|
[status.id, follower, :home]
|
|
|
|
end
|
|
|
|
end
|
2020-01-05 06:36:28 +00:00
|
|
|
|
|
|
|
def deliver_to_hashtag_followers_list(status)
|
2020-11-15 06:57:58 +00:00
|
|
|
FeedInsertWorker.push_bulk(FollowTag.list.where(tag: status.tags).with_media(status.proper).pluck(:list_id).uniq) do |list_id|
|
2020-01-05 06:36:28 +00:00
|
|
|
[status.id, list_id, :list]
|
|
|
|
end
|
|
|
|
end
|
2019-08-30 08:02:41 +00:00
|
|
|
|
2020-07-12 13:00:23 +00:00
|
|
|
def deliver_to_group(status)
|
2020-08-31 23:18:12 +00:00
|
|
|
Rails.logger.debug "Delivering status #{status.id} to group timeline"
|
|
|
|
|
|
|
|
payload = status.reblog? ? @reblog_payload : @payload
|
2020-07-12 13:00:23 +00:00
|
|
|
|
2020-08-31 23:18:12 +00:00
|
|
|
Redis.current.publish("timeline:group:#{status.account.id}", payload)
|
2020-07-12 13:00:23 +00:00
|
|
|
|
|
|
|
status.tags.pluck(:name).each do |hashtag|
|
2020-08-31 23:18:12 +00:00
|
|
|
Redis.current.publish("timeline:group:#{status.account.id}:#{hashtag.mb_chars.downcase}", payload)
|
2020-07-12 13:00:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if status.media_attachments.any?
|
2020-08-31 23:18:12 +00:00
|
|
|
Redis.current.publish("timeline:group:media:#{status.account.id}", payload)
|
2020-07-12 13:00:23 +00:00
|
|
|
|
|
|
|
status.tags.pluck(:name).each do |hashtag|
|
2020-08-31 23:18:12 +00:00
|
|
|
Redis.current.publish("timeline:group:media:#{status.account.id}:#{hashtag.mb_chars.downcase}", payload)
|
2020-07-12 13:00:23 +00:00
|
|
|
end
|
2022-07-03 05:54:03 +00:00
|
|
|
else
|
|
|
|
Redis.current.publish("timeline:group:nomedia:#{status.account.id}", payload)
|
|
|
|
|
|
|
|
status.tags.pluck(:name).each do |hashtag|
|
|
|
|
Redis.current.publish("timeline:group:nomedia:#{status.account.id}:#{hashtag.mb_chars.downcase}", payload)
|
|
|
|
end
|
2020-07-12 13:00:23 +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)
|
2022-07-03 05:54:03 +00:00
|
|
|
Redis.current.publish('timeline:public:nobot', @payload) unless status.account.bot?
|
2020-05-12 13:24:35 +00:00
|
|
|
if status.local?
|
|
|
|
else
|
|
|
|
Redis.current.publish('timeline:public:remote', @payload)
|
2022-07-03 05:54:03 +00:00
|
|
|
Redis.current.publish('timeline:public:remote:nobot', @payload) unless status.account.bot?
|
2019-11-13 22:42:56 +00:00
|
|
|
Redis.current.publish("timeline:public:domain:#{status.account.domain.mb_chars.downcase}", @payload)
|
2022-07-03 05:54:03 +00:00
|
|
|
Redis.current.publish("timeline:public:domain:nobot:#{status.account.domain.mb_chars.downcase}", @payload) unless status.account.bot?
|
2020-05-12 13:24:35 +00:00
|
|
|
end
|
2016-10-07 14:00:11 +00:00
|
|
|
end
|
2018-04-18 11:09:06 +00:00
|
|
|
|
2022-08-23 05:14:23 +00:00
|
|
|
def deliver_to_index(status)
|
|
|
|
Redis.current.publish('timeline:index', @payload) if status.local? && status.public_searchability?
|
|
|
|
end
|
|
|
|
|
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)
|
2022-07-03 05:54:03 +00:00
|
|
|
Redis.current.publish('timeline:public:nobot:media', @payload) unless status.account.bot?
|
2020-05-12 13:24:35 +00:00
|
|
|
if status.local?
|
|
|
|
else
|
|
|
|
Redis.current.publish('timeline:public:remote:media', @payload)
|
2022-07-03 05:54:03 +00:00
|
|
|
Redis.current.publish('timeline:public:remote:nobot:media', @payload) unless status.account.bot?
|
2019-11-13 22:42:56 +00:00
|
|
|
Redis.current.publish("timeline:public:domain:media:#{status.account.domain.mb_chars.downcase}", @payload)
|
2022-07-03 05:54:03 +00:00
|
|
|
Redis.current.publish("timeline:public:domain:nobot:media:#{status.account.domain.mb_chars.downcase}", @payload) unless status.account.bot?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def deliver_to_nomedia(status)
|
|
|
|
Rails.logger.debug "Delivering status #{status.id} to no media timeline"
|
|
|
|
|
|
|
|
Redis.current.publish('timeline:public:nomedia', @payload)
|
|
|
|
Redis.current.publish('timeline:public:nobot:nomedia', @payload) unless status.account.bot?
|
|
|
|
if status.local?
|
|
|
|
else
|
|
|
|
Redis.current.publish('timeline:public:remote:nomedia', @payload)
|
|
|
|
Redis.current.publish('timeline:public:remote:nobot:nomedia', @payload) unless status.account.bot?
|
|
|
|
Redis.current.publish("timeline:public:domain:nomedia:#{status.account.domain.mb_chars.downcase}", @payload)
|
|
|
|
Redis.current.publish("timeline:public:domain:nobot:nomedia:#{status.account.domain.mb_chars.downcase}", @payload) unless status.account.bot?
|
2020-05-12 13:24:35 +00:00
|
|
|
end
|
2018-05-21 10:43:38 +00:00
|
|
|
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
|