-
Notifications
You must be signed in to change notification settings - Fork 114
/
sitemap.js
62 lines (56 loc) · 1.36 KB
/
sitemap.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
const sitemap = require('algolia-sitemap');
const fs = require('fs');
if (!process.env.ALGOLIA_APIKEY) {
throw new Error('no algolia apiKey configured');
}
// You need an API key with `browse` permission
const algoliaConfig = {
appId: 'ICHFIJRDZF',
apiKey: process.env.ALGOLIA_APIKEY,
indexName: 'seata',
};
const lastmod = new Date().toISOString();
const changefreq = 'daily';
const homeUrls = [
'https://seata.apache.org/',
'https://seata.apache.org/zh-cn/',
];
const urls = new Set();
// Turn a record into a sitemap entry
function hitToParams({ url_without_anchor }) {
if (urls.has(url_without_anchor)) {
return;
}
urls.add(url_without_anchor);
const priority = homeUrls.includes(url_without_anchor) ? 1 : 0.5;
return {
loc: url_without_anchor,
lastmod,
changefreq,
priority,
};
}
const call = () => {
return new Promise(async (resolve) => {
await sitemap({
algoliaConfig,
hitToParams,
// The URL of the sitemaps directory
sitemapLoc: 'https://seata.apache.org/sitemaps',
// The directory with all sitemaps (default: `sitemaps`)
outputFolder: 'sitemaps',
// ...
});
resolve();
});
};
call().then(() => {
// generate site.txt
urls.forEach((url) => {
fs.appendFile('sitemaps/site.txt', url + '\n', (err) => {
if (err) {
console.log(err);
}
});
});
});