* Add trending links * Add overriding specific links trendability * Add link type to preview cards and only trend articles Change trends review notifications from being sent every 5 minutes to being sent every 2 hours Change threshold from 5 unique accounts to 15 unique accounts * Fix tests
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			812 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			812 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class Admin::Metrics::Measure::InteractionsMeasure < Admin::Metrics::Measure::BaseMeasure
 | 
						|
  def key
 | 
						|
    'interactions'
 | 
						|
  end
 | 
						|
 | 
						|
  def total
 | 
						|
    activity_tracker.sum(time_period.first, time_period.last)
 | 
						|
  end
 | 
						|
 | 
						|
  def previous_total
 | 
						|
    activity_tracker.sum(previous_time_period.first, previous_time_period.last)
 | 
						|
  end
 | 
						|
 | 
						|
  def data
 | 
						|
    activity_tracker.get(time_period.first, time_period.last).map { |date, value| { date: date.to_time(:utc).iso8601, value: value.to_s } }
 | 
						|
  end
 | 
						|
 | 
						|
  protected
 | 
						|
 | 
						|
  def activity_tracker
 | 
						|
    @activity_tracker ||= ActivityTracker.new('activity:interactions', :basic)
 | 
						|
  end
 | 
						|
 | 
						|
  def time_period
 | 
						|
    (@start_at.to_date..@end_at.to_date)
 | 
						|
  end
 | 
						|
 | 
						|
  def previous_time_period
 | 
						|
    ((@start_at.to_date - length_of_period)..(@end_at.to_date - length_of_period))
 | 
						|
  end
 | 
						|
end
 |