2022-03-09 18:52:32 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Admin::Metrics::Measure::InstanceAccountsMeasure < Admin::Metrics::Measure::BaseMeasure
|
2023-06-06 04:46:04 +10:00
|
|
|
include Admin::Metrics::Measure::QueryHelper
|
|
|
|
|
2022-03-09 18:52:32 +11:00
|
|
|
def self.with_params?
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def key
|
|
|
|
'instance_accounts'
|
|
|
|
end
|
|
|
|
|
|
|
|
def total_in_time_range?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def perform_total_query
|
2023-06-01 17:37:38 +10:00
|
|
|
domain = params[:domain]
|
|
|
|
domain = Instance.by_domain_and_subdomains(params[:domain]).select(:domain) if params[:include_subdomains]
|
|
|
|
Account.where(domain: domain).count
|
2022-03-09 18:52:32 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
def perform_previous_total_query
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2023-06-06 04:46:04 +10:00
|
|
|
def sql_array
|
|
|
|
[sql_query_string, { start_at: @start_at, end_at: @end_at, domain: params[:domain] }]
|
|
|
|
end
|
2023-06-01 17:37:38 +10:00
|
|
|
|
2023-06-06 04:46:04 +10:00
|
|
|
def sql_query_string
|
|
|
|
<<~SQL.squish
|
2022-03-09 18:52:32 +11:00
|
|
|
SELECT axis.*, (
|
|
|
|
WITH new_accounts AS (
|
|
|
|
SELECT accounts.id
|
|
|
|
FROM accounts
|
|
|
|
WHERE date_trunc('day', accounts.created_at)::date = axis.period
|
2023-06-06 04:46:04 +10:00
|
|
|
AND #{account_domain_sql(params[:include_subdomains])}
|
2022-03-09 18:52:32 +11:00
|
|
|
)
|
|
|
|
SELECT count(*) FROM new_accounts
|
|
|
|
) AS value
|
|
|
|
FROM (
|
2023-06-06 04:46:04 +10:00
|
|
|
SELECT generate_series(date_trunc('day', :start_at::timestamp)::date, date_trunc('day', :end_at::timestamp)::date, interval '1 day') AS period
|
2022-03-09 18:52:32 +11:00
|
|
|
) AS axis
|
|
|
|
SQL
|
|
|
|
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
|
|
|
|
|
|
|
|
def params
|
2023-06-01 17:37:38 +10:00
|
|
|
@params.permit(:domain, :include_subdomains)
|
2022-03-09 18:52:32 +11:00
|
|
|
end
|
|
|
|
end
|