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