diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-06-25 22:56:32 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-06-27 16:44:12 +0200 |
commit | ca17bae904783dfb1f4899a533d28a79da0c6fe9 (patch) | |
tree | c38565923e7b92c2125452daf35fecf76588f81d /app/models | |
parent | 2f95adc06fbfae22e8f9b4df212938108f5e295c (diff) |
Use a redis-cached feed for the DM timeline
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/direct_feed.rb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app/models/direct_feed.rb b/app/models/direct_feed.rb new file mode 100644 index 000000000..c0b8a0a35 --- /dev/null +++ b/app/models/direct_feed.rb @@ -0,0 +1,31 @@ +# frozen_string_literal: true + +class DirectFeed < Feed + include Redisable + + def initialize(account) + @type = :direct + @id = account.id + @account = account + end + + def get(limit, max_id = nil, since_id = nil, min_id = nil) + unless redis.exists("account:#{@account.id}:regeneration") + statuses = super + return statuses unless statuses.empty? + end + from_database(limit, max_id, since_id, min_id) + end + + private + + def from_database(limit, max_id, since_id, min_id) + loop do + statuses = Status.as_direct_timeline(@account, limit, max_id, since_id, min_id) + return statuses if statuses.empty? + max_id = statuses.last.id + statuses = statuses.reject { |status| FeedManager.instance.filter?(:direct, status, @account.id) } + return statuses unless statuses.empty? + end + end +end |