56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| class Admin::Metrics::Measure::InstanceFollowersMeasure < Admin::Metrics::Measure::BaseMeasure
 | |
|   include Admin::Metrics::Measure::QueryHelper
 | |
| 
 | |
|   def self.with_params?
 | |
|     true
 | |
|   end
 | |
| 
 | |
|   def key
 | |
|     'instance_followers'
 | |
|   end
 | |
| 
 | |
|   def total_in_time_range?
 | |
|     false
 | |
|   end
 | |
| 
 | |
|   protected
 | |
| 
 | |
|   def perform_total_query
 | |
|     domain = params[:domain]
 | |
|     domain = Instance.by_domain_and_subdomains(params[:domain]).select(:domain) if params[:include_subdomains]
 | |
|     Follow.joins(:account).merge(Account.where(domain: domain)).count
 | |
|   end
 | |
| 
 | |
|   def perform_previous_total_query
 | |
|     nil
 | |
|   end
 | |
| 
 | |
|   def sql_array
 | |
|     [sql_query_string, { start_at: @start_at, end_at: @end_at, domain: params[:domain] }]
 | |
|   end
 | |
| 
 | |
|   def sql_query_string
 | |
|     <<~SQL.squish
 | |
|       SELECT axis.*, (
 | |
|         WITH new_followers AS (
 | |
|           SELECT follows.id
 | |
|           FROM follows
 | |
|           INNER JOIN accounts ON follows.account_id = accounts.id
 | |
|           WHERE date_trunc('day', follows.created_at)::date = axis.period
 | |
|             AND #{account_domain_sql(params[:include_subdomains])}
 | |
|         )
 | |
|         SELECT count(*) FROM new_followers
 | |
|       ) AS value
 | |
|       FROM (
 | |
|         #{generated_series_days}
 | |
|       ) AS axis
 | |
|     SQL
 | |
|   end
 | |
| 
 | |
|   def params
 | |
|     @params.permit(:domain, :include_subdomains)
 | |
|   end
 | |
| end
 |