svrjs-nextjs-website/app/rss.xml/route.ts

50 lines
1.4 KiB
TypeScript
Raw Normal View History

2024-08-24 06:28:25 +02:00
import { NextResponse } from "next/server";
import RSS from "rss";
import { client, urlFor } from "@/lib/sanity";
2024-08-24 06:28:25 +02:00
import { toHTML } from "@portabletext/to-html";
export const dynamic = "force-static";
2024-08-24 06:28:25 +02:00
export async function GET() {
const postsQuery = `*[_type == 'blog'] | order(_createdAt desc) {
2024-08-24 06:28:25 +02:00
title,
"slug": slug.current,
content,
titleImage,
_createdAt
}`;
const posts = await client.fetch(postsQuery);
2024-08-24 06:28:25 +02:00
const feed = new RSS({
2024-09-07 09:39:26 +02:00
title: "SVR.JS Blog",
description: "Explore the latest blog posts from SVR.JS",
feed_url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/rss.xml`,
site_url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}`,
image_url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/metadata/svrjs-cover.png`,
language: "en-US",
pubDate: new Date().toUTCString()
});
2024-08-24 06:28:25 +02:00
posts.forEach((post: any) => {
feed.item({
title: post.title,
description: toHTML(post.content),
url: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/blog/${post.slug}`,
date: new Date(post._createdAt).toUTCString(),
enclosure: {
url: post.titleImage
? urlFor(post.titleImage).url()
: `${process.env.NEXT_PUBLIC_WEBSITE_URL}/blog-missing.png`
},
author: "SVR.JS"
});
});
2024-08-24 06:28:25 +02:00
return new NextResponse(feed.xml({ indent: true }), {
headers: {
"Content-Type": "application/xml"
}
});
2024-08-24 06:28:25 +02:00
}