df7e64fafa
refs #10790 - Moved /core/apps into core/frontend - Moved /core/server/helpers to /core/frontend/helpers along with /core/server/services/themes - Changed helper location in overrides - Moved /core/server/services/routing to /core/frontend/services - Moved /core/server/services/url to /core/frontend/services - Moved /core/server/data/meta to /core/frontend/meta - Moved /core/server/services/rss to /core/frontend/services - Moved /core/server/data/xml to /core/frontend/services
172 lines
4.6 KiB
JavaScript
172 lines
4.6 KiB
JavaScript
const _ = require('lodash'),
|
|
xml = require('xml'),
|
|
moment = require('moment'),
|
|
path = require('path'),
|
|
urlUtils = require('../../../server/lib/url-utils'),
|
|
localUtils = require('./utils');
|
|
|
|
// Sitemap specific xml namespace declarations that should not change
|
|
const XMLNS_DECLS = {
|
|
_attr: {
|
|
xmlns: 'http://www.sitemaps.org/schemas/sitemap/0.9',
|
|
'xmlns:image': 'http://www.google.com/schemas/sitemap-image/1.1'
|
|
}
|
|
};
|
|
|
|
class BaseSiteMapGenerator {
|
|
constructor() {
|
|
this.nodeLookup = {};
|
|
this.nodeTimeLookup = {};
|
|
this.siteMapContent = null;
|
|
this.lastModified = 0;
|
|
}
|
|
|
|
generateXmlFromNodes() {
|
|
var self = this,
|
|
// Get a mapping of node to timestamp
|
|
timedNodes = _.map(this.nodeLookup, function (node, id) {
|
|
return {
|
|
id: id,
|
|
// Using negative here to sort newest to oldest
|
|
ts: -(self.nodeTimeLookup[id] || 0),
|
|
node: node
|
|
};
|
|
}, []),
|
|
// Sort nodes by timestamp
|
|
sortedNodes = _.sortBy(timedNodes, 'ts'),
|
|
// Grab just the nodes
|
|
urlElements = _.map(sortedNodes, 'node'),
|
|
data = {
|
|
// Concat the elements to the _attr declaration
|
|
urlset: [XMLNS_DECLS].concat(urlElements)
|
|
};
|
|
|
|
// Return the xml
|
|
return localUtils.getDeclarations() + xml(data);
|
|
}
|
|
|
|
addUrl(url, datum) {
|
|
const node = this.createUrlNodeFromDatum(url, datum);
|
|
|
|
if (node) {
|
|
this.updateLastModified(datum);
|
|
this.updateLookups(datum, node);
|
|
// force regeneration of xml
|
|
this.siteMapContent = null;
|
|
}
|
|
}
|
|
|
|
removeUrl(url, datum) {
|
|
this.removeFromLookups(datum);
|
|
|
|
// force regeneration of xml
|
|
this.siteMapContent = null;
|
|
this.lastModified = Date.now();
|
|
}
|
|
|
|
getLastModifiedForDatum(datum) {
|
|
if (datum.updated_at || datum.published_at || datum.created_at) {
|
|
const modifiedDate = datum.updated_at || datum.published_at || datum.created_at;
|
|
|
|
return moment(modifiedDate);
|
|
} else {
|
|
return moment();
|
|
}
|
|
}
|
|
|
|
updateLastModified(datum) {
|
|
const lastModified = this.getLastModifiedForDatum(datum);
|
|
|
|
if (lastModified > this.lastModified) {
|
|
this.lastModified = lastModified;
|
|
}
|
|
}
|
|
|
|
createUrlNodeFromDatum(url, datum) {
|
|
let node, imgNode;
|
|
|
|
node = {
|
|
url: [
|
|
{loc: url},
|
|
{lastmod: moment(this.getLastModifiedForDatum(datum)).toISOString()}
|
|
]
|
|
};
|
|
|
|
imgNode = this.createImageNodeFromDatum(datum);
|
|
|
|
if (imgNode) {
|
|
node.url.push(imgNode);
|
|
}
|
|
|
|
return node;
|
|
}
|
|
|
|
createImageNodeFromDatum(datum) {
|
|
// Check for cover first because user has cover but the rest only have image
|
|
var image = datum.cover_image || datum.profile_image || datum.feature_image,
|
|
imageUrl,
|
|
imageEl;
|
|
|
|
if (!image) {
|
|
return;
|
|
}
|
|
|
|
// Grab the image url
|
|
imageUrl = urlUtils.urlFor('image', {image: image}, true);
|
|
|
|
// Verify the url structure
|
|
if (!this.validateImageUrl(imageUrl)) {
|
|
return;
|
|
}
|
|
|
|
// Create the weird xml node syntax structure that is expected
|
|
imageEl = [
|
|
{'image:loc': imageUrl},
|
|
{'image:caption': path.basename(imageUrl)}
|
|
];
|
|
|
|
// Return the node to be added to the url xml node
|
|
return {
|
|
'image:image': imageEl
|
|
};
|
|
}
|
|
|
|
validateImageUrl(imageUrl) {
|
|
return !!imageUrl;
|
|
}
|
|
|
|
getXml() {
|
|
if (this.siteMapContent) {
|
|
return this.siteMapContent;
|
|
}
|
|
|
|
const content = this.generateXmlFromNodes();
|
|
this.siteMapContent = content;
|
|
return content;
|
|
}
|
|
|
|
/**
|
|
* @NOTE
|
|
* The url service currently has no url update event.
|
|
* It removes and adds the url. If the url service extends it's
|
|
* feature set, we can detect if a node has changed.
|
|
*/
|
|
updateLookups(datum, node) {
|
|
this.nodeLookup[datum.id] = node;
|
|
this.nodeTimeLookup[datum.id] = this.getLastModifiedForDatum(datum);
|
|
}
|
|
|
|
removeFromLookups(datum) {
|
|
delete this.nodeLookup[datum.id];
|
|
delete this.nodeTimeLookup[datum.id];
|
|
}
|
|
|
|
reset() {
|
|
this.nodeLookup = {};
|
|
this.nodeTimeLookup = {};
|
|
this.siteMapContent = null;
|
|
}
|
|
}
|
|
|
|
module.exports = BaseSiteMapGenerator;
|