glitch-soc/mastodon

View on GitHub
app/lib/annual_report/most_reblogged_accounts.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class AnnualReport::MostRebloggedAccounts < AnnualReport::Source
  SET_SIZE = 10

  def generate
    {
      most_reblogged_accounts: most_reblogged_accounts.map do |(account_id, count)|
                                 {
                                   account_id: account_id.to_s,
                                   count: count,
                                 }
                               end,
    }
  end

  private

  def most_reblogged_accounts
    report_statuses.where.not(reblog_of_id: nil).joins(reblog: :account).group(accounts: [:id]).having('count(*) > 1').order(count_all: :desc).limit(SET_SIZE).count
  end
end