2016-09-09 19:04:34 +01:00
|
|
|
require 'singleton'
|
|
|
|
|
2016-03-25 01:13:30 +00:00
|
|
|
class FeedManager
|
2016-09-09 19:04:34 +01:00
|
|
|
include Singleton
|
|
|
|
|
2016-03-25 01:13:30 +00:00
|
|
|
MAX_ITEMS = 800
|
|
|
|
|
2016-09-09 19:04:34 +01:00
|
|
|
def key(type, id)
|
2016-03-25 01:13:30 +00:00
|
|
|
"feed:#{type}:#{id}"
|
|
|
|
end
|
|
|
|
|
2016-09-27 09:52:37 +01:00
|
|
|
# Filter status out of the home feed if it is a reply to someone the user doesn't follow
|
2016-09-09 19:04:34 +01:00
|
|
|
def filter_status?(status, follower)
|
2016-03-25 13:12:24 +00:00
|
|
|
replied_to_user = status.reply? ? status.thread.account : nil
|
2016-09-27 09:52:37 +01:00
|
|
|
(status.reply? && !(follower.id == replied_to_user.id || replied_to_user.id == status.account_id || follower.following?(replied_to_user)))
|
2016-03-25 01:13:30 +00:00
|
|
|
end
|
2016-09-10 17:36:48 +01:00
|
|
|
|
|
|
|
def push(timeline_type, account, status)
|
|
|
|
redis.zadd(key(timeline_type, account.id), status.id, status.id)
|
|
|
|
trim(timeline_type, account.id)
|
2016-09-12 17:22:43 +01:00
|
|
|
broadcast(account.id, type: 'update', timeline: timeline_type, message: inline_render(account, status))
|
|
|
|
end
|
|
|
|
|
|
|
|
def broadcast(account_id, options = {})
|
|
|
|
ActionCable.server.broadcast("timeline:#{account_id}", options)
|
2016-09-10 17:36:48 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def trim(type, account_id)
|
|
|
|
return unless redis.zcard(key(type, account_id)) > FeedManager::MAX_ITEMS
|
|
|
|
last = redis.zrevrange(key(type, account_id), FeedManager::MAX_ITEMS - 1, FeedManager::MAX_ITEMS - 1)
|
|
|
|
redis.zremrangebyscore(key(type, account_id), '-inf', "(#{last.last}")
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def redis
|
|
|
|
$redis
|
|
|
|
end
|
|
|
|
|
|
|
|
def inline_render(target_account, status)
|
|
|
|
rabl_scope = Class.new do
|
|
|
|
include RoutingHelper
|
|
|
|
|
|
|
|
def initialize(account)
|
|
|
|
@account = account
|
|
|
|
end
|
|
|
|
|
|
|
|
def current_user
|
|
|
|
@account.user
|
|
|
|
end
|
|
|
|
|
|
|
|
def current_account
|
|
|
|
@account
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-27 15:58:23 +01:00
|
|
|
Rabl::Renderer.new('api/v1/statuses/show', status, view_path: 'app/views', format: :json, scope: rabl_scope.new(target_account)).render
|
2016-09-10 17:36:48 +01:00
|
|
|
end
|
2016-03-25 01:13:30 +00:00
|
|
|
end
|