mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 09:22:49 +03:00
01e833376b
refs https://github.com/TryGhost/Team/issues/1044 refs https://github.com/TryGhost/Ghost/pull/13298 - This splits the sitemaps according to the limit set by Google https://developers.google.com/search/docs/advanced/sitemaps/large-sitemaps Co-authored-by: - Kevin Ansfield (@kevinansfield)
45 lines
1.6 KiB
JavaScript
45 lines
1.6 KiB
JavaScript
const config = require('../../../shared/config');
|
|
const Manager = require('./manager');
|
|
const manager = new Manager();
|
|
|
|
// Responsible for handling requests for sitemap files
|
|
module.exports = function handler(siteApp) {
|
|
const verifyResourceType = function verifyResourceType(req, res, next) {
|
|
const resourceWithoutPage = req.params.resource.replace(/-\d+$/, '');
|
|
if (!Object.prototype.hasOwnProperty.call(manager, resourceWithoutPage)) {
|
|
return res.sendStatus(404);
|
|
}
|
|
|
|
next();
|
|
};
|
|
|
|
siteApp.get('/sitemap.xml', function sitemapXML(req, res) {
|
|
res.set({
|
|
'Cache-Control': 'public, max-age=' + config.get('caching:sitemap:maxAge'),
|
|
'Content-Type': 'text/xml'
|
|
});
|
|
|
|
res.send(manager.getIndexXml());
|
|
});
|
|
|
|
siteApp.get('/sitemap-:resource.xml', verifyResourceType, function sitemapResourceXML(req, res) {
|
|
const type = req.params.resource.replace(/-\d+$/, '');
|
|
const pageParam = (req.params.resource.match(/-(\d+)$/) || [null, null])[1];
|
|
const page = pageParam ? parseInt(pageParam, 10) : 1;
|
|
|
|
const content = manager.getSiteMapXml(type, page);
|
|
// Prevent x-1.xml as it is a duplicate of x.xml and empty sitemaps
|
|
// (except for the first page so that at least one sitemap exists per type)
|
|
if (pageParam === '1' || (!content && page !== 1)) {
|
|
return res.sendStatus(404);
|
|
}
|
|
|
|
res.set({
|
|
'Cache-Control': 'public, max-age=' + config.get('caching:sitemap:maxAge'),
|
|
'Content-Type': 'text/xml'
|
|
});
|
|
|
|
res.send(content);
|
|
});
|
|
};
|