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