2016-03-08 20:16:11 +01:00
|
|
|
class FanOutOnWriteService < BaseService
|
|
|
|
# Push a status into home and mentions feeds
|
|
|
|
# @param [Status] status
|
|
|
|
def call(status)
|
2016-03-21 17:02:16 +01:00
|
|
|
deliver_to_self(status) if status.account.local?
|
2016-03-25 14:12:24 +01:00
|
|
|
deliver_to_followers(status)
|
2016-03-21 17:02:16 +01:00
|
|
|
deliver_to_mentioned(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
2016-03-08 20:16:11 +01:00
|
|
|
|
2016-03-21 17:02:16 +01:00
|
|
|
def deliver_to_self(status)
|
2016-09-10 18:36:48 +02:00
|
|
|
FeedManager.instance.push(:home, status.account, status)
|
2016-03-21 17:02:16 +01:00
|
|
|
end
|
2016-03-08 20:16:11 +01:00
|
|
|
|
2016-03-25 14:12:24 +01:00
|
|
|
def deliver_to_followers(status)
|
2016-03-08 20:16:11 +01:00
|
|
|
status.account.followers.each do |follower|
|
2016-10-02 15:28:47 +02:00
|
|
|
next if !follower.local? || FeedManager.instance.filter?(:home, status, follower)
|
2016-09-10 18:36:48 +02:00
|
|
|
FeedManager.instance.push(:home, follower, status)
|
2016-03-08 20:16:11 +01:00
|
|
|
end
|
2016-03-21 17:02:16 +01:00
|
|
|
end
|
2016-03-08 20:16:11 +01:00
|
|
|
|
2016-03-21 17:02:16 +01:00
|
|
|
def deliver_to_mentioned(status)
|
2016-03-25 02:13:30 +01:00
|
|
|
status.mentions.each do |mention|
|
2016-03-19 19:20:07 +01:00
|
|
|
mentioned_account = mention.account
|
2016-10-02 15:28:47 +02:00
|
|
|
next if !mentioned_account.local? || mentioned_account.id == status.account_id || FeedManager.instance.filter?(:mentions, status, mentioned_account)
|
2016-09-10 18:36:48 +02:00
|
|
|
FeedManager.instance.push(:mentions, mentioned_account, status)
|
2016-03-08 20:16:11 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|