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