2021-11-25 12:07:38 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Trends::Base
|
|
|
|
include Redisable
|
2022-02-24 23:34:14 +00:00
|
|
|
include LanguagesHelper
|
2021-11-25 12:07:38 +00:00
|
|
|
|
|
|
|
class_attribute :default_options
|
|
|
|
|
|
|
|
attr_reader :options
|
|
|
|
|
|
|
|
# @param [Hash] options
|
|
|
|
# @option options [Integer] :threshold Minimum amount of uses by unique accounts to begin calculating the score
|
|
|
|
# @option options [Integer] :review_threshold Minimum rank (lower = better) before requesting a review
|
|
|
|
# @option options [ActiveSupport::Duration] :max_score_cooldown For this amount of time, the peak score (if bigger than current score) is decayed-from
|
|
|
|
# @option options [ActiveSupport::Duration] :max_score_halflife How quickly a peak score decays
|
|
|
|
def initialize(options = {})
|
|
|
|
@options = self.class.default_options.merge(options)
|
|
|
|
end
|
|
|
|
|
|
|
|
def register(_status)
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
|
|
|
def add(*)
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
|
|
|
def refresh(*)
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
|
|
|
def request_review
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
2022-02-24 23:34:14 +00:00
|
|
|
def query
|
|
|
|
Trends::Query.new(key_prefix, klass)
|
2021-11-25 12:07:38 +00:00
|
|
|
end
|
|
|
|
|
2022-04-08 15:10:53 +00:00
|
|
|
def score(id, locale: nil)
|
|
|
|
redis.zscore([key_prefix, 'all', locale].compact.join(':'), id) || 0
|
2021-11-25 12:07:38 +00:00
|
|
|
end
|
|
|
|
|
2022-04-08 15:10:53 +00:00
|
|
|
def rank(id, locale: nil)
|
|
|
|
redis.zrevrank([key_prefix, 'allowed', locale].compact.join(':'), id)
|
2021-11-25 12:07:38 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def currently_trending_ids(allowed, limit)
|
|
|
|
redis.zrevrange(allowed ? "#{key_prefix}:allowed" : "#{key_prefix}:all", 0, limit.positive? ? limit - 1 : limit).map(&:to_i)
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def key_prefix
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
|
|
|
def recently_used_ids(at_time = Time.now.utc)
|
|
|
|
redis.smembers(used_key(at_time)).map(&:to_i)
|
|
|
|
end
|
|
|
|
|
|
|
|
def record_used_id(id, at_time = Time.now.utc)
|
|
|
|
redis.sadd(used_key(at_time), id)
|
|
|
|
redis.expire(used_key(at_time), 1.day.seconds)
|
|
|
|
end
|
|
|
|
|
|
|
|
def trim_older_items
|
2022-04-08 17:35:31 +00:00
|
|
|
redis.zremrangebyscore("#{key_prefix}:all", '-inf', '(0.3')
|
|
|
|
redis.zremrangebyscore("#{key_prefix}:allowed", '-inf', '(0.3')
|
2021-11-25 12:07:38 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def score_at_rank(rank)
|
|
|
|
redis.zrevrange("#{key_prefix}:allowed", 0, rank, with_scores: true).last&.last || 0
|
|
|
|
end
|
|
|
|
|
2022-02-24 23:34:14 +00:00
|
|
|
# @param [Integer] id
|
|
|
|
# @param [Float] score
|
|
|
|
# @param [Hash<String, Boolean>] subsets
|
|
|
|
def add_to_and_remove_from_subsets(id, score, subsets = {})
|
|
|
|
subsets.each_key do |subset|
|
|
|
|
key = [key_prefix, subset].compact.join(':')
|
|
|
|
|
|
|
|
if score.positive? && subsets[subset]
|
|
|
|
redis.zadd(key, score, id)
|
|
|
|
else
|
|
|
|
redis.zrem(key, id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-11-25 12:07:38 +00:00
|
|
|
private
|
|
|
|
|
|
|
|
def used_key(at_time)
|
|
|
|
"#{key_prefix}:used:#{at_time.beginning_of_day.to_i}"
|
|
|
|
end
|
|
|
|
end
|