You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
2.8 KiB
JavaScript

10 years ago
'use strict';
var async = require('async');
var nconf = require('nconf');
var db = require('../../database');
var meta = require('../../meta');
var plugins = require('../../plugins');
8 years ago
var dashboardController = module.exports;
10 years ago
dashboardController.get = function (req, res, next) {
8 years ago
async.waterfall([
function (next) {
async.parallel({
stats: function (next) {
getStats(next);
},
8 years ago
notices: function (next) {
var notices = [
{
done: !meta.reloadRequired,
doneText: '[[admin/general/dashboard:restart-not-required]]',
notDoneText: '[[admin/general/dashboard:restart-required]]',
},
{
done: plugins.hasListeners('filter:search.query'),
doneText: '[[admin/general/dashboard:search-plugin-installed]]',
notDoneText: '[[admin/general/dashboard:search-plugin-not-installed]]',
tooltip: '[[admin/general/dashboard:search-plugin-tooltip]]',
link: '/admin/extend/plugins',
},
];
8 years ago
if (global.env !== 'production') {
notices.push({
done: false,
notDoneText: '[[admin/general/dashboard:running-in-development]]',
});
}
8 years ago
plugins.fireHook('filter:admin.notices', notices, next);
},
}, next);
},
8 years ago
function (results) {
res.render('admin/general/dashboard', {
version: nconf.get('version'),
notices: results.notices,
stats: results.stats,
canRestart: !!process.send,
8 years ago
});
},
], next);
10 years ago
};
function getStats(callback) {
8 years ago
async.waterfall([
function (next) {
8 years ago
async.parallel([
function (next) {
getStatsForSet('ip:recent', 'uniqueIPCount', next);
},
function (next) {
getStatsForSet('users:joindate', 'userCount', next);
},
function (next) {
getStatsForSet('posts:pid', 'postCount', next);
},
function (next) {
getStatsForSet('topics:tid', 'topicCount', next);
},
], next);
},
8 years ago
function (results, next) {
results[0].name = '[[admin/general/dashboard:unique-visitors]]';
results[1].name = '[[admin/general/dashboard:users]]';
results[2].name = '[[admin/general/dashboard:posts]]';
results[3].name = '[[admin/general/dashboard:topics]]';
10 years ago
8 years ago
next(null, results);
},
], callback);
10 years ago
}
function getStatsForSet(set, field, callback) {
var terms = {
day: 86400000,
week: 604800000,
month: 2592000000,
10 years ago
};
var now = Date.now();
async.parallel({
day: function (next) {
db.sortedSetCount(set, now - terms.day, '+inf', next);
10 years ago
},
week: function (next) {
db.sortedSetCount(set, now - terms.week, '+inf', next);
10 years ago
},
month: function (next) {
db.sortedSetCount(set, now - terms.month, '+inf', next);
10 years ago
},
alltime: function (next) {
10 years ago
getGlobalField(field, next);
},
10 years ago
}, callback);
}
function getGlobalField(field, callback) {
db.getObjectField('global', field, function (err, count) {
10 years ago
callback(err, parseInt(count, 10) || 0);
});
}