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.
482 lines
12 KiB
JavaScript
482 lines
12 KiB
JavaScript
"use strict";
|
|
|
|
var app,
|
|
middleware = {
|
|
admin: {}
|
|
},
|
|
async = require('async'),
|
|
path = require('path'),
|
|
winston = require('winston'),
|
|
validator = require('validator'),
|
|
nconf = require('nconf'),
|
|
plugins = require('./../plugins'),
|
|
meta = require('./../meta'),
|
|
translator = require('./../../public/src/translator'),
|
|
user = require('./../user'),
|
|
db = require('./../database'),
|
|
categories = require('./../categories'),
|
|
topics = require('./../topics'),
|
|
messaging = require('../messaging'),
|
|
ensureLoggedIn = require('connect-ensure-login'),
|
|
csrf = require('csurf'),
|
|
|
|
controllers = {
|
|
api: require('./../controllers/api')
|
|
};
|
|
|
|
middleware.authenticate = function(req, res, next) {
|
|
if(!req.user) {
|
|
if (res.locals.isAPI) {
|
|
return res.json(403, 'not-allowed');
|
|
} else {
|
|
return res.redirect(nconf.get('url') + '/403');
|
|
}
|
|
} else {
|
|
next();
|
|
}
|
|
};
|
|
|
|
middleware.applyCSRF = csrf();
|
|
|
|
middleware.ensureLoggedIn = ensureLoggedIn.ensureLoggedIn();
|
|
|
|
middleware.updateLastOnlineTime = function(req, res, next) {
|
|
if(req.user) {
|
|
user.updateLastOnlineTime(req.user.uid);
|
|
}
|
|
|
|
db.sortedSetAdd('ip:recent', Date.now(), req.ip || 'Unknown');
|
|
|
|
next();
|
|
};
|
|
|
|
middleware.incrementPageViews = function(req, res, next) {
|
|
var today = new Date();
|
|
today.setHours(today.getHours(), 0, 0, 0);
|
|
|
|
db.sortedSetIncrBy('analytics:pageviews', 1, today.getTime());
|
|
next();
|
|
};
|
|
|
|
middleware.redirectToAccountIfLoggedIn = function(req, res, next) {
|
|
if (!req.user) {
|
|
return next();
|
|
}
|
|
user.getUserField(req.user.uid, 'userslug', function (err, userslug) {
|
|
if (err) {
|
|
return next(err);
|
|
}
|
|
|
|
if (res.locals.isAPI) {
|
|
res.json(302, '/user/' + userslug);
|
|
} else {
|
|
res.redirect('/user/' + userslug);
|
|
}
|
|
});
|
|
};
|
|
|
|
middleware.redirectToLoginIfGuest = function(req, res, next) {
|
|
if (!req.user || parseInt(req.user.uid, 10) === 0) {
|
|
req.session.returnTo = req.url;
|
|
return res.redirect('/login');
|
|
} else {
|
|
next();
|
|
}
|
|
};
|
|
|
|
middleware.addSlug = function(req, res, next) {
|
|
function redirect(method, id, name) {
|
|
method(id, 'slug', function(err, slug) {
|
|
if (err || !slug || slug === id + '/') {
|
|
return next(err);
|
|
}
|
|
var url = name + encodeURI(slug);
|
|
res.locals.isAPI ? res.json(302, url) : res.redirect(url);
|
|
});
|
|
}
|
|
|
|
if (!req.params.slug) {
|
|
if (req.params.category_id) {
|
|
redirect(categories.getCategoryField, req.params.category_id, '/category/');
|
|
} else if (req.params.topic_id) {
|
|
redirect(topics.getTopicField, req.params.topic_id, '/topic/');
|
|
} else {
|
|
return next();
|
|
}
|
|
return;
|
|
}
|
|
next();
|
|
};
|
|
|
|
middleware.checkTopicIndex = function(req, res, next) {
|
|
db.sortedSetCard('categories:' + req.params.category_id + ':tid', function(err, topicCount) {
|
|
if (err) {
|
|
return next(err);
|
|
}
|
|
var topicIndex = parseInt(req.params.topic_index, 10);
|
|
topicCount = parseInt(topicCount, 10) + 1;
|
|
var url = '';
|
|
|
|
if (topicIndex > topicCount) {
|
|
url = '/category/' + req.params.category_id + '/' + req.params.slug + '/' + topicCount;
|
|
return res.locals.isAPI ? res.json(302, url) : res.redirect(url);
|
|
} else if (topicIndex < 1) {
|
|
url = '/category/' + req.params.category_id + '/' + req.params.slug;
|
|
return res.locals.isAPI ? res.json(302, url) : res.redirect(url);
|
|
}
|
|
next();
|
|
});
|
|
};
|
|
|
|
middleware.prepareAPI = function(req, res, next) {
|
|
res.locals.isAPI = true;
|
|
next();
|
|
};
|
|
|
|
middleware.guestSearchingAllowed = function(req, res, next) {
|
|
if (!req.user && meta.config.allowGuestSearching !== '1') {
|
|
return res.redirect('/403');
|
|
}
|
|
|
|
next();
|
|
};
|
|
|
|
middleware.checkGlobalPrivacySettings = function(req, res, next) {
|
|
var callerUID = req.user ? parseInt(req.user.uid, 10) : 0;
|
|
|
|
if (!callerUID && !!parseInt(meta.config.privateUserInfo, 10)) {
|
|
if (res.locals.isAPI) {
|
|
return res.json(403, 'not-allowed');
|
|
} else {
|
|
req.session.returnTo = req.url;
|
|
return res.redirect('login');
|
|
}
|
|
}
|
|
|
|
next();
|
|
};
|
|
|
|
middleware.checkAccountPermissions = function(req, res, next) {
|
|
// This middleware ensures that only the requested user and admins can pass
|
|
var callerUID = req.user ? parseInt(req.user.uid, 10) : 0;
|
|
|
|
if (callerUID === 0) {
|
|
req.session.returnTo = req.url;
|
|
return res.redirect('/login');
|
|
}
|
|
|
|
user.getUidByUserslug(req.params.userslug, function (err, uid) {
|
|
if (err) {
|
|
return next(err);
|
|
}
|
|
|
|
if (!uid) {
|
|
return res.locals.isAPI ? res.json(404, 'not-found') : res.redirect(nconf.get('relative_path') + '/404');
|
|
}
|
|
|
|
if (parseInt(uid, 10) === callerUID) {
|
|
return next();
|
|
}
|
|
|
|
user.isAdministrator(callerUID, function(err, isAdmin) {
|
|
if(err) {
|
|
return next(err);
|
|
}
|
|
|
|
if(isAdmin) {
|
|
return next();
|
|
}
|
|
|
|
res.locals.isAPI ? res.json(403, 'not-allowed') : res.redirect(nconf.get('relative_path') + '/403');
|
|
});
|
|
});
|
|
};
|
|
|
|
middleware.buildHeader = function(req, res, next) {
|
|
res.locals.renderHeader = true;
|
|
async.parallel({
|
|
config: function(next) {
|
|
controllers.api.getConfig(req, res, next);
|
|
},
|
|
footer: function(next) {
|
|
app.render('footer', {}, next);
|
|
}
|
|
}, function(err, results) {
|
|
if (err) {
|
|
return next(err);
|
|
}
|
|
|
|
res.locals.config = results.config;
|
|
|
|
translator.translate(results.footer, results.config.defaultLang, function(parsedTemplate) {
|
|
res.locals.footer = parsedTemplate;
|
|
next();
|
|
});
|
|
});
|
|
};
|
|
|
|
middleware.renderHeader = function(req, res, callback) {
|
|
var uid = req.user ? parseInt(req.user.uid, 10) : 0;
|
|
|
|
var custom_header = {
|
|
uid: uid,
|
|
'navigation': []
|
|
};
|
|
|
|
plugins.fireHook('filter:header.build', custom_header, function(err, custom_header) {
|
|
var defaultMetaTags = [{
|
|
name: 'viewport',
|
|
content: 'width=device-width, initial-scale=1.0, user-scalable=no'
|
|
}, {
|
|
name: 'content-type',
|
|
content: 'text/html; charset=UTF-8'
|
|
}, {
|
|
name: 'apple-mobile-web-app-capable',
|
|
content: 'yes'
|
|
}, {
|
|
property: 'og:site_name',
|
|
content: meta.config.title || 'NodeBB'
|
|
}, {
|
|
name: 'keywords',
|
|
content: meta.config.keywords || ''
|
|
}, {
|
|
name: 'msapplication-badge',
|
|
content: 'frequency=30; polling-uri=' + nconf.get('url') + '/sitemap.xml'
|
|
}, {
|
|
name: 'msapplication-square150x150logo',
|
|
content: meta.config['brand:logo'] || ''
|
|
}],
|
|
defaultLinkTags = [{
|
|
rel: 'apple-touch-icon',
|
|
href: nconf.get('relative_path') + '/apple-touch-icon'
|
|
}],
|
|
templateValues = {
|
|
bootswatchCSS: meta.config['theme:src'],
|
|
title: meta.config.title || '',
|
|
description: meta.config.description || '',
|
|
'cache-buster': meta.config['cache-buster'] ? 'v=' + meta.config['cache-buster'] : '',
|
|
'brand:logo': meta.config['brand:logo'] || '',
|
|
'brand:logo:display': meta.config['brand:logo']?'':'hide',
|
|
csrf: req.csrfToken ? req.csrfToken() : undefined,
|
|
navigation: custom_header.navigation,
|
|
allowRegistration: meta.config.allowRegistration === undefined || parseInt(meta.config.allowRegistration, 10) === 1,
|
|
searchEnabled: plugins.hasListeners('filter:search.query')
|
|
},
|
|
escapeList = {
|
|
'&': '&',
|
|
'<': '<',
|
|
'>': '>',
|
|
"'": ''',
|
|
'"': '"'
|
|
};
|
|
|
|
for (var key in res.locals.config) {
|
|
if (res.locals.config.hasOwnProperty(key)) {
|
|
templateValues[key] = res.locals.config[key];
|
|
}
|
|
}
|
|
|
|
templateValues.metaTags = defaultMetaTags.concat(res.locals.metaTags || []).map(function(tag) {
|
|
if(!tag || typeof tag.content !== 'string') {
|
|
winston.warn('Invalid meta tag. ', tag);
|
|
return tag;
|
|
}
|
|
|
|
tag.content = tag.content.replace(/[&<>'"]/g, function(tag) {
|
|
return escapeList[tag] || tag;
|
|
});
|
|
return tag;
|
|
});
|
|
|
|
templateValues.linkTags = defaultLinkTags.concat(res.locals.linkTags || []);
|
|
templateValues.linkTags.unshift({
|
|
rel: "icon",
|
|
type: "image/x-icon",
|
|
href: nconf.get('relative_path') + '/favicon.ico'
|
|
});
|
|
|
|
|
|
async.parallel({
|
|
customCSS: function(next) {
|
|
templateValues.useCustomCSS = parseInt(meta.config.useCustomCSS, 10) === 1;
|
|
if (!templateValues.useCustomCSS) {
|
|
return next(null, '');
|
|
}
|
|
|
|
var less = require('less');
|
|
var parser = new (less.Parser)();
|
|
|
|
if (!meta.config.customCSS) {
|
|
return next(null, '');
|
|
}
|
|
|
|
parser.parse(meta.config.customCSS, function(err, tree) {
|
|
if (err) {
|
|
winston.error('[less] Could not convert custom LESS to CSS! Please check your syntax.');
|
|
return next(null, '');
|
|
}
|
|
|
|
next(null, tree ? tree.toCSS({cleancss: true}) : '');
|
|
});
|
|
},
|
|
customJS: function(next) {
|
|
templateValues.useCustomJS = parseInt(meta.config.useCustomJS, 10) === 1;
|
|
next(null, templateValues.useCustomJS ? meta.config.customJS : '');
|
|
},
|
|
title: function(next) {
|
|
if (uid) {
|
|
user.getSettings(uid, function(err, settings) {
|
|
if (err) {
|
|
return next(err);
|
|
}
|
|
meta.title.build(req.url.slice(1), settings.language, next);
|
|
});
|
|
} else {
|
|
meta.title.build(req.url.slice(1), meta.config.defaultLang, next);
|
|
}
|
|
},
|
|
isAdmin: function(next) {
|
|
user.isAdministrator(uid, next);
|
|
},
|
|
user: function(next) {
|
|
if (uid) {
|
|
user.getUserFields(uid, ['username', 'userslug', 'picture', 'status'], next);
|
|
} else {
|
|
next();
|
|
}
|
|
}
|
|
}, function(err, results) {
|
|
if (err) {
|
|
return callback(err);
|
|
}
|
|
|
|
templateValues.browserTitle = results.title;
|
|
templateValues.isAdmin = results.isAdmin || false;
|
|
templateValues.user = results.user;
|
|
templateValues.customCSS = results.customCSS;
|
|
templateValues.customJS = results.customJS;
|
|
templateValues.maintenanceHeader = meta.config.maintenanceMode === '1' && !results.isAdmin
|
|
|
|
app.render('header', templateValues, callback);
|
|
});
|
|
});
|
|
};
|
|
|
|
middleware.processRender = function(req, res, next) {
|
|
// res.render post-processing, modified from here: https://gist.github.com/mrlannigan/5051687
|
|
var render = res.render;
|
|
res.render = function(template, options, fn) {
|
|
var self = this,
|
|
req = this.req,
|
|
app = req.app,
|
|
defaultFn = function(err, str){
|
|
if (err) {
|
|
return req.next(err);
|
|
}
|
|
|
|
self.send(str);
|
|
};
|
|
|
|
options = options || {};
|
|
|
|
if ('function' === typeof options) {
|
|
fn = options;
|
|
options = {};
|
|
}
|
|
|
|
options.loggedIn = req.user ? parseInt(req.user.uid, 10) !== 0 : false;
|
|
|
|
if ('function' !== typeof fn) {
|
|
fn = defaultFn;
|
|
}
|
|
|
|
if (res.locals.isAPI) {
|
|
return res.json(options);
|
|
}
|
|
|
|
render.call(self, template, options, function(err, str) {
|
|
// str = str + '<input type="hidden" ajaxify-data="' + encodeURIComponent(JSON.stringify(options)) + '" />';
|
|
str = (res.locals.postHeader ? res.locals.postHeader : '') + str + (res.locals.preFooter ? res.locals.preFooter : '');
|
|
|
|
if (res.locals.footer) {
|
|
str = str + res.locals.footer;
|
|
} else if (res.locals.adminFooter) {
|
|
str = str + res.locals.adminFooter;
|
|
}
|
|
|
|
if (res.locals.renderHeader) {
|
|
middleware.renderHeader(req, res, function(err, template) {
|
|
str = template + str;
|
|
|
|
translator.translate(str, res.locals.config.userLang, function(translated) {
|
|
fn(err, translated);
|
|
});
|
|
});
|
|
} else if (res.locals.adminHeader) {
|
|
str = res.locals.adminHeader + str;
|
|
fn(err, str);
|
|
} else {
|
|
fn(err, str);
|
|
}
|
|
});
|
|
};
|
|
|
|
next();
|
|
};
|
|
|
|
middleware.routeTouchIcon = function(req, res) {
|
|
if (meta.config['brand:logo'] && validator.isURL(meta.config['brand:logo'])) {
|
|
return res.redirect(meta.config['brand:logo']);
|
|
} else {
|
|
return res.sendfile(path.join(__dirname, '../../public', meta.config['brand:logo'] || '/logo.png'), {
|
|
maxAge: app.enabled('cache') ? 5184000000 : 0
|
|
});
|
|
}
|
|
};
|
|
|
|
middleware.addExpiresHeaders = function(req, res, next) {
|
|
if (app.enabled('cache')) {
|
|
res.setHeader("Cache-Control", "public, max-age=5184000");
|
|
res.setHeader("Expires", new Date(Date.now() + 5184000000).toUTCString());
|
|
}
|
|
|
|
next();
|
|
};
|
|
|
|
middleware.maintenanceMode = function(req, res, next) {
|
|
var allowedRoutes = [
|
|
'/login'
|
|
],
|
|
render = function() {
|
|
middleware.buildHeader(req, res, function() {
|
|
res.render('maintenance', {
|
|
site_title: meta.config.site_title || 'NodeBB',
|
|
message: meta.config.maintenanceModeMessage
|
|
});
|
|
});
|
|
};
|
|
|
|
if (meta.config.maintenanceMode === '1' && allowedRoutes.indexOf(req.url) === -1) {
|
|
if (!req.user) {
|
|
return render();
|
|
} else {
|
|
user.isAdministrator(req.user.uid, function(err, isAdmin) {
|
|
if (!isAdmin) {
|
|
return render();
|
|
} else {
|
|
return next();
|
|
}
|
|
});
|
|
}
|
|
} else {
|
|
return next();
|
|
}
|
|
};
|
|
|
|
module.exports = function(webserver) {
|
|
app = webserver;
|
|
middleware.admin = require('./admin')(webserver);
|
|
|
|
return middleware;
|
|
};
|