mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 10:53:34 +03:00
87c01c131b
closes https://github.com/TryGhost/Ghost/issues/9674 - with dynamic routing the first collection get's the "index" context attached - the index context signalises the main post listening route (first collection) - this behaviour was present < 1.24 - we have to keep this behaviour
72 lines
2.3 KiB
JavaScript
72 lines
2.3 KiB
JavaScript
const debug = require('ghost-ignition').debug('services:routing:bootstrap');
|
|
const _ = require('lodash');
|
|
const settingsService = require('../settings');
|
|
const StaticRoutesRouter = require('./StaticRoutesRouter');
|
|
const StaticPagesRouter = require('./StaticPagesRouter');
|
|
const CollectionRouter = require('./CollectionRouter');
|
|
const TaxonomyRouter = require('./TaxonomyRouter');
|
|
const PreviewRouter = require('./PreviewRouter');
|
|
const ParentRouter = require('./ParentRouter');
|
|
|
|
const registry = require('./registry');
|
|
|
|
/**
|
|
* Create a set of default and dynamic routers defined in the routing yaml.
|
|
*
|
|
* @TODO:
|
|
* - is the PreviewRouter an app?
|
|
*/
|
|
module.exports = function bootstrap() {
|
|
debug('bootstrap');
|
|
|
|
registry.resetAllRouters();
|
|
registry.resetAllRoutes();
|
|
|
|
const siteRouter = new ParentRouter('site');
|
|
const previewRouter = new PreviewRouter();
|
|
|
|
siteRouter.mountRouter(previewRouter.router());
|
|
|
|
registry.setRouter('siteRouter', siteRouter);
|
|
registry.setRouter('previewRouter', previewRouter);
|
|
|
|
const dynamicRoutes = settingsService.get('routes');
|
|
|
|
_.each(dynamicRoutes.taxonomies, (value, key) => {
|
|
const taxonomyRouter = new TaxonomyRouter(key, value);
|
|
siteRouter.mountRouter(taxonomyRouter.router());
|
|
|
|
registry.setRouter(taxonomyRouter.identifier, taxonomyRouter);
|
|
});
|
|
|
|
_.each(dynamicRoutes.routes, (value, key) => {
|
|
const staticRoutesRouter = new StaticRoutesRouter(key, value);
|
|
siteRouter.mountRouter(staticRoutesRouter.router());
|
|
|
|
registry.setRouter(staticRoutesRouter.identifier, staticRoutesRouter);
|
|
});
|
|
|
|
_.each(dynamicRoutes.collections, (value, key) => {
|
|
const collectionRouter = new CollectionRouter(key, value, {
|
|
firstCollection: Object.keys(dynamicRoutes.collections).indexOf(key) === 0
|
|
});
|
|
|
|
siteRouter.mountRouter(collectionRouter.router());
|
|
|
|
registry.setRouter(collectionRouter.identifier, collectionRouter);
|
|
});
|
|
|
|
const staticPagesRouter = new StaticPagesRouter();
|
|
siteRouter.mountRouter(staticPagesRouter.router());
|
|
|
|
registry.setRouter('staticPagesRouter', staticPagesRouter);
|
|
|
|
const appRouter = new ParentRouter('apps');
|
|
siteRouter.mountRouter(appRouter.router());
|
|
|
|
registry.setRouter('appRouter', appRouter);
|
|
|
|
debug('Routes:', registry.getAllRoutes());
|
|
return siteRouter.router();
|
|
};
|