Fix trends admin page crashing

master
Claire 2021-11-26 00:26:06 +01:00
parent 0ccaedc92b
commit 5f10e64330
4 changed files with 37 additions and 35 deletions

View File

@ -3,19 +3,6 @@
class Trends::Base class Trends::Base
include Redisable include Redisable
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) def register(_status)
raise NotImplementedError raise NotImplementedError
end end

View File

@ -3,12 +3,17 @@
class Trends::Links < Trends::Base class Trends::Links < Trends::Base
PREFIX = 'trending_links' PREFIX = 'trending_links'
self.default_options = { # Minimum amount of uses by unique accounts to begin calculating the score
threshold: 15, THRESHOLD = 15
review_threshold: 10,
max_score_cooldown: 2.days.freeze, # Minimum rank (lower = better) before requesting a review
max_score_halflife: 8.hours.freeze, REVIEW_THRESHOLD = 10
}
# For this amount of time, the peak score (if bigger than current score) is decayed-from
MAX_SCORE_COOLDOWN = 2.days.freeze
# How quickly a peak score decays
MAX_SCORE_HALFLIFE = 8.hours.freeze
def register(status, at_time = Time.now.utc) def register(status, at_time = Time.now.utc)
original_status = status.reblog? ? status.reblog : status original_status = status.reblog? ? status.reblog : status
@ -76,10 +81,10 @@ class Trends::Links < Trends::Base
observed = preview_card.history.get(at_time).accounts.to_f observed = preview_card.history.get(at_time).accounts.to_f
max_time = preview_card.max_score_at max_time = preview_card.max_score_at
max_score = preview_card.max_score max_score = preview_card.max_score
max_score = 0 if max_time.nil? || max_time < (at_time - options[:max_score_cooldown]) max_score = 0 if max_time.nil? || max_time < (at_time - MAX_SCORE_COOLDOWN)
score = begin score = begin
if expected > observed || observed < options[:threshold] if expected > observed || observed < THRESHOLD
0 0
else else
((observed - expected)**2) / expected ((observed - expected)**2) / expected
@ -94,7 +99,7 @@ class Trends::Links < Trends::Base
preview_card.update_columns(max_score: max_score, max_score_at: max_time) preview_card.update_columns(max_score: max_score, max_score_at: max_time)
end end
decaying_score = max_score * (0.5**((at_time.to_f - max_time.to_f) / options[:max_score_halflife].to_f)) decaying_score = max_score * (0.5**((at_time.to_f - max_time.to_f) / MAX_SCORE_HALFLIFE.to_f))
if decaying_score.zero? if decaying_score.zero?
redis.zrem("#{PREFIX}:all", preview_card.id) redis.zrem("#{PREFIX}:all", preview_card.id)
@ -112,6 +117,6 @@ class Trends::Links < Trends::Base
end end
def would_be_trending?(id) def would_be_trending?(id)
score(id) > score_at_rank(options[:review_threshold] - 1) score(id) > score_at_rank(REVIEW_THRESHOLD - 1)
end end
end end

View File

@ -3,12 +3,17 @@
class Trends::Tags < Trends::Base class Trends::Tags < Trends::Base
PREFIX = 'trending_tags' PREFIX = 'trending_tags'
self.default_options = { # Minimum amount of uses by unique accounts to begin calculating the score
threshold: 15, THRESHOLD = 15
review_threshold: 10,
max_score_cooldown: 2.days.freeze, # Minimum rank (lower = better) before requesting a review
max_score_halflife: 4.hours.freeze, REVIEW_THRESHOLD = 10
}
# For this amount of time, the peak score (if bigger than current score) is decayed-from
MAX_SCORE_COOLDOWN = 2.days.freeze
# How quickly a peak score decays
MAX_SCORE_HALFLIFE = 4.hours.freeze
def register(status, at_time = Time.now.utc) def register(status, at_time = Time.now.utc)
original_status = status.reblog? ? status.reblog : status original_status = status.reblog? ? status.reblog : status
@ -70,10 +75,10 @@ class Trends::Tags < Trends::Base
observed = tag.history.get(at_time).accounts.to_f observed = tag.history.get(at_time).accounts.to_f
max_time = tag.max_score_at max_time = tag.max_score_at
max_score = tag.max_score max_score = tag.max_score
max_score = 0 if max_time.nil? || max_time < (at_time - options[:max_score_cooldown]) max_score = 0 if max_time.nil? || max_time < (at_time - MAX_SCORE_COOLDOWN)
score = begin score = begin
if expected > observed || observed < options[:threshold] if expected > observed || observed < THRESHOLD
0 0
else else
((observed - expected)**2) / expected ((observed - expected)**2) / expected
@ -88,7 +93,7 @@ class Trends::Tags < Trends::Base
tag.update_columns(max_score: max_score, max_score_at: max_time) tag.update_columns(max_score: max_score, max_score_at: max_time)
end end
decaying_score = max_score * (0.5**((at_time.to_f - max_time.to_f) / options[:max_score_halflife].to_f)) decaying_score = max_score * (0.5**((at_time.to_f - max_time.to_f) / MAX_SCORE_HALFLIFE.to_f))
if decaying_score.zero? if decaying_score.zero?
redis.zrem("#{PREFIX}:all", tag.id) redis.zrem("#{PREFIX}:all", tag.id)
@ -106,6 +111,6 @@ class Trends::Tags < Trends::Base
end end
def would_be_trending?(id) def would_be_trending?(id)
score(id) > score_at_rank(options[:review_threshold] - 1) score(id) > score_at_rank(REVIEW_THRESHOLD - 1)
end end
end end

View File

@ -1,10 +1,15 @@
require 'rails_helper' require 'rails_helper'
RSpec.describe Trends::Tags do RSpec.describe Trends::Tags do
subject { described_class.new(threshold: 5, review_threshold: 10) } subject { described_class.new }
let!(:at_time) { DateTime.new(2021, 11, 14, 10, 15, 0) } let!(:at_time) { DateTime.new(2021, 11, 14, 10, 15, 0) }
before do
stub_const 'Trends::Tags::THRESHOLD', 5
stub_const 'Trends::Tags::REVIEW_THRESHOLD', 10
end
describe '#add' do describe '#add' do
let(:tag) { Fabricate(:tag) } let(:tag) { Fabricate(:tag) }
@ -59,7 +64,7 @@ RSpec.describe Trends::Tags do
subject.refresh(yesterday + 12.hours) subject.refresh(yesterday + 12.hours)
original_score = subject.score(tag3.id) original_score = subject.score(tag3.id)
expect(original_score).to eq 144.0 expect(original_score).to eq 144.0
subject.refresh(yesterday + 12.hours + subject.options[:max_score_halflife]) subject.refresh(yesterday + 12.hours + described_class::MAX_SCORE_HALFLIFE)
decayed_score = subject.score(tag3.id) decayed_score = subject.score(tag3.id)
expect(decayed_score).to be <= original_score / 2 expect(decayed_score).to be <= original_score / 2
end end