mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-11 22:13:20 +03:00
1bd8c18a16
* moved url-utils from server to shared * updated imports of url-utils
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
const _ = require('lodash');
|
|
const xml = require('xml');
|
|
const moment = require('moment');
|
|
const urlUtils = require('../../../shared/url-utils');
|
|
const localUtils = require('./utils');
|
|
|
|
const XMLNS_DECLS = {
|
|
_attr: {
|
|
xmlns: 'http://www.sitemaps.org/schemas/sitemap/0.9'
|
|
}
|
|
};
|
|
|
|
class SiteMapIndexGenerator {
|
|
constructor(options) {
|
|
options = options || {};
|
|
this.types = options.types;
|
|
}
|
|
|
|
getXml() {
|
|
const urlElements = this.generateSiteMapUrlElements();
|
|
|
|
const data = {
|
|
// Concat the elements to the _attr declaration
|
|
sitemapindex: [XMLNS_DECLS].concat(urlElements)
|
|
};
|
|
|
|
// Return the xml
|
|
return localUtils.getDeclarations() + xml(data);
|
|
}
|
|
|
|
generateSiteMapUrlElements() {
|
|
return _.map(this.types, (resourceType) => {
|
|
const url = urlUtils.urlFor({relativeUrl: '/sitemap-' + resourceType.name + '.xml'}, true);
|
|
const lastModified = resourceType.lastModified;
|
|
|
|
return {
|
|
sitemap: [
|
|
{loc: url},
|
|
{lastmod: moment(lastModified).toISOString()}
|
|
]
|
|
};
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = SiteMapIndexGenerator;
|