UNPKG

rsshub

Version:
84 lines (83 loc) 2.5 kB
import { t as cache_default } from "./cache-BkqOokyU.mjs"; import { t as got_default } from "./got-BTowW50G.mjs"; import { load } from "cheerio"; //#region lib/routes/douban/other/replied.ts const route = { path: "/replied/:uid", categories: ["social-media"], example: "/douban/replied/xiaoyaxiaoya", parameters: { uid: "用户id,可在用户日记页 URL 中找到" }, features: { requireConfig: false, requirePuppeteer: false, antiCrawler: false, supportBT: false, supportPodcast: false, supportScihub: false }, name: "最新回应过的日记", maintainers: ["nczitzk"], handler }; async function handler(ctx) { const currentUrl = `https://www.douban.com/people/${ctx.req.param("uid")}/notes`; const $ = load((await got_default({ method: "get", url: currentUrl })).data); const list = $("div.recent-replied-mod ul.comment-list li").toArray().map((item) => { const $item = $(item); const p = $item.find("p"); const nid = p.find("a").attr("href").match(/%2Fnote%2F(.*?)%2F&type=note/)[1]; const title = p.find("a").text(); p.remove(); return { title: `${$item.find("a.lnk-people").text()} - ${title}`, link: `https://www.douban.com/note/${nid}` }; }); const items = await Promise.all(list.map((item) => cache_default.tryGet(item.link, async () => { try { const detailResponse = await got_default({ method: "get", url: item.link }); const match = detailResponse.data.match(/'comments':(.*)\}\],/); if (match.length > 1) { const content = load(detailResponse.data); const title = `${content("a.note-author").text()} - ${content("h1").text()}`; const comments = JSON.parse(match[1] + "}]"); let latest = /* @__PURE__ */ new Date(0), description, pubDate, author; while (comments.length > 0) { const c = comments.shift(); if (c.author.uid === ctx.req.param("uid") && new Date(c.create_time) > new Date(latest)) { latest = /* @__PURE__ */ new Date(c.create_time + " GMT+8"); pubDate = latest.toUTCString(); description = c.text; author = c.author.name; } else if (c.replies.length > 0) comments.push(...c.replies); } return { title, description, pubDate, author, link: item.link }; } throw new Error("No comments"); } catch { return { title: item.title, link: item.link }; } }))); return { title: $("title").text() + " - 最新回应过", link: currentUrl, item: items }; } //#endregion export { route };