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-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-03-25 01:13:30 +00:00
|
|
|
(status.reply? && !(follower.id = replied_to_user.id || follower.following?(replied_to_user)))
|
|
|
|
end
|
|
|
|
end
|