mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:33:43 +08:00
43 lines
997 B
Ruby
43 lines
997 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Reports::TopReferrers
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
class_methods do
|
||
|
def report_top_referrers(report)
|
||
|
report.modes = [:table]
|
||
|
|
||
|
report.labels = [
|
||
|
{
|
||
|
type: :user,
|
||
|
properties: {
|
||
|
username: :username,
|
||
|
id: :user_id,
|
||
|
avatar: :user_avatar_template,
|
||
|
},
|
||
|
title: I18n.t("reports.top_referrers.labels.user")
|
||
|
},
|
||
|
{
|
||
|
property: :num_clicks,
|
||
|
type: :number,
|
||
|
title: I18n.t("reports.top_referrers.labels.num_clicks")
|
||
|
},
|
||
|
{
|
||
|
property: :num_topics,
|
||
|
type: :number,
|
||
|
title: I18n.t("reports.top_referrers.labels.num_topics")
|
||
|
}
|
||
|
]
|
||
|
|
||
|
options = {
|
||
|
end_date: report.end_date,
|
||
|
start_date: report.start_date,
|
||
|
limit: report.limit || 8
|
||
|
}
|
||
|
|
||
|
result = IncomingLinksReport.find(:top_referrers, options)
|
||
|
report.data = result.data
|
||
|
end
|
||
|
end
|
||
|
end
|