discourse/app/models/report.rb

166 lines
5.4 KiB
Ruby
Raw Normal View History

require_dependency 'topic_subtype'
class Report
2014-11-04 17:08:39 -05:00
attr_accessor :type, :data, :total, :prev30Days, :start_date, :end_date
def self.default_days
30
end
def initialize(type)
@type = type
@data = nil
@total = nil
2013-03-30 14:07:25 -04:00
@prev30Days = nil
2014-11-04 17:08:39 -05:00
@start_date ||= 1.month.ago
@end_date ||= Time.now
end
def as_json(options = nil)
{
2014-11-04 17:08:39 -05:00
type: type,
title: I18n.t("reports.#{type}.title"),
xaxis: I18n.t("reports.#{type}.xaxis"),
yaxis: I18n.t("reports.#{type}.yaxis"),
data: data,
total: total,
start_date: start_date,
end_date: end_date,
2013-03-30 14:07:25 -04:00
prev30Days: self.prev30Days
}
end
2014-11-04 17:08:39 -05:00
def self.find(type, opts=nil)
opts ||= {}
report_method = :"report_#{type}"
return nil unless respond_to?(report_method)
# Load the report
report = Report.new(type)
2014-11-04 17:08:39 -05:00
report.start_date = opts[:start_date]
report.end_date = opts[:end_date]
send(report_method, report)
report
end
def self.report_visits(report)
2014-11-04 17:08:39 -05:00
basic_report_about report, UserVisit, :by_day, report.start_date, report.end_date
2013-03-07 11:07:59 -05:00
end
def self.report_signups(report)
report_about report, User.real, :count_by_signup_date
2013-03-07 11:07:59 -05:00
end
def self.report_topics(report)
2014-11-04 17:08:39 -05:00
basic_report_about report, Topic, :listable_count_per_day, report.start_date, report.end_date
report.total = Topic.listable_topics.count
2014-11-04 17:08:39 -05:00
report.prev30Days = Topic.listable_topics.where('created_at > ? and created_at < ?', report.start_date - 30.days, report.start_date).count
end
2013-03-07 11:07:59 -05:00
def self.report_posts(report)
2014-11-04 17:08:39 -05:00
basic_report_about report, Post, :public_posts_count_per_day, report.start_date, report.end_date
report.total = Post.public_posts.count
2014-11-04 17:08:39 -05:00
report.prev30Days = Post.public_posts.where('posts.created_at > ? and posts.created_at < ?', report.start_date - 30.days, report.start_date).count
end
def self.report_emails(report)
report_about report, EmailLog
end
def self.report_about(report, subject_class, report_method = :count_per_day)
2014-11-04 17:08:39 -05:00
basic_report_about report, subject_class, report_method, default_days
add_counts(report, subject_class)
end
def self.basic_report_about(report, subject_class, report_method, *args)
2013-03-07 11:07:59 -05:00
report.data = []
2014-11-04 17:08:39 -05:00
subject_class.send(report_method, *args).each do |date, count|
report.data << {x: date, y: count}
2013-03-07 11:07:59 -05:00
end
end
def self.add_counts(report, subject_class)
report.total = subject_class.count
2014-11-04 17:08:39 -05:00
report.prev30Days = subject_class.where('created_at > ? and created_at < ?', report.start_date - 30.days, report.start_date).count
2013-03-07 11:07:59 -05:00
end
def self.report_users_by_trust_level(report)
report.data = []
User.real.group('trust_level').count.each do |level, count|
report.data << {x: level.to_i, y: count}
end
end
2014-01-09 16:22:54 -05:00
def self.report_starred(report)
2014-11-04 17:08:39 -05:00
basic_report_about report, Topic, :starred_counts_per_day, default_days
query = TopicUser.where(starred: true)
report.total = query.count
2014-11-04 17:08:39 -05:00
report.prev30Days = query.where('starred_at > ? and starred_at < ?', report.start_date - 30.days, report.start_date).count
end
# Post action counts:
2013-03-12 14:19:01 -04:00
def self.report_flags(report)
report.data = []
(0..30).to_a.reverse.each do |i|
count = PostAction.where('date(created_at) = ?', i.days.ago.utc.to_date)
.where(post_action_type_id: PostActionType.flag_types.values)
.count
if count > 0
report.data << {x: i.days.ago.utc.to_date.to_s, y: count}
2013-03-12 14:19:01 -04:00
end
end
2013-03-30 14:07:25 -04:00
flagsQuery = PostAction.where(post_action_type_id: PostActionType.flag_types.values)
report.total = flagsQuery.count
2014-11-04 17:08:39 -05:00
report.prev30Days = flagsQuery.where('created_at > ? and created_at < ?', report.start_date - 30.days, report.start_date).count
2013-03-12 14:19:01 -04:00
end
def self.report_likes(report)
post_action_report report, PostActionType.types[:like]
end
def self.report_bookmarks(report)
post_action_report report, PostActionType.types[:bookmark]
end
def self.post_action_report(report, post_action_type)
2013-03-17 13:53:00 -04:00
report.data = []
PostAction.count_per_day_for_type(post_action_type).each do |date, count|
report.data << { x: date, y: count }
2013-03-17 13:53:00 -04:00
end
query = PostAction.unscoped.where(post_action_type_id: post_action_type)
report.total = query.count
2014-11-04 17:08:39 -05:00
report.prev30Days = query.where('created_at > ? and created_at < ?', report.start_date - 30.days, report.start_date).count
2013-03-17 13:53:00 -04:00
end
# Private messages counts:
def self.private_messages_report(report, topic_subtype)
2014-11-04 17:08:39 -05:00
basic_report_about report, Post, :private_messages_count_per_day, default_days, topic_subtype
report.total = Post.private_posts.with_topic_subtype(topic_subtype).count
2014-11-04 17:08:39 -05:00
report.prev30Days = Post.private_posts.with_topic_subtype(topic_subtype).where('posts.created_at > ? and posts.created_at < ?', report.start_date - 30.days, report.start_date).count
end
def self.report_user_to_user_private_messages(report)
private_messages_report report, TopicSubtype.user_to_user
end
def self.report_system_private_messages(report)
private_messages_report report, TopicSubtype.system_message
end
def self.report_moderator_warning_private_messages(report)
private_messages_report report, TopicSubtype.moderator_warning
end
def self.report_notify_moderators_private_messages(report)
private_messages_report report, TopicSubtype.notify_moderators
end
def self.report_notify_user_private_messages(report)
private_messages_report report, TopicSubtype.notify_user
end
end