Files
NotionNext/lib/sitemap.xml.js
tangly1024.com d5235b3e44 部分微调
2024-11-21 12:28:15 +08:00

79 lines
1.9 KiB
JavaScript

import fs from 'fs'
import { siteConfig } from './config'
/**
* 生成站点地图
* @param {*} param0
*/
export async function generateSitemapXml({ allPages, NOTION_CONFIG }) {
const link = siteConfig('LINK', null, NOTION_CONFIG)
const urls = [
{
loc: `${link}`,
lastmod: new Date().toISOString().split('T')[0],
changefreq: 'daily',
priority: 1.0
},
{
loc: `${link}/archive`,
lastmod: new Date().toISOString().split('T')[0],
changefreq: 'daily',
priority: 1.0
},
{
loc: `${link}/category`,
lastmod: new Date().toISOString().split('T')[0],
changefreq: 'daily'
},
{
loc: `${link}/tag`,
lastmod: new Date().toISOString().split('T')[0],
changefreq: 'daily'
}
]
// 循环页面生成
allPages?.forEach(post => {
const slugWithoutLeadingSlash = post?.slug?.startsWith('/')
? post?.slug?.slice(1)
: post.slug
urls.push({
loc: `${link}/${slugWithoutLeadingSlash}`,
lastmod: new Date(post?.publishDay).toISOString().split('T')[0],
changefreq: 'daily'
})
})
const xml = createSitemapXml(urls)
try {
fs.writeFileSync('sitemap.xml', xml)
fs.writeFileSync('./public/sitemap.xml', xml)
} catch (error) {
console.warn('无法写入文件', error)
}
}
/**
* 生成站点地图
* @param {*} urls
* @returns
*/
function createSitemapXml(urls) {
let urlsXml = ''
urls.forEach(u => {
urlsXml += `<url>
<loc>${u.loc}</loc>
<lastmod>${u.lastmod}</lastmod>
<changefreq>${u.changefreq}</changefreq>
</url>
`
})
return `
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:news="http://www.google.com/schemas/sitemap-news/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0"
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
${urlsXml}
</urlset>
`
}