mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
4ca87f6336
closes #4591 - switches to using author cover image - adds a protocol of http if using a protocol relative url
71 lines
2.2 KiB
JavaScript
71 lines
2.2 KiB
JavaScript
var _ = require('lodash'),
|
|
path = require('path'),
|
|
api = require('../../api'),
|
|
BaseMapGenerator = require('./base-generator'),
|
|
validator = require('validator'),
|
|
config = require('../../config');
|
|
|
|
// A class responsible for generating a sitemap from posts and keeping it updated
|
|
function UserMapGenerator(opts) {
|
|
_.extend(this, _.defaults(opts || {}, UserMapGenerator.Defaults));
|
|
|
|
BaseMapGenerator.apply(this, arguments);
|
|
}
|
|
|
|
UserMapGenerator.Defaults = {
|
|
// TODO?
|
|
};
|
|
|
|
// Inherit from the base generator class
|
|
_.extend(UserMapGenerator.prototype, BaseMapGenerator.prototype);
|
|
|
|
_.extend(UserMapGenerator.prototype, {
|
|
getData: function () {
|
|
return api.users.browse({
|
|
context: {
|
|
internal: true
|
|
},
|
|
limit: 'all'
|
|
}).then(function (resp) {
|
|
return resp.users;
|
|
});
|
|
},
|
|
|
|
getUrlForDatum: function (user, permalinks) {
|
|
return config.urlFor('author', {author: user, permalinks: permalinks}, true);
|
|
},
|
|
|
|
getPriorityForDatum: function () {
|
|
// TODO: We could influence this with meta information
|
|
return 0.6;
|
|
},
|
|
|
|
createUrlNodeFromDatum: function (datum) {
|
|
var orig = BaseMapGenerator.prototype.createUrlNodeFromDatum.apply(this, arguments),
|
|
imageUrl,
|
|
imageEl;
|
|
|
|
// Check for image and add it
|
|
if (datum.cover) {
|
|
// Grab the image url
|
|
imageUrl = this.getUrlForImage(datum.cover);
|
|
imageUrl = imageUrl.substring(0, 2) === '//' ? 'http:' + imageUrl : imageUrl;
|
|
if (validator.isURL(imageUrl, {protocols: ['http', 'https'], require_protocol: true})) {
|
|
// Create the weird xml node syntax structure that is expected
|
|
imageEl = [
|
|
{'image:loc': imageUrl},
|
|
{'image:caption': path.basename(imageUrl)}
|
|
];
|
|
// Add the node to the url xml node
|
|
orig.url.push({
|
|
'image:image': imageEl
|
|
});
|
|
}
|
|
}
|
|
|
|
return orig;
|
|
}
|
|
});
|
|
|
|
module.exports = UserMapGenerator;
|