2024-01-24 10:38:10 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AnnualReport::TopStatuses < AnnualReport::Source
|
|
|
|
def generate
|
|
|
|
top_reblogs = base_scope.order(reblogs_count: :desc).first&.id
|
|
|
|
top_favourites = base_scope.where.not(id: top_reblogs).order(favourites_count: :desc).first&.id
|
|
|
|
top_replies = base_scope.where.not(id: [top_reblogs, top_favourites]).order(replies_count: :desc).first&.id
|
|
|
|
|
|
|
|
{
|
|
|
|
top_statuses: {
|
|
|
|
by_reblogs: top_reblogs,
|
|
|
|
by_favourites: top_favourites,
|
|
|
|
by_replies: top_replies,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def base_scope
|
2024-09-04 21:50:33 +02:00
|
|
|
report_statuses.public_visibility.joins(:status_stat)
|
2024-01-24 10:38:10 +01:00
|
|
|
end
|
|
|
|
end
|