2014-08-11 16:59:00 -04:00
|
|
|
class About
|
|
|
|
include ActiveModel::Serialization
|
2015-07-07 00:52:19 -04:00
|
|
|
include StatsCacheable
|
2014-08-11 16:59:00 -04:00
|
|
|
|
|
|
|
attr_accessor :moderators,
|
|
|
|
:admins
|
|
|
|
|
2015-07-07 00:52:19 -04:00
|
|
|
def self.stats_cache_key
|
|
|
|
'about-stats'
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.fetch_stats
|
|
|
|
About.new.stats
|
|
|
|
end
|
|
|
|
|
2014-08-11 18:15:35 -04:00
|
|
|
def version
|
|
|
|
Discourse::VERSION::STRING
|
|
|
|
end
|
|
|
|
|
2014-11-24 01:54:17 -05:00
|
|
|
def https
|
2016-06-27 05:26:43 -04:00
|
|
|
SiteSetting.force_https
|
2014-11-24 01:54:17 -05:00
|
|
|
end
|
|
|
|
|
2014-08-11 18:15:35 -04:00
|
|
|
def title
|
|
|
|
SiteSetting.title
|
|
|
|
end
|
|
|
|
|
|
|
|
def locale
|
|
|
|
SiteSetting.default_locale
|
|
|
|
end
|
|
|
|
|
|
|
|
def description
|
|
|
|
SiteSetting.site_description
|
|
|
|
end
|
|
|
|
|
2014-08-11 16:59:00 -04:00
|
|
|
def moderators
|
2014-08-20 12:42:33 -04:00
|
|
|
@moderators ||= User.where(moderator: true, admin: false)
|
2017-07-27 21:20:09 -04:00
|
|
|
.human_users
|
|
|
|
.order(:username_lower)
|
2014-08-11 16:59:00 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def admins
|
2017-03-11 01:25:09 -05:00
|
|
|
@admins ||= User.where(admin: true).human_users.order(:username_lower)
|
2014-08-11 16:59:00 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def stats
|
|
|
|
@stats ||= {
|
|
|
|
topic_count: Topic.listable_topics.count,
|
|
|
|
post_count: Post.count,
|
2015-02-17 15:31:50 -05:00
|
|
|
user_count: User.real.count,
|
2014-08-11 16:59:00 -04:00
|
|
|
topics_7_days: Topic.listable_topics.where('created_at > ?', 7.days.ago).count,
|
2015-02-02 12:27:49 -05:00
|
|
|
topics_30_days: Topic.listable_topics.where('created_at > ?', 30.days.ago).count,
|
2014-08-11 16:59:00 -04:00
|
|
|
posts_7_days: Post.where('created_at > ?', 7.days.ago).count,
|
2015-02-02 12:27:49 -05:00
|
|
|
posts_30_days: Post.where('created_at > ?', 30.days.ago).count,
|
2014-08-11 18:15:35 -04:00
|
|
|
users_7_days: User.where('created_at > ?', 7.days.ago).count,
|
2015-02-02 12:27:49 -05:00
|
|
|
users_30_days: User.where('created_at > ?', 30.days.ago).count,
|
2015-01-30 17:23:52 -05:00
|
|
|
active_users_7_days: User.where('last_seen_at > ?', 7.days.ago).count,
|
2015-02-02 12:27:49 -05:00
|
|
|
active_users_30_days: User.where('last_seen_at > ?', 30.days.ago).count,
|
2014-08-11 18:15:35 -04:00
|
|
|
like_count: UserAction.where(action_type: UserAction::LIKE).count,
|
2015-02-02 12:27:49 -05:00
|
|
|
likes_7_days: UserAction.where(action_type: UserAction::LIKE).where("created_at > ?", 7.days.ago).count,
|
|
|
|
likes_30_days: UserAction.where(action_type: UserAction::LIKE).where("created_at > ?", 30.days.ago).count
|
2014-08-11 16:59:00 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|