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

51 lines
1.3 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 } from "@/lib/sanity";
import { toHTML } from "@portabletext/to-html";
export async function GET() {
// Define the site URL based on the environment
const SITE_URL =
process.env.NODE_ENV === "production"
? "https://svrjs.vercel.app"
: "http://localhost:3000";
2024-08-24 06:44:39 +02:00
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: `${SITE_URL}/rss.xml`,
site_url: `${SITE_URL}`,
image_url: `${SITE_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: `${SITE_URL}/blog/${post.slug}`,
date: new Date(post._createdAt).toUTCString()
// uncomment this if u want to
// enclosure: { url: urlFor(post.titleImage).url() },
2024-09-07 09:39:26 +02:00
// 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
}