rsshub
Version:
Make RSS Great Again!
44 lines (43 loc) • 1.34 kB
JavaScript
import { t as got_default } from "./got-BTowW50G.mjs";
import { load } from "cheerio";
//#region lib/routes/thepaper/839studio/category.ts
const route = {
path: "/839studio/:id",
categories: ["traditional-media"],
example: "/thepaper/839studio/2",
parameters: { id: "分类 id,默认订阅全部分类" },
description: `| 视频 | 交互 | 信息图 | 数据故事 |
| ---- | ---- | ------ | -------- |
| 2 | 4 | 3 | 453 |`,
radar: [{ source: ["thepaper.cn/"] }],
name: "澎湃美数课作品集 - 分类",
maintainers: ["umm233"],
handler,
url: "thepaper.cn/"
};
async function handler(ctx) {
const link = `http://projects.thepaper.cn/thepaper-cases/839studio/?cat=${ctx.req.param("id")}`;
const data = (await got_default({
method: "get",
url: link
})).data;
const $ = load(data);
const list = $("div[class=imgtext]");
const category = $("div[class=lefth]").find("h1").text();
const desc = $("div[class=leftc]").find("p").text();
return {
title: `澎湃美数课作品集-${category}`,
link,
description: desc,
item: list.toArray().map((item) => {
const $item = $(item);
return {
title: $item.find(".archive_up a").text(),
description: `描述:${$item.find(".imgdown p").text()}`,
link: $item.find(".archive_up a").attr("href")
};
})
};
}
//#endregion
export { route };