mirror of
https://github.com/discourse/discourse.git
synced 2025-01-18 11:32:46 +08:00
8a783412b7
- remove inactive user report and replace with posts - clean up internals so grouping by week happens on client - when switching periods old report was not destroyed leading to bugs - calculate trend based on previous interval ... not previous 30 days - show percentages for mau/dau - be more careful about utc date usage - show uniqu and click through rate on search panel - publish key of report with report so we only load the correct one - subscribe earlier in channel in case of concurrency issues
44 lines
1.2 KiB
Ruby
44 lines
1.2 KiB
Ruby
require_dependency 'report'
|
|
|
|
class Admin::ReportsController < Admin::AdminController
|
|
|
|
def show
|
|
report_type = params[:type]
|
|
|
|
raise Discourse::NotFound unless report_type =~ /^[a-z0-9\_]+$/
|
|
|
|
start_date = (params[:start_date].present? ? params[:start_date].to_date : 30.days.ago).beginning_of_day
|
|
end_date = (params[:end_date].present? ? params[:end_date].to_date : start_date + 30.days).end_of_day
|
|
|
|
if params.has_key?(:category_id) && params[:category_id].to_i > 0
|
|
category_id = params[:category_id].to_i
|
|
else
|
|
category_id = nil
|
|
end
|
|
|
|
if params.has_key?(:group_id) && params[:group_id].to_i > 0
|
|
group_id = params[:group_id].to_i
|
|
else
|
|
group_id = nil
|
|
end
|
|
|
|
facets = nil
|
|
if Array === params[:facets]
|
|
facets = params[:facets].map { |s| s.to_s.to_sym }
|
|
end
|
|
|
|
report = Report.find(report_type,
|
|
start_date: start_date,
|
|
end_date: end_date,
|
|
category_id: category_id,
|
|
group_id: group_id,
|
|
facets: facets,
|
|
async: params[:async])
|
|
|
|
raise Discourse::NotFound if report.blank?
|
|
|
|
render_json_dump(report: report)
|
|
end
|
|
|
|
end
|