You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.0 KiB
JavaScript
73 lines
2.0 KiB
JavaScript
12 years ago
|
var path = require('path'),
|
||
|
async = require('async'),
|
||
|
sm = require('sitemap'),
|
||
|
url = require('url'),
|
||
|
categories = require('./categories'),
|
||
|
topics = require('./topics'),
|
||
|
sitemap = {
|
||
|
getStaticUrls: function(callback) {
|
||
|
var relative_path = global.nconf.get('relative_path');
|
||
|
|
||
|
callback(null, [
|
||
|
{ url: relative_path, changefreq: 'weekly', priority: '0.6' },
|
||
|
{ url: path.join(relative_path, 'recent'), changefreq: 'daily', priority: '0.4' },
|
||
|
{ url: path.join(relative_path, 'users'), changefreq: 'daily', priority: '0.4' }
|
||
|
]);
|
||
|
},
|
||
|
getDynamicUrls: function(callback) {
|
||
|
var relative_path = global.nconf.get('relative_path'),
|
||
|
returnUrls = [];
|
||
|
|
||
|
async.parallel([
|
||
|
function(next) {
|
||
|
var categoryUrls = [];
|
||
|
categories.getAllCategories(function(data) {
|
||
|
data.categories.forEach(function(category) {
|
||
|
categoryUrls.push({
|
||
|
url: path.join(relative_path, 'category', category.slug),
|
||
|
changefreq: 'weekly',
|
||
|
priority: '0.4'
|
||
|
});
|
||
|
});
|
||
|
|
||
|
next(null, categoryUrls);
|
||
|
}, 0);
|
||
|
},
|
||
|
function(next) {
|
||
|
var topicUrls = [];
|
||
|
topics.getAllTopics(null, null, function(topics) {
|
||
|
topics.forEach(function(topic) {
|
||
|
topicUrls.push({
|
||
|
url: path.join(relative_path, 'topic', topic.slug),
|
||
|
changefreq: 'daily',
|
||
|
priority: '0.6'
|
||
|
});
|
||
|
});
|
||
|
|
||
|
next(null, topicUrls);
|
||
|
});
|
||
|
}
|
||
|
], function(err, data) {
|
||
|
if (!err) {
|
||
|
returnUrls = returnUrls.concat(data[0]).concat(data[1]);
|
||
|
}
|
||
|
|
||
|
callback(null, returnUrls);
|
||
|
});
|
||
|
},
|
||
|
render: function(callback) {
|
||
|
async.parallel([sitemap.getStaticUrls, sitemap.getDynamicUrls], function(err, urls) {
|
||
|
var urls = urls[0].concat(urls[1]),
|
||
|
map = sm.createSitemap({
|
||
|
hostname: global.nconf.get('base_url') + (global.nconf.get('use_port') ? ':' + global.nconf.get('port') : '') + '/',
|
||
|
cacheTime: 600000,
|
||
|
urls: urls
|
||
|
}),
|
||
|
xml = map.toXML(function(xml) {
|
||
|
callback(xml);
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = sitemap;
|