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-08-18 15:49:51 +02:00
|
|
|
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-03-25 02:13:30 +01:00
|
|
|
next if !follower.local? || FeedManager.filter_status?(status, follower)
|
2016-08-18 15:49:51 +02:00
|
|
|
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-03-08 20:16:11 +01:00
|
|
|
next unless mentioned_account.local?
|
2016-08-18 15:49:51 +02:00
|
|
|
push(:mentions, mentioned_account, status)
|
2016-03-08 20:16:11 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-18 15:49:51 +02:00
|
|
|
def push(type, receiver, status)
|
|
|
|
redis.zadd(FeedManager.key(type, receiver.id), status.id, status.id)
|
|
|
|
trim(type, receiver)
|
2016-09-05 01:59:46 +02:00
|
|
|
ActionCable.server.broadcast("timeline:#{receiver.id}", type: 'update', timeline: type, message: inline_render(receiver, status))
|
2016-03-08 20:16:11 +01:00
|
|
|
end
|
|
|
|
|
2016-08-18 15:49:51 +02:00
|
|
|
def trim(type, receiver)
|
|
|
|
return unless redis.zcard(FeedManager.key(type, receiver.id)) > FeedManager::MAX_ITEMS
|
2016-03-08 20:16:11 +01:00
|
|
|
|
2016-08-18 15:49:51 +02:00
|
|
|
last = redis.zrevrange(FeedManager.key(type, receiver.id), FeedManager::MAX_ITEMS - 1, FeedManager::MAX_ITEMS - 1)
|
|
|
|
redis.zremrangebyscore(FeedManager.key(type, receiver.id), '-inf', "(#{last.last}")
|
2016-03-08 20:16:11 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def redis
|
|
|
|
$redis
|
|
|
|
end
|
2016-08-18 15:49:51 +02:00
|
|
|
|
|
|
|
def inline_render(receiver, status)
|
|
|
|
rabl_scope = Class.new(BaseService) do
|
|
|
|
def initialize(account)
|
|
|
|
@account = account
|
|
|
|
end
|
|
|
|
|
|
|
|
def current_user
|
|
|
|
@account.user
|
|
|
|
end
|
2016-08-18 17:13:41 +02:00
|
|
|
|
|
|
|
def current_account
|
|
|
|
@account
|
|
|
|
end
|
2016-08-18 15:49:51 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
Rabl::Renderer.new('api/statuses/show', status, view_path: 'app/views', format: :json, scope: rabl_scope.new(receiver)).render
|
|
|
|
end
|
2016-03-08 20:16:11 +01:00
|
|
|
end
|