mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
08479f3816
- The helpers folder was full of things used for rendering pages - It belongs as its own service so that we can see what it really does
93 lines
3.4 KiB
JavaScript
93 lines
3.4 KiB
JavaScript
const debug = require('@tryghost/debug')('services:routing:controllers:entry');
|
|
const url = require('url');
|
|
const config = require('../../../../shared/config');
|
|
const {routerManager} = require('../');
|
|
const urlUtils = require('../../../../shared/url-utils');
|
|
const dataService = require('../../data');
|
|
const renderer = require('../../rendering');
|
|
|
|
/**
|
|
* @description Entry controller.
|
|
* @param {Object} req
|
|
* @param {Object} res
|
|
* @param {Function} next
|
|
* @returns {Promise}
|
|
*/
|
|
module.exports = function entryController(req, res, next) {
|
|
debug('entryController', res.routerOptions);
|
|
|
|
return dataService.entryLookup(req.path, res.routerOptions, res.locals)
|
|
.then(function then(lookup) {
|
|
// Format data 1
|
|
const entry = lookup ? lookup.entry : false;
|
|
|
|
if (!entry) {
|
|
debug('no entry');
|
|
return next();
|
|
}
|
|
|
|
// CASE: postlookup can detect options for example /edit, unknown options get ignored and end in 404
|
|
if (lookup.isUnknownOption) {
|
|
debug('isUnknownOption');
|
|
return next();
|
|
}
|
|
|
|
// CASE: last param is of url is /edit, redirect to admin
|
|
if (lookup.isEditURL) {
|
|
if (!config.get('admin:redirects')) {
|
|
debug('is edit url but admin redirects are disabled');
|
|
return next();
|
|
}
|
|
|
|
debug('redirect. is edit url');
|
|
const resourceType = entry.page ? 'page' : 'post';
|
|
|
|
return urlUtils.redirectToAdmin(302, res, `/#/editor/${resourceType}/${entry.id}`);
|
|
}
|
|
|
|
/**
|
|
* CASE: check if type of router owns this resource
|
|
*
|
|
* Static pages have a hardcoded permalink, which is `/:slug/`.
|
|
* Imagine you define a collection under `/` with the permalink `/:slug/`.
|
|
*
|
|
* The router hierarchy is:
|
|
*
|
|
* 1. collections
|
|
* 2. static pages
|
|
*
|
|
* Both permalinks are registered in express. If you serve a static page, the
|
|
* collection router will try to serve this as a post resource.
|
|
*
|
|
* That's why we have to check against the router type.
|
|
*/
|
|
if (routerManager.getResourceById(entry.id).config.type !== res.routerOptions.resourceType) {
|
|
debug('not my resource type');
|
|
return next();
|
|
}
|
|
|
|
/**
|
|
* CASE: Permalink is not valid anymore, we redirect him permanently to the correct one
|
|
* This should only happen if you have date permalinks enabled and you change
|
|
* your publish date.
|
|
*
|
|
* @NOTE:
|
|
*
|
|
* Ensure we redirect to the correct post url including subdirectory.
|
|
*/
|
|
if (urlUtils.absoluteToRelative(entry.url, {withoutSubdirectory: true}) !== req.path) {
|
|
debug('redirect');
|
|
|
|
return urlUtils.redirect301(res, url.format({
|
|
pathname: url.parse(entry.url).pathname,
|
|
search: url.parse(req.originalUrl).search
|
|
}));
|
|
}
|
|
|
|
renderer.secure(req, entry);
|
|
|
|
return renderer.renderEntry(req, res)(entry);
|
|
})
|
|
.catch(renderer.handleError(next));
|
|
};
|