mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-03 03:55:26 +03:00
c5eda57f1e
refs #6589 - add internalAppsPath as a proper config path - middleware/routes will be setup for any internal apps which have the function - this should be refactored into some sort of proper hooks system as part of apps - internal apps get permission to do anything the proxy allows
50 lines
1.7 KiB
JavaScript
50 lines
1.7 KiB
JavaScript
var express = require('express'),
|
|
path = require('path'),
|
|
config = require('../config'),
|
|
frontend = require('../controllers/frontend'),
|
|
channels = require('../controllers/frontend/channels'),
|
|
utils = require('../utils'),
|
|
|
|
frontendRoutes;
|
|
|
|
frontendRoutes = function frontendRoutes() {
|
|
var router = express.Router(),
|
|
subdir = config.paths.subdir,
|
|
routeKeywords = config.routeKeywords;
|
|
|
|
// ### Admin routes
|
|
router.get(/^\/(logout|signout)\/$/, function redirectToSignout(req, res) {
|
|
utils.redirect301(res, subdir + '/ghost/signout/');
|
|
});
|
|
router.get(/^\/signup\/$/, function redirectToSignup(req, res) {
|
|
utils.redirect301(res, subdir + '/ghost/signup/');
|
|
});
|
|
|
|
// redirect to /ghost and let that do the authentication to prevent redirects to /ghost//admin etc.
|
|
router.get(/^\/((ghost-admin|admin|wp-admin|dashboard|signin|login)\/?)$/, function redirectToAdmin(req, res) {
|
|
utils.redirect301(res, subdir + '/ghost/');
|
|
});
|
|
|
|
// Post Live Preview
|
|
router.get('/' + routeKeywords.preview + '/:uuid', frontend.preview);
|
|
|
|
// Channels
|
|
router.use(channels.router());
|
|
|
|
// Default
|
|
router.get('*', frontend.single);
|
|
|
|
// setup routes for internal apps
|
|
// @TODO: refactor this to be a proper app route hook for internal & external apps
|
|
config.internalApps.forEach(function (appName) {
|
|
var app = require(path.join(config.paths.internalAppPath, appName));
|
|
if (app.hasOwnProperty('setupRoutes')) {
|
|
app.setupRoutes(router);
|
|
}
|
|
});
|
|
|
|
return router;
|
|
};
|
|
|
|
module.exports = frontendRoutes;
|