|
|
@ -14,6 +14,7 @@ var templates = require('./../../public/src/templates'),
|
|
|
|
nconf = require('nconf'),
|
|
|
|
nconf = require('nconf'),
|
|
|
|
express = require('express'),
|
|
|
|
express = require('express'),
|
|
|
|
winston = require('winston'),
|
|
|
|
winston = require('winston'),
|
|
|
|
|
|
|
|
flash = require('connect-flash'),
|
|
|
|
|
|
|
|
|
|
|
|
relativePath,
|
|
|
|
relativePath,
|
|
|
|
viewsPath,
|
|
|
|
viewsPath,
|
|
|
@ -138,12 +139,13 @@ function handleErrors(err, req, res, next) {
|
|
|
|
// here and next(err) appropriately, or if
|
|
|
|
// here and next(err) appropriately, or if
|
|
|
|
// we possibly recovered from the error, simply next().
|
|
|
|
// we possibly recovered from the error, simply next().
|
|
|
|
console.error(err.stack);
|
|
|
|
console.error(err.stack);
|
|
|
|
|
|
|
|
|
|
|
|
var status = err.status || 500;
|
|
|
|
var status = err.status || 500;
|
|
|
|
res.status(status);
|
|
|
|
res.status(status);
|
|
|
|
|
|
|
|
|
|
|
|
res.json(status, {
|
|
|
|
req.flash('errorMessage', err.message);
|
|
|
|
error: err.message
|
|
|
|
|
|
|
|
});
|
|
|
|
res.redirect('500');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function catch404(req, res, next) {
|
|
|
|
function catch404(req, res, next) {
|
|
|
@ -190,6 +192,7 @@ module.exports = function(app, data) {
|
|
|
|
app.engine('tpl', templates.__express);
|
|
|
|
app.engine('tpl', templates.__express);
|
|
|
|
app.set('view engine', 'tpl');
|
|
|
|
app.set('view engine', 'tpl');
|
|
|
|
app.set('views', viewsPath);
|
|
|
|
app.set('views', viewsPath);
|
|
|
|
|
|
|
|
app.use(flash());
|
|
|
|
|
|
|
|
|
|
|
|
app.enable('view cache');
|
|
|
|
app.enable('view cache');
|
|
|
|
|
|
|
|
|
|
|
|