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)
|
2016-03-21 16:02:16 +00:00
|
|
|
deliver_to_self(status) if status.account.local?
|
2016-03-25 13:12:24 +00:00
|
|
|
deliver_to_followers(status)
|
2016-03-21 16:02:16 +00:00
|
|
|
deliver_to_mentioned(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
2016-03-08 19:16:11 +00:00
|
|
|
|
2016-03-21 16:02:16 +00:00
|
|
|
def deliver_to_self(status)
|
2016-09-10 17:36:48 +01:00
|
|
|
FeedManager.instance.push(: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-03-08 19:16:11 +00:00
|
|
|
status.account.followers.each do |follower|
|
2016-09-09 19:04:34 +01:00
|
|
|
next if !follower.local? || FeedManager.instance.filter_status?(status, follower)
|
2016-09-10 17:36:48 +01:00
|
|
|
FeedManager.instance.push(:home, follower, status)
|
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
|
|
|
|
2016-03-21 16:02:16 +00:00
|
|
|
def deliver_to_mentioned(status)
|
2016-03-25 01:13:30 +00:00
|
|
|
status.mentions.each do |mention|
|
2016-03-19 18:20:07 +00:00
|
|
|
mentioned_account = mention.account
|
2016-03-08 19:16:11 +00:00
|
|
|
next unless mentioned_account.local?
|
2016-09-10 17:36:48 +01:00
|
|
|
FeedManager.instance.push(:mentions, mentioned_account, status)
|
2016-03-08 19:16:11 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|