UNPKG

rsshub

Version:
61 lines (59 loc) 2.34 kB
import { t as parseDate } from "./parse-date-Cr0wQjV_.mjs"; import { t as cache_default } from "./cache-BkqOokyU.mjs"; import { t as got_default } from "./got-BTowW50G.mjs"; import { t as timezone } from "./timezone-BBvDwS_3.mjs"; import { load } from "cheerio"; //#region lib/routes/hit/today.ts const route = { path: "/today/:category", categories: ["university"], example: "/hit/today/10", parameters: { category: "分类编号,`10`为公告公示,`11`为新闻快讯,同时支持详细分类,使用方法见下" }, features: { requireConfig: false, requirePuppeteer: false, antiCrawler: false, supportBT: false, supportPodcast: false, supportScihub: false }, radar: [{ source: ["today.hit.edu.cn/category/:category"] }], name: "今日哈工大", maintainers: ["ranpox"], handler, description: `::: tip 今日哈工大的文章分为公告公示和新闻快讯,每个页面右侧列出了更详细的分类,其编号为每个 URL 路径的最后一个数字。 例如会议讲座的路径为\`/taxonomy/term/10/25\`,则可以通过 [\`/hit/today/25\`](https://rsshub.app/hit/today/25) 订阅该详细类别。 ::: ::: warning 部分文章需要经过统一身份认证后才能阅读全文。 :::` }; async function handler(ctx) { const host = "https://today.hit.edu.cn"; const category = ctx.req.param("category"); const $ = load((await got_default("https://today.hit.edu.cn/category/" + category)).data); const list = $(".paragraph li").toArray().map((e) => ({ link: new URL($("span span a", e).attr("href"), host).href, title: $("span span a", e).text(), author: $("div a", e).attr("hreflang", "zh-hans").text(), pubDate: timezone(parseDate($("span span a", e).attr("href").split("/").slice(-4, -1).join(","), "YYYYMMDD"), 8) })); const out = await Promise.all(list.map((item) => cache_default.tryGet(item.link, async () => { try { const $ = load((await got_default(item.link)).data); item.pubDate = timezone(parseDate($(".left-attr.first").text()), 8); item.description = $(".article-content").html()?.trim(); } catch { item.description = "请进行统一身份认证后查看全文"; } return item; }))); return { title: $("head title").text().trim(), link: "https://today.hit.edu.cn/category/" + category, item: out }; } //#endregion export { route };