rsshub
Version:
Make RSS Great Again!
60 lines (58 loc) • 1.67 kB
JavaScript
import "./esm-shims-CzJ_djXG.mjs";
import "./config-C37vj7VH.mjs";
import "./dist-BInvbO1W.mjs";
import "./logger-Czu8UMNd.mjs";
import "./ofetch-BIyrKU3Y.mjs";
import { t as cache_default } from "./cache-Bo__VnGm.mjs";
import "./helpers-DxBp0Pty.mjs";
import { t as got_default } from "./got-KxxWdaxq.mjs";
import { load } from "cheerio";
//#region lib/routes/cmpxchg8b/articles.ts
const baseUrl = "https://lock.cmpxchg8b.com/";
const title = "cmpxchg8b";
const route = {
path: "/articles",
categories: ["blog"],
example: "/cmpxchg8b/articles",
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
radar: [{ source: ["lock.cmpxchg8b.com/articles"] }],
name: "Articles",
maintainers: ["yuguorui"],
handler,
url: "lock.cmpxchg8b.com/articles"
};
async function handler() {
const { data: response } = await got_default(baseUrl);
const $ = load(response);
const author = $("p.author").text().trim();
const list = $("section#articles section").toArray().map((item) => {
item = $(item);
return {
title: item.find("li").text(),
link: new URL(item.find("li a").attr("href"), baseUrl).toString(),
author
};
});
const items = await Promise.all(list.map((item) => cache_default.tryGet(item.link, async () => {
const { data: response$1 } = await got_default(item.link);
const body = load(response$1)("body");
body.find("nav, footer").remove();
item.description = body.html();
return item;
})));
return {
title,
link: new URL("#articles", baseUrl).toString(),
item: items
};
}
//#endregion
export { route };