rsshub
Version:
Make RSS Great Again!
42 lines (41 loc) • 1.34 kB
JavaScript
import { t as parseDate } from "./parse-date-3kcy2Eau.mjs";
import { t as cache_default } from "./cache-C1Y-9qDV.mjs";
import { n as playwrightGet, t as baseUrl } from "./utils-DTV4PPyO.mjs";
import { load } from "cheerio";
//#region lib/routes/pincong/hot.ts
const route = {
path: "/hot/:category?",
categories: ["bbs"],
example: "/pincong/hot",
parameters: { category: "分类,与官网分类 URL `category-` 后的数字对应,默认为全部" },
features: {
requireConfig: false,
requirePuppeteer: true,
antiCrawler: true,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
name: "精选",
maintainers: ["zphw"],
handler
};
async function handler(ctx) {
const { category = "0" } = ctx.req.param();
const url = `${baseUrl}/hot/list/category-${category}`;
const html = await playwrightGet(url, cache_default);
const $ = load(html);
const list = $("div.aw-item");
return {
title: "品葱 - 精选",
link: `${baseUrl}/hot/${category === "0" ? "" : `category-${category}`}`,
item: list.toArray().map((item) => ({
title: $(item).find("h2 a").text(),
description: $(item).find("div.markitup-box").html(),
link: baseUrl + $(item).find("div.mod-head h2 a").attr("href"),
pubDate: parseDate($(item).find("div.mod-footer .aw-small-text").text())
}))
};
}
//#endregion
export { route };