2013-11-26 00:31:18 +04:00
|
|
|
// # Custom Middleware
|
|
|
|
// The following custom middleware functions are all unit testable, and have accompanying unit tests in
|
|
|
|
// middleware_spec.js
|
2013-10-05 14:17:08 +04:00
|
|
|
|
2014-02-05 12:40:30 +04:00
|
|
|
var _ = require('lodash'),
|
2013-11-05 09:41:36 +04:00
|
|
|
express = require('express'),
|
2013-12-04 06:47:39 +04:00
|
|
|
busboy = require('./ghost-busboy'),
|
2013-11-20 17:58:52 +04:00
|
|
|
config = require('../config'),
|
2013-11-05 09:41:36 +04:00
|
|
|
path = require('path'),
|
2013-12-06 12:51:35 +04:00
|
|
|
api = require('../api'),
|
2013-12-31 03:13:25 +04:00
|
|
|
|
|
|
|
expressServer,
|
|
|
|
ONE_HOUR_MS = 60 * 60 * 1000;
|
2013-10-05 14:17:08 +04:00
|
|
|
|
|
|
|
function isBlackListedFileType(file) {
|
2013-10-25 02:55:51 +04:00
|
|
|
var blackListedFileTypes = ['.hbs', '.md', '.json'],
|
2013-10-05 14:17:08 +04:00
|
|
|
ext = path.extname(file);
|
|
|
|
return _.contains(blackListedFileTypes, ext);
|
|
|
|
}
|
|
|
|
|
2013-12-06 18:13:15 +04:00
|
|
|
function cacheServer(server) {
|
|
|
|
expressServer = server;
|
|
|
|
}
|
|
|
|
|
2013-10-05 14:17:08 +04:00
|
|
|
var middleware = {
|
|
|
|
|
2013-11-05 09:41:36 +04:00
|
|
|
// ### Auth Middleware
|
|
|
|
// Authenticate a request by redirecting to login if not logged in.
|
|
|
|
// We strip /ghost/ out of the redirect parameter for neatness
|
|
|
|
auth: function (req, res, next) {
|
|
|
|
if (!req.session.user) {
|
2013-11-26 00:31:18 +04:00
|
|
|
var reqPath = req.path.replace(/^\/ghost\/?/gi, ''),
|
2013-11-05 09:41:36 +04:00
|
|
|
redirect = '',
|
|
|
|
msg;
|
|
|
|
|
2013-12-06 12:51:35 +04:00
|
|
|
return api.notifications.browse().then(function (notifications) {
|
|
|
|
if (reqPath !== '') {
|
|
|
|
msg = {
|
|
|
|
type: 'error',
|
|
|
|
message: 'Please Sign In',
|
|
|
|
status: 'passive',
|
|
|
|
id: 'failedauth'
|
|
|
|
};
|
|
|
|
// let's only add the notification once
|
|
|
|
if (!_.contains(_.pluck(notifications, 'id'), 'failedauth')) {
|
|
|
|
api.notifications.add(msg);
|
|
|
|
}
|
|
|
|
redirect = '?r=' + encodeURIComponent(reqPath);
|
2013-11-05 09:41:36 +04:00
|
|
|
}
|
2013-12-28 20:01:08 +04:00
|
|
|
return res.redirect(config.paths().subdir + '/ghost/signin/' + redirect);
|
2013-12-06 12:51:35 +04:00
|
|
|
});
|
2013-11-05 09:41:36 +04:00
|
|
|
}
|
|
|
|
next();
|
|
|
|
},
|
|
|
|
|
|
|
|
// ## AuthApi Middleware
|
|
|
|
// Authenticate a request to the API by responding with a 401 and json error details
|
|
|
|
authAPI: function (req, res, next) {
|
|
|
|
if (!req.session.user) {
|
|
|
|
res.json(401, { error: 'Please sign in' });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
next();
|
|
|
|
},
|
|
|
|
|
|
|
|
// Check if we're logged in, and if so, redirect people back to dashboard
|
|
|
|
// Login and signup forms in particular
|
|
|
|
redirectToDashboard: function (req, res, next) {
|
|
|
|
if (req.session.user) {
|
2013-12-28 20:01:08 +04:00
|
|
|
return res.redirect(config.paths().subdir + '/ghost/');
|
2013-11-05 09:41:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
next();
|
|
|
|
},
|
|
|
|
|
|
|
|
// While we're here, let's clean up on aisle 5
|
|
|
|
// That being ghost.notifications, and let's remove the passives from there
|
|
|
|
// plus the local messages, as they have already been added at this point
|
|
|
|
// otherwise they'd appear one too many times
|
|
|
|
cleanNotifications: function (req, res, next) {
|
|
|
|
/*jslint unparam:true*/
|
2013-12-06 12:51:35 +04:00
|
|
|
api.notifications.browse().then(function (notifications) {
|
|
|
|
_.each(notifications, function (notification) {
|
|
|
|
if (notification.status === 'passive') {
|
|
|
|
api.notifications.destroy(notification);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
next();
|
2013-11-05 09:41:36 +04:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2013-12-31 03:13:25 +04:00
|
|
|
// ### CacheControl Middleware
|
|
|
|
// provide sensible cache control headers
|
|
|
|
cacheControl: function (options) {
|
2013-11-05 09:41:36 +04:00
|
|
|
/*jslint unparam:true*/
|
2013-12-31 03:13:25 +04:00
|
|
|
var profiles = {
|
|
|
|
'public': 'public, max-age=0',
|
|
|
|
'private': 'no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0'
|
|
|
|
},
|
|
|
|
output;
|
|
|
|
|
|
|
|
if (_.isString(options) && profiles.hasOwnProperty(options)) {
|
|
|
|
output = profiles[options];
|
|
|
|
}
|
2013-11-05 09:41:36 +04:00
|
|
|
|
2013-12-31 03:13:25 +04:00
|
|
|
return function cacheControlHeaders(req, res, next) {
|
|
|
|
if (output) {
|
|
|
|
res.set({'Cache-Control': output});
|
|
|
|
}
|
|
|
|
next();
|
|
|
|
};
|
2013-11-05 09:41:36 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
// ### whenEnabled Middleware
|
|
|
|
// Selectively use middleware
|
|
|
|
// From https://github.com/senchalabs/connect/issues/676#issuecomment-9569658
|
|
|
|
whenEnabled: function (setting, fn) {
|
|
|
|
return function settingEnabled(req, res, next) {
|
2013-12-06 18:13:15 +04:00
|
|
|
// Set from server/middleware/index.js for now
|
|
|
|
if (expressServer.enabled(setting)) {
|
2013-11-05 09:41:36 +04:00
|
|
|
fn(req, res, next);
|
|
|
|
} else {
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2013-11-20 17:58:52 +04:00
|
|
|
staticTheme: function () {
|
2013-10-05 14:17:08 +04:00
|
|
|
return function blackListStatic(req, res, next) {
|
|
|
|
if (isBlackListedFileType(req.url)) {
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
|
2013-11-20 17:58:52 +04:00
|
|
|
return middleware.forwardToExpressStatic(req, res, next);
|
2013-10-05 14:17:08 +04:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
// to allow unit testing
|
2013-11-20 17:58:52 +04:00
|
|
|
forwardToExpressStatic: function (req, res, next) {
|
2013-12-06 12:51:35 +04:00
|
|
|
api.settings.read('activeTheme').then(function (activeTheme) {
|
2013-12-31 03:13:25 +04:00
|
|
|
// For some reason send divides the max age number by 1000
|
|
|
|
express['static'](path.join(config.paths().themePath, activeTheme.value), {maxAge: ONE_HOUR_MS})(req, res, next);
|
2013-12-06 12:51:35 +04:00
|
|
|
});
|
2013-11-26 13:38:54 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
conditionalCSRF: function (req, res, next) {
|
|
|
|
var csrf = express.csrf();
|
|
|
|
// CSRF is needed for admin only
|
|
|
|
if (res.isAdmin) {
|
|
|
|
csrf(req, res, next);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
next();
|
2013-12-04 06:47:39 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
busboy: busboy
|
2013-10-05 14:17:08 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = middleware;
|
2013-12-06 18:13:15 +04:00
|
|
|
module.exports.cacheServer = cacheServer;
|