Ghost/core/frontend/services/sitemap/manager.js
Vikas Potluri 4ac88dce10
Refactored common lib import to use destructuring (#11835)
* refactored `core/frontend/apps` to destructure common imports
* refactored `core/frontend/services/{apps, redirects, routing}` to destructure common imports
* refactored `core/frontend/services/settings` to destructure common imports
* refactored remaining `core/frontend/services` to destructure common imports
* refactored `core/server/adapters` to destructure common imports
* refactored `core/server/data/{db, exporter, schema, validation}` to destructure common imports
* refactored `core/server/data/importer` to destructure common imports
* refactored `core/server/models/{base, plugins, relations}` to destructure common imports
* refactored remaining `core/server/models` to destructure common imports
* refactored `core/server/api/canary/utils/serializers/output` to destructure common imports
* refactored remaining `core/server/api/canary/utils` to destructure common imports
* refactored remaining `core/server/api/canary` to destructure common imports
* refactored `core/server/api/shared` to destructure common imports
* refactored `core/server/api/v2/utils` to destructure common imports
* refactored remaining `core/server/api/v2` to destructure common imports
* refactored `core/frontend/meta` to destructure common imports
* fixed some tests referencing `common.errors` instead of `@tryghost/errors`
   - Not all of them need to be updated; only updating the ones that are
causing failures
* fixed errors import being shadowed by local scope
2020-05-22 19:22:20 +01:00

81 lines
2.5 KiB
JavaScript

const {events} = require('../../../server/lib/common');
const IndexMapGenerator = require('./index-generator');
const PagesMapGenerator = require('./page-generator');
const PostsMapGenerator = require('./post-generator');
const UsersMapGenerator = require('./user-generator');
const TagsMapGenerator = require('./tag-generator');
class SiteMapManager {
constructor(options) {
options = options || {};
this.pages = options.pages || this.createPagesGenerator(options);
this.posts = options.posts || this.createPostsGenerator(options);
this.users = this.authors = options.authors || this.createUsersGenerator(options);
this.tags = options.tags || this.createTagsGenerator(options);
this.index = options.index || this.createIndexGenerator(options);
events.on('router.created', (router) => {
if (router.name === 'StaticRoutesRouter') {
this.pages.addUrl(router.getRoute({absolute: true}), {id: router.identifier, staticRoute: true});
}
if (router.name === 'CollectionRouter') {
this.pages.addUrl(router.getRoute({absolute: true}), {id: router.identifier, staticRoute: false});
}
});
events.on('url.added', (obj) => {
this[obj.resource.config.type].addUrl(obj.url.absolute, obj.resource.data);
});
events.on('url.removed', (obj) => {
this[obj.resource.config.type].removeUrl(obj.url.absolute, obj.resource.data);
});
events.on('routers.reset', () => {
this.pages && this.pages.reset();
this.posts && this.posts.reset();
this.users && this.users.reset();
this.tags && this.tags.reset();
});
}
createIndexGenerator() {
return new IndexMapGenerator({
types: {
pages: this.pages,
posts: this.posts,
authors: this.authors,
tags: this.tags
}
});
}
createPagesGenerator(options) {
return new PagesMapGenerator(options);
}
createPostsGenerator(options) {
return new PostsMapGenerator(options);
}
createUsersGenerator(options) {
return new UsersMapGenerator(options);
}
createTagsGenerator(options) {
return new TagsMapGenerator(options);
}
getIndexXml() {
return this.index.getXml();
}
getSiteMapXml(type) {
return this[type].getXml();
}
}
module.exports = SiteMapManager;