mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
3b6cdc2bc5
refs https://github.com/TryGhost/Toolbox/issues/308 - we have a pattern of using plurals around Ghost but this was singular - this shouldn't change any API functionality, it's just code refactoring
50 lines
1.3 KiB
JavaScript
50 lines
1.3 KiB
JavaScript
const ParentRouter = require('./ParentRouter');
|
|
const urlUtils = require('../../../shared/url-utils');
|
|
const controllers = require('./controllers');
|
|
|
|
/**
|
|
* @description Preview Router.
|
|
*/
|
|
class PreviewRouter extends ParentRouter {
|
|
constructor(RESOURCE_CONFIG) {
|
|
super('PreviewRouter');
|
|
|
|
this.RESOURCE_CONFIG = RESOURCE_CONFIG.QUERY.previews;
|
|
|
|
// @NOTE: hardcoded, not configureable
|
|
this.route = {value: '/p/'};
|
|
|
|
this._registerRoutes();
|
|
}
|
|
|
|
/**
|
|
* @description Register all routes of this router.
|
|
* @private
|
|
*/
|
|
_registerRoutes() {
|
|
// REGISTER: prepare context
|
|
this.router().use(this._prepareContext.bind(this));
|
|
|
|
// REGISTER: actual previews route
|
|
this.mountRoute(urlUtils.urlJoin(this.route.value, ':uuid', ':options?'), controllers.previews);
|
|
}
|
|
|
|
/**
|
|
* @description Prepare context for further middleware/controllers.
|
|
* @param {Object} req
|
|
* @param {Object} res
|
|
* @param {Function} next
|
|
* @private
|
|
*/
|
|
_prepareContext(req, res, next) {
|
|
res.routerOptions = {
|
|
type: 'entry',
|
|
query: this.RESOURCE_CONFIG,
|
|
context: ['preview']
|
|
};
|
|
|
|
next();
|
|
}
|
|
}
|
|
|
|
module.exports = PreviewRouter;
|