mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
23f59c341c
no issue - removed the `routeKeywords` property from the config and used hard coded keywords. - removed `routeKeywords` from public configuration API endpoint, as it's no longer used in the Admin.
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
var urlService = require('../../services/url'),
|
|
common = require('../../lib/common'),
|
|
middleware = require('./lib/middleware'),
|
|
router = require('./lib/router'),
|
|
registerHelpers = require('./lib/helpers'),
|
|
// routeKeywords.private: 'private'
|
|
PRIVATE_KEYWORD = 'private',
|
|
checkSubdir;
|
|
|
|
checkSubdir = function checkSubdir() {
|
|
var paths;
|
|
|
|
if (urlService.utils.getSubdir()) {
|
|
paths = urlService.utils.getSubdir().split('/');
|
|
|
|
if (paths.pop() === PRIVATE_KEYWORD) {
|
|
common.logging.error(new common.errors.GhostError({
|
|
message: common.i18n.t('errors.config.urlCannotContainPrivateSubdir.error'),
|
|
context: common.i18n.t('errors.config.urlCannotContainPrivateSubdir.description'),
|
|
help: common.i18n.t('errors.config.urlCannotContainPrivateSubdir.help')
|
|
}));
|
|
|
|
// @TODO: why
|
|
process.exit(0);
|
|
}
|
|
}
|
|
};
|
|
|
|
module.exports = {
|
|
activate: function activate(ghost) {
|
|
var privateRoute = '/' + PRIVATE_KEYWORD + '/';
|
|
|
|
checkSubdir();
|
|
|
|
ghost.routeService.registerRouter(privateRoute, router);
|
|
|
|
registerHelpers(ghost);
|
|
},
|
|
|
|
setupMiddleware: function setupMiddleware(siteApp) {
|
|
siteApp.use(middleware.checkIsPrivate);
|
|
siteApp.use(middleware.filterPrivateRoutes);
|
|
}
|
|
};
|