2013-03-22 15:47:25 -04:00
|
|
|
require_dependency 'mem_info'
|
|
|
|
|
2013-03-19 23:18:00 -04:00
|
|
|
class AdminDashboardData
|
|
|
|
|
2013-04-16 16:56:18 -04:00
|
|
|
REPORTS = [
|
|
|
|
'visits',
|
|
|
|
'signups',
|
|
|
|
'topics',
|
|
|
|
'posts',
|
|
|
|
'flags',
|
|
|
|
'users_by_trust_level',
|
|
|
|
'likes',
|
2013-04-18 14:27:22 -04:00
|
|
|
'bookmarks',
|
2014-01-09 16:22:54 -05:00
|
|
|
'starred',
|
2013-04-16 16:56:18 -04:00
|
|
|
'emails',
|
|
|
|
'user_to_user_private_messages',
|
|
|
|
'system_private_messages',
|
|
|
|
'moderator_warning_private_messages',
|
|
|
|
'notify_moderators_private_messages',
|
|
|
|
'notify_user_private_messages'
|
|
|
|
]
|
2013-03-19 23:18:00 -04:00
|
|
|
|
2013-04-25 17:53:31 -04:00
|
|
|
def problems
|
|
|
|
[ rails_env_check,
|
2013-10-24 18:22:47 -04:00
|
|
|
ruby_version_check,
|
2013-04-25 17:53:31 -04:00
|
|
|
host_names_check,
|
|
|
|
gc_checks,
|
2013-08-07 13:25:05 -04:00
|
|
|
sidekiq_check || queue_size_check,
|
2013-04-25 17:53:31 -04:00
|
|
|
ram_check,
|
2014-05-21 18:19:40 -04:00
|
|
|
old_google_config_check,
|
|
|
|
both_googles_config_check,
|
|
|
|
google_oauth2_config_check,
|
2013-04-25 17:53:31 -04:00
|
|
|
facebook_config_check,
|
|
|
|
twitter_config_check,
|
|
|
|
github_config_check,
|
2013-06-19 16:11:11 -04:00
|
|
|
s3_config_check,
|
2013-06-19 16:36:56 -04:00
|
|
|
image_magick_check,
|
2013-04-25 17:53:31 -04:00
|
|
|
failing_emails_check,
|
|
|
|
default_logo_check,
|
|
|
|
contact_email_check,
|
2013-06-10 03:08:06 -04:00
|
|
|
send_consumer_email_check,
|
2013-06-25 15:05:16 -04:00
|
|
|
title_check,
|
2013-09-11 16:32:49 -04:00
|
|
|
site_description_check,
|
2013-06-26 10:57:04 -04:00
|
|
|
access_password_removal,
|
2013-09-06 03:28:37 -04:00
|
|
|
site_contact_username_check,
|
2013-11-15 10:46:41 -05:00
|
|
|
notification_email_check,
|
2013-11-18 13:44:55 -05:00
|
|
|
enforce_global_nicknames_check
|
2013-11-15 10:46:41 -05:00
|
|
|
].compact
|
2013-04-25 17:53:31 -04:00
|
|
|
end
|
|
|
|
|
2014-05-21 18:19:40 -04:00
|
|
|
|
2013-08-02 18:31:25 -04:00
|
|
|
def self.fetch_stats
|
2013-03-19 23:18:00 -04:00
|
|
|
AdminDashboardData.new
|
|
|
|
end
|
2013-08-02 18:31:25 -04:00
|
|
|
def self.fetch_cached_stats
|
|
|
|
# The DashboardStats job is responsible for generating and caching this.
|
|
|
|
stats = $redis.get(stats_cache_key)
|
|
|
|
stats ? JSON.parse(stats) : nil
|
|
|
|
end
|
|
|
|
def self.stats_cache_key
|
|
|
|
'dash-stats'
|
|
|
|
end
|
2013-03-19 23:18:00 -04:00
|
|
|
|
2013-03-29 15:48:26 -04:00
|
|
|
def self.fetch_problems
|
|
|
|
AdminDashboardData.new.problems
|
|
|
|
end
|
|
|
|
|
2013-11-30 00:43:44 -05:00
|
|
|
def as_json(options = nil)
|
2013-03-19 23:18:00 -04:00
|
|
|
@json ||= {
|
2013-05-14 16:17:17 -04:00
|
|
|
reports: REPORTS.map { |type| Report.find(type).as_json },
|
2013-03-29 02:29:58 -04:00
|
|
|
admins: User.admins.count,
|
2013-05-01 18:12:02 -04:00
|
|
|
moderators: User.moderators.count,
|
2013-11-07 13:53:32 -05:00
|
|
|
suspended: User.suspended.count,
|
2013-06-04 11:53:19 -04:00
|
|
|
blocked: User.blocked.count,
|
2013-05-14 16:17:17 -04:00
|
|
|
top_referrers: IncomingLinksReport.find('top_referrers').as_json,
|
|
|
|
top_traffic_sources: IncomingLinksReport.find('top_traffic_sources').as_json,
|
2013-08-02 18:31:25 -04:00
|
|
|
top_referred_topics: IncomingLinksReport.find('top_referred_topics').as_json,
|
|
|
|
updated_at: Time.zone.now.as_json
|
2013-07-30 12:11:51 -04:00
|
|
|
}
|
2013-03-19 23:18:00 -04:00
|
|
|
end
|
|
|
|
|
2013-08-02 18:31:25 -04:00
|
|
|
def self.recalculate_interval
|
2013-08-07 13:25:05 -04:00
|
|
|
# Could be configurable, multisite need to support it.
|
2013-08-02 18:31:25 -04:00
|
|
|
30 # minutes
|
|
|
|
end
|
|
|
|
|
2013-03-19 23:18:00 -04:00
|
|
|
def rails_env_check
|
|
|
|
I18n.t("dashboard.rails_env_warning", env: Rails.env) unless Rails.env == 'production'
|
|
|
|
end
|
2013-03-20 15:38:28 -04:00
|
|
|
|
|
|
|
def host_names_check
|
|
|
|
I18n.t("dashboard.host_names_warning") if ['localhost', 'production.localhost'].include?(Discourse.current_hostname)
|
|
|
|
end
|
2013-03-20 16:16:23 -04:00
|
|
|
|
|
|
|
def gc_checks
|
|
|
|
I18n.t("dashboard.gc_warning") if ENV['RUBY_GC_MALLOC_LIMIT'].nil?
|
|
|
|
end
|
2013-03-21 16:51:19 -04:00
|
|
|
|
2013-03-22 11:35:32 -04:00
|
|
|
def sidekiq_check
|
|
|
|
last_job_performed_at = Jobs.last_job_performed_at
|
|
|
|
I18n.t('dashboard.sidekiq_warning') if Jobs.queued > 0 and (last_job_performed_at.nil? or last_job_performed_at < 2.minutes.ago)
|
|
|
|
end
|
|
|
|
|
2013-04-22 13:02:24 -04:00
|
|
|
def queue_size_check
|
|
|
|
queue_size = Jobs.queued
|
|
|
|
I18n.t('dashboard.queue_size_warning', queue_size: queue_size) unless queue_size < 100
|
|
|
|
end
|
|
|
|
|
2013-03-22 15:47:25 -04:00
|
|
|
def ram_check
|
|
|
|
I18n.t('dashboard.memory_warning') if MemInfo.new.mem_total and MemInfo.new.mem_total < 1_000_000
|
|
|
|
end
|
2013-03-29 13:31:00 -04:00
|
|
|
|
2014-05-21 18:19:40 -04:00
|
|
|
def old_google_config_check
|
|
|
|
I18n.t('dashboard.enable_google_logins_warning') if SiteSetting.enable_google_logins
|
|
|
|
end
|
|
|
|
|
|
|
|
def both_googles_config_check
|
|
|
|
I18n.t('dashboard.both_googles_warning') if SiteSetting.enable_google_logins && SiteSetting.enable_google_oauth2_logins
|
|
|
|
end
|
|
|
|
|
|
|
|
def google_oauth2_config_check
|
2014-05-21 19:11:02 -04:00
|
|
|
I18n.t('dashboard.google_oauth2_config_warning') if SiteSetting.enable_google_oauth2_logins && (SiteSetting.google_oauth2_client_id.blank? || SiteSetting.google_oauth2_client_secret.blank?)
|
2014-05-21 18:19:40 -04:00
|
|
|
end
|
|
|
|
|
2013-03-29 13:31:00 -04:00
|
|
|
def facebook_config_check
|
2014-05-21 18:19:40 -04:00
|
|
|
I18n.t('dashboard.facebook_config_warning') if SiteSetting.enable_facebook_logins && (SiteSetting.facebook_app_id.blank? || SiteSetting.facebook_app_secret.blank?)
|
2013-03-29 13:31:00 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def twitter_config_check
|
2013-06-19 16:11:11 -04:00
|
|
|
I18n.t('dashboard.twitter_config_warning') if SiteSetting.enable_twitter_logins and (SiteSetting.twitter_consumer_key.blank? or SiteSetting.twitter_consumer_secret.blank?)
|
2013-03-29 13:31:00 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def github_config_check
|
2013-06-19 16:11:11 -04:00
|
|
|
I18n.t('dashboard.github_config_warning') if SiteSetting.enable_github_logins and (SiteSetting.github_client_id.blank? or SiteSetting.github_client_secret.blank?)
|
|
|
|
end
|
|
|
|
|
|
|
|
def s3_config_check
|
2014-07-05 15:33:39 -04:00
|
|
|
return I18n.t('dashboard.s3_config_warning') if SiteSetting.enable_s3_uploads and ((!SiteSetting.s3_use_iam_profile and (SiteSetting.s3_access_key_id.blank? or SiteSetting.s3_secret_access_key.blank?)) or SiteSetting.s3_upload_bucket.blank?)
|
|
|
|
return I18n.t('dashboard.s3_backup_config_warning') if SiteSetting.enable_s3_backups and ((!SiteSetting.s3_use_iam_profile and (SiteSetting.s3_access_key_id.blank? or SiteSetting.s3_secret_access_key.blank?)) or SiteSetting.s3_backup_bucket.blank?)
|
2014-03-17 15:56:59 -04:00
|
|
|
nil
|
2013-03-29 13:31:00 -04:00
|
|
|
end
|
2013-04-22 13:37:16 -04:00
|
|
|
|
2013-06-19 16:36:56 -04:00
|
|
|
def image_magick_check
|
2013-06-20 21:42:18 -04:00
|
|
|
I18n.t('dashboard.image_magick_warning') if SiteSetting.create_thumbnails and !system("command -v convert >/dev/null;")
|
2013-06-19 16:36:56 -04:00
|
|
|
end
|
|
|
|
|
2013-04-22 13:37:16 -04:00
|
|
|
def failing_emails_check
|
|
|
|
num_failed_jobs = Jobs.num_email_retry_jobs
|
|
|
|
I18n.t('dashboard.failing_emails_warning', num_failed_jobs: num_failed_jobs) if num_failed_jobs > 0
|
|
|
|
end
|
2013-04-22 15:38:48 -04:00
|
|
|
|
|
|
|
def default_logo_check
|
2013-06-05 16:59:19 -04:00
|
|
|
if SiteSetting.logo_url =~ /#{SiteSetting.defaults[:logo_url].split('/').last}/ or
|
|
|
|
SiteSetting.logo_small_url =~ /#{SiteSetting.defaults[:logo_small_url].split('/').last}/ or
|
|
|
|
SiteSetting.favicon_url =~ /#{SiteSetting.defaults[:favicon_url].split('/').last}/
|
2013-04-22 15:38:48 -04:00
|
|
|
I18n.t('dashboard.default_logo_warning')
|
|
|
|
end
|
|
|
|
end
|
2013-04-24 11:15:37 -04:00
|
|
|
|
|
|
|
def contact_email_check
|
|
|
|
return I18n.t('dashboard.contact_email_missing') if !SiteSetting.contact_email.present?
|
|
|
|
return I18n.t('dashboard.contact_email_invalid') if !(SiteSetting.contact_email =~ User::EMAIL)
|
|
|
|
end
|
2013-04-25 17:53:31 -04:00
|
|
|
|
|
|
|
def title_check
|
|
|
|
I18n.t('dashboard.title_nag') if SiteSetting.title == SiteSetting.defaults[:title]
|
|
|
|
end
|
2013-05-01 18:12:02 -04:00
|
|
|
|
2013-09-11 16:32:49 -04:00
|
|
|
def site_description_check
|
2013-11-15 10:46:41 -05:00
|
|
|
I18n.t('dashboard.site_description_missing') if !SiteSetting.site_description.present?
|
2013-09-11 16:32:49 -04:00
|
|
|
end
|
|
|
|
|
2013-06-10 03:08:06 -04:00
|
|
|
def send_consumer_email_check
|
|
|
|
I18n.t('dashboard.consumer_email_warning') if Rails.env == 'production' and ActionMailer::Base.smtp_settings[:address] =~ /gmail\.com|live\.com|yahoo\.com/
|
2013-05-29 13:54:49 -04:00
|
|
|
end
|
|
|
|
|
2013-09-06 03:28:37 -04:00
|
|
|
def site_contact_username_check
|
|
|
|
I18n.t('dashboard.site_contact_username_warning') if SiteSetting.site_contact_username.blank?
|
2013-06-26 10:57:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def notification_email_check
|
|
|
|
I18n.t('dashboard.notification_email_warning') if SiteSetting.notification_email.blank?
|
|
|
|
end
|
|
|
|
|
2013-10-24 18:22:47 -04:00
|
|
|
def ruby_version_check
|
|
|
|
I18n.t('dashboard.ruby_version_warning') if RUBY_VERSION == '2.0.0' and RUBY_PATCHLEVEL < 247
|
|
|
|
end
|
|
|
|
|
2013-11-18 13:44:55 -05:00
|
|
|
def enforce_global_nicknames_check
|
|
|
|
I18n.t('dashboard.enforce_global_nicknames_warning') if SiteSetting.enforce_global_nicknames and !SiteSetting.discourse_org_access_key.present?
|
|
|
|
end
|
|
|
|
|
2013-06-25 15:05:16 -04:00
|
|
|
# TODO: generalize this method of putting i18n keys with expiry in redis
|
|
|
|
# that should be reported on the admin dashboard:
|
|
|
|
def access_password_removal
|
|
|
|
if i18n_key = $redis.get(AdminDashboardData.access_password_removal_key)
|
|
|
|
I18n.t(i18n_key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
def self.report_access_password_removal
|
|
|
|
$redis.setex access_password_removal_key, 172_800, 'dashboard.access_password_removal'
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def self.access_password_removal_key
|
|
|
|
'dash-data:access_password_removal'
|
|
|
|
end
|
|
|
|
|
2013-06-19 16:11:11 -04:00
|
|
|
end
|