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.

288 lines
7.0 KiB
JavaScript

"use strict";
var async = require('async'),
user = require('../user'),
categories = require('../categories'),
topics = require('../topics'),
meta = require('../meta'),
db = require('../database'),
events = require('../events'),
languages = require('../languages'),
plugins = require('../plugins'),
widgets = require('../widgets'),
groups = require('../groups'),
pkg = require('../../package.json'),
11 years ago
validator = require('validator');
var adminController = {
categories: {},
11 years ago
tags: {},
topics: {},
groups: {},
themes: {},
events: {},
database: {},
plugins: {},
languages: {},
settings: {},
logger: {},
sounds: {},
users: require('./admin/users'),
uploads: require('./admin/uploads')
};
adminController.home = function(req, res, next) {
11 years ago
async.parallel({
stats: function(next) {
getStats(next);
},
notices: function(next) {
var notices = [
{done: !meta.restartRequired, doneText: 'Restart not required', notDoneText:'Restart required'},
{done: plugins.hasListeners('action:email.send'), doneText: 'Emailer Installed', notDoneText:'Emailer not installed'},
{done: plugins.hasListeners('filter:search.query'), doneText: 'Search Plugin Installed', notDoneText:'Search Plugin not installed'}
];
plugins.fireHook('filter:admin.notices', notices, next);
}
}, function(err, results) {
if (err) {
return next(err);
}
res.render('admin/index', {
version: pkg.version,
11 years ago
notices: results.notices,
stats: results.stats
});
});
};
function getStats(callback) {
async.parallel([
function(next) {
getStatsForSet('ip:recent', next);
},
function(next) {
getStatsForSet('users:joindate', next);
},
function(next) {
getStatsForSet('posts:pid', next);
},
function(next) {
getStatsForSet('topics:tid', next);
}
], function(err, results) {
if (err) {
return callback(err);
}
results[0].name = 'Unique Visitors';
results[1].name = 'Users';
results[2].name = 'Posts';
results[3].name = 'Topics';
callback(null, results);
});
}
function getStatsForSet(set, callback) {
var terms = {
day: 86400000,
week: 604800000,
month: 2592000000
};
var now = Date.now();
async.parallel({
day: function(next) {
db.sortedSetCount(set, now - terms.day, now, next);
},
week: function(next) {
db.sortedSetCount(set, now - terms.week, now, next);
},
month: function(next) {
db.sortedSetCount(set, now - terms.month, now, next);
},
alltime: function(next) {
db.sortedSetCount(set, 0, now, next);
}
}, callback);
}
adminController.categories.active = function(req, res, next) {
11 years ago
filterAndRenderCategories(req, res, next, true);
};
adminController.categories.disabled = function(req, res, next) {
11 years ago
filterAndRenderCategories(req, res, next, false);
};
function filterAndRenderCategories(req, res, next, active) {
categories.getAllCategories(function (err, categoryData) {
categoryData = categoryData.filter(function (category) {
11 years ago
return active ? !category.disabled : category.disabled;
});
res.render('admin/categories', {categories: categoryData});
});
11 years ago
}
11 years ago
adminController.tags.get = function(req, res, next) {
topics.getTags(0, -1, function(err, tags) {
if (err) {
return next(err);
}
res.render('admin/tags', {tags: tags});
});
};
adminController.database.get = function(req, res, next) {
db.info(function (err, data) {
res.render('admin/database', data);
});
};
adminController.events.get = function(req, res, next) {
events.getLog(function(err, data) {
if(err || !data) {
return next(err);
}
11 years ago
data = data.toString().split('\n').reverse().join('\n');
res.render('admin/events', {
eventdata: data
});
});
};
adminController.plugins.get = function(req, res, next) {
plugins.getAll(function(err, plugins) {
if (err || !Array.isArray(plugins)) {
plugins = [];
}
res.render('admin/plugins' , {
plugins: plugins
});
})
};
adminController.languages.get = function(req, res, next) {
languages.list(function(err, languages) {
res.render('admin/languages', {
languages: languages
});
});
};
adminController.settings.get = function(req, res, next) {
res.render('admin/settings', {});
};
adminController.logger.get = function(req, res, next) {
res.render('admin/logger', {});
};
adminController.themes.get = function(req, res, next) {
async.parallel({
areas: function(next) {
var defaultAreas = [
{ name: 'Global Sidebar', template: 'global', location: 'sidebar' },
{ name: 'Global Header', template: 'global', location: 'header' },
{ name: 'Global Footer', template: 'global', location: 'footer' },
];
plugins.fireHook('filter:widgets.getAreas', defaultAreas, next);
},
widgets: function(next) {
plugins.fireHook('filter:widgets.getWidgets', [], next);
}
}, function(err, widgetData) {
11 years ago
widgetData.areas.push({ name: 'Draft Zone', template: 'global', location: 'drafts' });
async.each(widgetData.areas, function(area, next) {
widgets.getArea(area.template, area.location, function(err, areaData) {
area.data = areaData;
next(err);
});
}, function(err) {
for (var w in widgetData.widgets) {
if (widgetData.widgets.hasOwnProperty(w)) {
// if this gets anymore complicated, it needs to be a template
widgetData.widgets[w].content += "<br /><label>Title:</label><input type=\"text\" class=\"form-control\" name=\"title\" placeholder=\"Title (only shown on some containers)\" /><br /><label>Container:</label><textarea rows=\"4\" class=\"form-control container-html\" name=\"container\" placeholder=\"Drag and drop a container or enter HTML here.\"></textarea><div class=\"checkbox\"><label><input name=\"registered-only\" type=\"checkbox\"> Hide from anonymous users?</label></div>";
}
}
var branding = [];
for (var key in meta.css.branding) {
if (meta.css.branding.hasOwnProperty(key)) {
branding.push({
key: key,
value: meta.css.branding[key]
});
}
}
11 years ago
var templates = [],
list = {}, index = 0;
widgetData.areas.forEach(function(area) {
if (typeof list[area.template] === 'undefined') {
list[area.template] = index;
templates.push({
template: area.template,
areas: []
});
index++;
}
templates[list[area.template]].areas.push({
name: area.name,
location: area.location
});
});
res.render('admin/themes', {
11 years ago
templates: templates,
areas: widgetData.areas,
widgets: widgetData.widgets,
branding: branding
});
});
});
};
adminController.groups.get = function(req, res, next) {
groups.list({
expand: true,
showSystemGroups: true,
truncateUserList: true
}, function(err, groups) {
11 years ago
groups = groups.filter(function(group) {
return group.name !== 'registered-users' && group.name !== 'guests';
});
res.render('admin/groups', {
groups: groups,
yourid: req.user.uid
});
});
};
adminController.sounds.get = function(req, res, next) {
meta.sounds.getFiles(function(err, sounds) {
sounds = Object.keys(sounds).map(function(name) {
return {
name: name
};
});
res.render('admin/sounds', {
sounds: sounds
});
});
};
module.exports = adminController;