55 lines
1.6 KiB
TypeScript
55 lines
1.6 KiB
TypeScript
|
|
import { articlesNewestFirst } from '@/lib/articles';
|
||
|
|
import { SITE_DESCRIPTION, SITE_NAME, SITE_URL } from '@/lib/seo';
|
||
|
|
|
||
|
|
export const dynamic = 'force-static';
|
||
|
|
|
||
|
|
function escapeXml(s: string): string {
|
||
|
|
return s
|
||
|
|
.replaceAll('&', '&')
|
||
|
|
.replaceAll('<', '<')
|
||
|
|
.replaceAll('>', '>')
|
||
|
|
.replaceAll('"', '"')
|
||
|
|
.replaceAll("'", ''');
|
||
|
|
}
|
||
|
|
|
||
|
|
export function GET(): Response {
|
||
|
|
const articles = articlesNewestFirst();
|
||
|
|
const lastBuildDate = new Date(
|
||
|
|
articles[0]?.dateModified ?? articles[0]?.datePublished ?? '2026-05-31',
|
||
|
|
).toUTCString();
|
||
|
|
|
||
|
|
const items = articles
|
||
|
|
.map((a) => {
|
||
|
|
const url = `${SITE_URL}/guides/${a.slug}`;
|
||
|
|
return ` <item>
|
||
|
|
<title>${escapeXml(a.title)}</title>
|
||
|
|
<link>${url}</link>
|
||
|
|
<guid isPermaLink="true">${url}</guid>
|
||
|
|
<description>${escapeXml(a.description)}</description>
|
||
|
|
<pubDate>${new Date(a.datePublished).toUTCString()}</pubDate>
|
||
|
|
</item>`;
|
||
|
|
})
|
||
|
|
.join('\n');
|
||
|
|
|
||
|
|
const xml = `<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||
|
|
<channel>
|
||
|
|
<title>${escapeXml(`${SITE_NAME} — MCP guides`)}</title>
|
||
|
|
<link>${SITE_URL}/guides</link>
|
||
|
|
<atom:link href="${SITE_URL}/feed.xml" rel="self" type="application/rss+xml"/>
|
||
|
|
<description>${escapeXml(SITE_DESCRIPTION)}</description>
|
||
|
|
<language>en</language>
|
||
|
|
<lastBuildDate>${lastBuildDate}</lastBuildDate>
|
||
|
|
${items}
|
||
|
|
</channel>
|
||
|
|
</rss>
|
||
|
|
`;
|
||
|
|
|
||
|
|
return new Response(xml, {
|
||
|
|
headers: {
|
||
|
|
'content-type': 'application/rss+xml; charset=utf-8',
|
||
|
|
'cache-control': 'public, max-age=3600',
|
||
|
|
},
|
||
|
|
});
|
||
|
|
}
|