const express = require("express");
const app = express();
const { createClient } = require("contentful");
const marked = require("marked");
marked.setOptions({
renderer: new marked.Renderer(),
pedantic: false,
gfm: true,
breaks: false,
sanitize: false,
smartLists: true,
smartypants: false,
xhtml: true,
});
app.use(express.json());
const client = createClient({
space: process.env.CONTENTFUL_SPACE_ID,
accessToken: process.env.CONTENTFUL_ACCESS_KEY,
});
const posts = async () => {
try {
let res = await client.getEntries({ content_type: "rehber" });
return res;
} catch (err) {
console.log(err);
}
};
const fetchPosts = async () => {
let res = await posts();
return res.items;
};
async function buildRssItems() {
const items = await fetchPosts();
return items
.map((item) => {
const text = `${marked(item.fields.rehber)}`;
const summary = item.fields.description;
const link = `https://teknolojirehberleri.xyz/rehber/${item.fields.slug}`;
const title = item.fields.title;
return `
${title}
${link}
${item.sys.updatedAt}
${summary}
${text}
`;
})
.join("");
}
app.get("/rss", async (req, res) => {
const rssFeed = `
teknolojirehberleri.xyz
${await buildRssItems()}
`;
res.type("application/atom+xml");
res.send(rssFeed);
});
const port = process.env.port || 3002;
app.listen(port, () => console.log(`Listening on port ${port}...`));