mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 09:52:09 +03:00
5dac1c97fc
refs #5091, refs #9192 - render channel was always a weird file - now it's clearly 2 things - we're slowly getting towards closing #5091... 🎉 - added some extra tests
38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
var utils = require('../utils'),
|
|
filters = require('../filters'),
|
|
handleError = require('./frontend/error'),
|
|
postLookup = require('./frontend/post-lookup'),
|
|
renderPost = require('./frontend/render-post'),
|
|
setRequestIsSecure = require('./frontend/secure');
|
|
|
|
module.exports = function singleController(req, res, next) {
|
|
// Query database to find post
|
|
return postLookup(req.path).then(function then(lookup) {
|
|
var post = lookup ? lookup.post : false;
|
|
|
|
if (!post) {
|
|
return next();
|
|
}
|
|
|
|
// CASE: postlookup can detect options for example /edit, unknown options get ignored and end in 404
|
|
if (lookup.isUnknownOption) {
|
|
return next();
|
|
}
|
|
|
|
// CASE: last param is of url is /edit, redirect to admin
|
|
if (lookup.isEditURL) {
|
|
return utils.url.redirectToAdmin(302, res, '#/editor/' + post.id);
|
|
}
|
|
|
|
// CASE: permalink is not valid anymore, we redirect him permanently to the correct one
|
|
if (post.url !== req.path) {
|
|
return utils.url.redirect301(res, post.url);
|
|
}
|
|
|
|
setRequestIsSecure(req, post);
|
|
|
|
filters.doFilter('prePostsRender', post, res.locals)
|
|
.then(renderPost(req, res));
|
|
}).catch(handleError(next));
|
|
};
|