rsshub
Version:
Make RSS Great Again!
58 lines (57 loc) • 2.14 kB
JavaScript
import { t as rofetch } from "./ofetch-C3ts-Hud.mjs";
import { t as parseDate } from "./parse-date-Cr0wQjV_.mjs";
import { t as cache_default } from "./cache-BkqOokyU.mjs";
import { load } from "cheerio";
import pMap from "p-map";
//#region lib/routes/anthropic/engineering.ts
const route = {
path: "/engineering",
categories: ["programming"],
example: "/anthropic/engineering",
parameters: {},
radar: [{ source: ["www.anthropic.com/engineering", "www.anthropic.com"] }],
name: "Engineering",
maintainers: ["TonyRL"],
handler,
url: "www.anthropic.com/engineering"
};
async function handler(ctx) {
const baseUrl = "https://www.anthropic.com";
const link = `${baseUrl}/engineering`;
const $ = load(await rofetch(link));
const limit = ctx.req.query("limit") ? Number(ctx.req.query("limit")) : 20;
const items = await pMap($("a[class$=\"cardLink\"]").toArray().map((element) => {
const $e = $(element);
const href = $e.attr("href") ?? "";
const fullLink = href.startsWith("http") ? href : `${baseUrl}${href}`;
const dateText = $e.find("div[class$=\"date\"]").text();
return {
title: $e.find("h2, h3").text(),
link: fullLink,
pubDate: dateText ? parseDate(dateText, "MMM D, YYYY") : void 0
};
}).filter((item) => item.title && item.link).slice(0, limit), (item) => cache_default.tryGet(item.link, async () => {
const $ = load(await rofetch(item.link));
const content = $("article > div > div[class$=\"__body\"]");
content.find("img").each((_, e) => {
const $e = $(e);
$e.removeAttr("style srcset");
const src = $e.attr("src");
const newSrc = new URLSearchParams(src).get("/_next/image?url");
if (newSrc) $e.attr("src", newSrc);
});
item.description = content.html();
const dateText = $("p[class$=\"date\"]").text().replace("Published", "").trim();
item.pubDate ||= dateText ? parseDate(dateText, "MMM D, YYYY") : void 0;
return item;
}), { concurrency: 5 });
return {
title: "Anthropic Engineering",
link,
description: "Latest engineering posts from Anthropic",
image: `${baseUrl}/images/icons/apple-touch-icon.png`,
item: items
};
}
//#endregion
export { route };