mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-16 20:43:01 +03:00
58bb111c56
closes #7168 - double check that page matches the page format in post-lookup - add tests
78 lines
2.3 KiB
JavaScript
78 lines
2.3 KiB
JavaScript
var _ = require('lodash'),
|
|
Promise = require('bluebird'),
|
|
url = require('url'),
|
|
routeMatch = require('path-match')(),
|
|
api = require('../../api'),
|
|
config = require('../../config'),
|
|
|
|
editFormat = '/:edit?';
|
|
|
|
function getEditFormat(linkStructure) {
|
|
return linkStructure.replace(/\/$/, '') + editFormat;
|
|
}
|
|
|
|
function postLookup(postUrl) {
|
|
var postPath = url.parse(postUrl).path,
|
|
postPermalink = config.theme.permalinks,
|
|
pagePermalink = '/:slug/',
|
|
isEditURL = false,
|
|
matchFuncPost,
|
|
matchFuncPage,
|
|
postParams,
|
|
params;
|
|
|
|
// Convert saved permalink into a path-match function
|
|
matchFuncPost = routeMatch(getEditFormat(postPermalink));
|
|
matchFuncPage = routeMatch(getEditFormat(pagePermalink));
|
|
|
|
postParams = matchFuncPost(postPath);
|
|
|
|
// Check if the path matches the permalink structure.
|
|
// If there are no matches found, test to see if this is a page instead
|
|
params = postParams || matchFuncPage(postPath);
|
|
|
|
// if there are no matches for either then return empty
|
|
if (params === false) {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
// If params contains edit, and it is equal to 'edit' this is an edit URL
|
|
if (params.edit && params.edit.toLowerCase() === 'edit') {
|
|
isEditURL = true;
|
|
} else if (params.edit !== undefined) {
|
|
// Unknown string in URL, return empty
|
|
return Promise.resolve();
|
|
}
|
|
|
|
// Sanitize params we're going to use to lookup the post.
|
|
params = _.pick(params, 'slug', 'id');
|
|
// Add author & tag
|
|
params.include = 'author,tags';
|
|
|
|
// Query database to find post
|
|
return api.posts.read(params).then(function then(result) {
|
|
var post = result.posts[0];
|
|
|
|
if (!post) {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
// CASE: we originally couldn't match the post based on date permalink and we tried to check if its a page
|
|
if (!post.page && !postParams) {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
// CASE: we only support /:slug format for pages
|
|
if (post.page && matchFuncPage(postPath) === false) {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
return {
|
|
post: post,
|
|
isEditURL: isEditURL
|
|
};
|
|
});
|
|
}
|
|
|
|
module.exports = postLookup;
|