Files
NodeBB/src/webserver.js

394 lines
11 KiB
JavaScript
Raw Normal View History

var path = require('path'),
fs = require('fs'),
2014-01-04 18:05:15 -05:00
nconf = require('nconf'),
express = require('express'),
2013-07-10 16:22:03 -04:00
express_namespace = require('express-namespace'),
WebServer = express(),
2014-01-04 18:05:15 -05:00
server,
winston = require('winston'),
2013-10-04 01:46:50 -04:00
validator = require('validator'),
async = require('async'),
utils = require('../public/src/utils'),
templates = require('./../public/src/templates'), // todo remove
translator = require('./../public/src/translator'),
2013-12-02 17:10:26 -05:00
db = require('./database'),
user = require('./user'),
notifications = require('./notifications'),
auth = require('./routes/authentication'),
meta = require('./meta'),
plugins = require('./plugins'),
logger = require('./logger'),
middleware = require('./middleware'),
routes = require('./routes'),
admin = require('./routes/admin'),
apiRoute = require('./routes/api'),
feedsRoute = require('./routes/feeds'),
metaRoute = require('./routes/meta');
2013-05-02 15:57:43 -04:00
2014-01-04 18:05:15 -05:00
if(nconf.get('ssl')) {
server = require('https').createServer({
key: fs.readFileSync(nconf.get('ssl').key),
2014-01-04 18:09:43 -05:00
cert: fs.readFileSync(nconf.get('ssl').cert)
2014-01-04 18:05:15 -05:00
}, WebServer);
} else {
server = require('http').createServer(WebServer);
}
// Signals
2014-02-22 02:27:14 -05:00
var shutdown = function(code) {
winston.info('[app] Shutdown (SIGTERM/SIGINT) Initialised.');
db.close();
winston.info('[app] Database connection closed.');
winston.info('[app] Shutdown complete.');
2014-02-22 02:27:14 -05:00
process.exit();
},
restart = function() {
if (process.send) {
winston.info('[app] Restarting...');
process.send('nodebb:restart');
} else {
winston.error('[app] Could not restart server. Shutting down.');
shutdown();
}
};
process.on('SIGTERM', shutdown);
process.on('SIGINT', shutdown);
process.on('SIGHUP', restart);
process.on('uncaughtException', function(err) {
winston.error('[app] Encountered Uncaught Exception: ' + err.message);
console.log(err.stack);
restart();
});
2013-09-23 12:50:27 -04:00
(function (app) {
2013-11-11 13:25:54 -05:00
"use strict";
// this can be moved to app.js
var clientScripts;
2013-11-25 16:28:07 -05:00
plugins.ready(function() {
// Minify client-side libraries
meta.js.get(function (err, scripts) {
clientScripts = scripts.map(function (script) {
script = {
script: script
};
return script;
});
});
});
2013-08-23 13:14:36 -04:00
logger.init(app);
auth.registerApp(app);
async.series({
themesData: meta.themes.get,
currentThemeData: function(next) {
db.getObjectFields('config', ['theme:type', 'theme:id', 'theme:staticDir', 'theme:templates'], next);
}
}, function(err, data) {
middleware(app, data);
routes(app, nconf.get('relative_path'));
if (err) {
winston.error('Errors were encountered while attempting to initialise NodeBB.');
process.exit();
} else {
if (process.env.NODE_ENV === 'development') {
winston.info('Middlewares loaded.');
}
}
});
2014-02-27 14:55:41 -05:00
app.prepareAPI = function(req, res, next) {
res.locals.isAPI = true;
next();
};
app.authenticate = function(req, res, next) {
if(!req.user) {
if (res.locals.isAPI) {
return res.json(403, 'not-allowed');
} else {
return res.redirect('403');
}
} else {
next();
}
};
app.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 {
return res.redirect('403');
}
}
next();
};
app.checkAccountPermissions = function(req, res, next) {
var callerUID = req.user ? parseInt(req.user.uid, 10) : 0;
// this function requires userslug to be passed in. todo: /user/uploadpicture should pass in userslug I think
user.getUidByUserslug(req.params.userslug, function (err, uid) {
if (err) {
return next(err);
}
// not sure if this check really should belong here. also make sure we're not doing this check again in the actual method
if (!uid) {
if (res.locals.isAPI) {
return res.json(404);
} else {
return res.redirect('404');
}
}
if (parseInt(uid, 10) === callerUID) {
return next();
}
user.isAdministrator(callerUID, function(err, isAdmin) {
if(err) {
return next(err);
}
if(isAdmin) {
next();
}
if (res.locals.isAPI) {
return res.json(403, 'not-allowed');
} else {
return res.redirect('403');
}
});
});
};
2014-02-27 14:55:41 -05:00
app.buildHeader = function(req, res, next) {
async.parallel([
function(next) {
// temp, don't forget to set metaTags and linkTags to res.locals.header
app.build_header({
req: req,
res: res
}, function(err, template) {
res.locals.header = template;
next(err);
});
},
function(next) {
// this is slower than the original implementation because the rendered template is not cached
// but I didn't bother to fix this because we will deprecate [filter:footer.build] in favour of the widgets system by 0.4x
plugins.fireHook('filter:footer.build', '', function(err, appendHTML) {
app.render('footer', {footerHTML: appendHTML}, function(err, template) {
translator.translate(template, function(parsedTemplate) {
res.locals.footer = template;
next(err);
});
});
2014-02-27 14:55:41 -05:00
});
}
], function(err) {
next();
});
};
/**
* `options` object requires: req, res
2013-12-31 20:28:31 -05:00
* accepts: metaTags, linkTags
*/
2013-09-23 12:50:27 -04:00
app.build_header = function (options, callback) {
var custom_header = {
'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'
}, {
property: 'keywords',
2013-11-11 13:25:54 -05:00
content: meta.config.keywords || ''
}],
2014-02-19 21:47:26 -05:00
defaultLinkTags = [{
rel: 'apple-touch-icon',
2014-02-19 21:47:26 -05:00
href: '/apple-touch-icon'
}],
templateValues = {
bootswatchCSS: meta.config['theme:src'],
pluginCSS: plugins.cssFiles.map(function(file) { return { path: nconf.get('relative_path') + file.replace(/\\/g, '/') }; }),
2013-10-22 12:39:14 -04:00
title: meta.config.title || '',
description: meta.config.description || '',
2013-10-22 12:39:14 -04:00
'brand:logo': meta.config['brand:logo'] || '',
'brand:logo:display': meta.config['brand:logo']?'':'hide',
csrf: options.res.locals.csrf_token,
relative_path: nconf.get('relative_path'),
clientScripts: clientScripts,
navigation: custom_header.navigation,
'cache-buster': meta.config['cache-buster'] ? 'v=' + meta.config['cache-buster'] : '',
allowRegistration: meta.config.allowRegistration === undefined || parseInt(meta.config.allowRegistration, 10) === 1,
searchEnabled: plugins.hasListeners('filter:search.query') ? true : false
2013-12-31 20:53:24 -05:00
},
escapeList = {
'&': '&',
'<': '&lt;',
'>': '&gt;',
"'": '&apos;',
'"': '&quot;'
};
var uid = '0';
2013-12-31 20:28:31 -05:00
// Meta Tags
2014-02-27 14:55:41 -05:00
/*templateValues.metaTags = defaultMetaTags.concat(options.metaTags || []).map(function(tag) {
2014-02-27 01:51:33 -05:00
if(!tag || typeof tag.content !== 'string') {
winston.warn('Invalid meta tag. ', tag);
2014-02-27 01:43:24 -05:00
return tag;
}
2013-12-31 20:53:24 -05:00
tag.content = tag.content.replace(/[&<>'"]/g, function(tag) {
return escapeList[tag] || tag;
});
2013-12-31 20:28:31 -05:00
return tag;
2014-02-27 14:55:41 -05:00
});*/
// Link Tags
2014-02-27 14:55:41 -05:00
/*templateValues.linkTags = defaultLinkTags.concat(options.linkTags || []);
templateValues.linkTags.push({
rel: "icon",
type: "image/x-icon",
2014-02-10 22:24:36 -05:00
href: nconf.get('relative_path') + '/favicon.ico'
2014-02-27 14:55:41 -05:00
});*/
2013-12-31 20:28:31 -05:00
2013-11-11 13:25:54 -05:00
if(options.req.user && options.req.user.uid) {
uid = options.req.user.uid;
2013-11-11 13:25:54 -05:00
}
2014-01-31 13:17:28 -05:00
// Custom CSS
templateValues.useCustomCSS = false;
if (meta.config.useCustomCSS === '1') {
templateValues.useCustomCSS = true;
templateValues.customCSS = meta.config.customCSS;
}
async.parallel([
function(next) {
translator.get('pages:' + path.basename(options.req.url), function(translated) {
2014-02-27 14:55:41 -05:00
/*var metaTitle = templateValues.metaTags.filter(function(tag) {
return tag.name === 'title';
});
if (translated) {
templateValues.browserTitle = translated;
} else if (metaTitle.length > 0 && metaTitle[0].content) {
templateValues.browserTitle = metaTitle[0].content;
} else {
templateValues.browserTitle = meta.config.browserTitle || 'NodeBB';
2014-02-27 14:55:41 -05:00
}*/
next();
});
},
function(next) {
user.isAdministrator(uid, function(err, isAdmin) {
templateValues.isAdmin = isAdmin || false;
next();
});
}
], function() {
2014-02-27 14:55:41 -05:00
/*translator.translate(templates.header.parse(templateValues), function(template) {
callback(null, template);
2014-02-27 14:55:41 -05:00
});*/
app.render('header', templateValues, function(err, template) {
callback(null, template)
});
2013-11-11 13:25:54 -05:00
});
});
2013-06-20 16:04:58 -04:00
};
2013-04-22 16:51:32 +00:00
// Cache static files on production
if (global.env !== 'development') {
app.enable('cache');
app.enable('minification');
// Configure cache-buster timestamp
require('child_process').exec('git describe --tags', {
cwd: path.join(__dirname, '../')
}, function(err, stdOut) {
if (!err) {
meta.config['cache-buster'] = stdOut.trim();
// winston.info('[init] Cache buster value set to: ' + stdOut);
} else {
2014-02-13 12:26:43 -05:00
fs.stat(path.join(__dirname, '../package.json'), function(err, stats) {
meta.config['cache-buster'] = new Date(stats.mtime).getTime();
});
}
});
}
if (nconf.get('port') != 80 && nconf.get('port') != 443 && nconf.get('use_port') === false) {
winston.info('Enabling \'trust proxy\'');
app.enable('trust proxy');
}
if ((nconf.get('port') == 80 || nconf.get('port') == 443) && process.env.NODE_ENV !== 'development') {
winston.info('Using ports 80 and 443 is not recommend; use a proxy instead. See README.md');
}
module.exports.server = server;
2013-09-23 12:50:27 -04:00
module.exports.init = function () {
// translate all static templates served by webserver here. ex. footer, logout
2014-01-23 17:08:33 -05:00
plugins.fireHook('action:app.load', app);
2013-11-22 11:42:42 -05:00
2014-02-27 14:55:41 -05:00
/*translator.translate(templates.logout.toString(), function(parsedTemplate) {
2013-11-11 13:25:54 -05:00
templates.logout = parsedTemplate;
2014-02-27 14:55:41 -05:00
});*/
server.on("error", function(e){
if (e.code === 'EADDRINUSE') {
winston.error('NodeBB address in use, exiting...');
process.exit(1);
} else {
throw e;
}
});
var port = nconf.get('PORT') || nconf.get('port');
winston.info('NodeBB attempting to listen on: ' + ((nconf.get('bind_address') === "0.0.0.0" || !nconf.get('bind_address')) ? '0.0.0.0' : nconf.get('bind_address')) + ':' + port);
server.listen(port, nconf.get('bind_address'), function(){
winston.info('NodeBB Ready');
});
2013-11-11 13:25:54 -05:00
};
2013-09-23 12:50:27 -04:00
app.create_route = function (url, tpl) { // to remove
var routerScript = '<script> \
ajaxify.initialLoad = true; \
templates.ready(function(){ajaxify.go("' + url + '", null, true);}); \
</script>';
return routerScript;
};
2013-04-22 16:51:32 +00:00
}(WebServer));