2013-03-20 11:18:00 +08:00
|
|
|
class AdminDashboardData
|
|
|
|
|
|
|
|
REPORTS = ['visits', 'signups', 'topics', 'posts', 'flags', 'users_by_trust_level', 'likes', 'emails']
|
|
|
|
|
|
|
|
def self.fetch
|
|
|
|
AdminDashboardData.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def as_json
|
|
|
|
@json ||= {
|
|
|
|
reports: REPORTS.map { |type| Report.find(type) },
|
|
|
|
total_users: User.count,
|
2013-03-21 03:38:28 +08:00
|
|
|
problems: [rails_env_check, host_names_check].compact
|
2013-03-20 11:18:00 +08:00
|
|
|
}.merge(
|
|
|
|
SiteSetting.version_checks? ? {version_check: DiscourseUpdates.check_version} : {}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def rails_env_check
|
|
|
|
I18n.t("dashboard.rails_env_warning", env: Rails.env) unless Rails.env == 'production'
|
|
|
|
end
|
2013-03-21 03:38:28 +08:00
|
|
|
|
|
|
|
def host_names_check
|
|
|
|
I18n.t("dashboard.host_names_warning") if ['localhost', 'production.localhost'].include?(Discourse.current_hostname)
|
|
|
|
end
|
2013-03-20 11:18:00 +08:00
|
|
|
end
|