UNPKG

rsshub

Version:
96 lines (94 loc) 2.57 kB
import "./esm-shims-CzJ_djXG.mjs"; import "./config-C37vj7VH.mjs"; import { t as ViewType } from "./types-D84BRIt4.mjs"; import "./dist-BInvbO1W.mjs"; import "./logger-Czu8UMNd.mjs"; import "./ofetch-BIyrKU3Y.mjs"; import { t as parseDate } from "./parse-date-BrP7mxXf.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 { t as timezone } from "./timezone-D8cuwzTY.mjs"; import { load } from "cheerio"; //#region lib/routes/yyets/article.ts const baseURL = "https://yysub.net"; const route = { path: "/article/:type?", categories: ["multimedia"], view: ViewType.Articles, example: "/yyets/article", parameters: { type: { description: "类型", options: [ { value: "all", label: "全部" }, { value: "news", label: "影视资讯" }, { value: "report", label: "收视快报" }, { value: "m_review", label: "人人影评" }, { value: "t_review", label: "人人剧评" }, { value: "new_review", label: "新剧评测" }, { value: "recom", label: "片单推荐" } ], default: "all" } }, features: { requireConfig: false, requirePuppeteer: false, antiCrawler: false, supportBT: false, supportPodcast: false, supportScihub: false }, name: "影视资讯", maintainers: ["wb121017405"], handler, description: `| 全部 | 影视资讯 | 收视快报 | 人人影评 | 人人剧评 | 新剧评测 | 片单推荐 | | ---- | -------- | -------- | --------- | --------- | ----------- | -------- | | | news | report | m\_review | t\_review | new\_review | recom |` }; async function handler(ctx) { const type = ctx.req.param("type") ?? ""; const url = `${baseURL}/article${type ? "?type=" + type : ""}`; const $ = load((await got_default(url)).data); let items = $(".article-list li .fl-info").toArray().map((e) => { e = $(e); return { title: e.find("h3 a").text(), link: `${baseURL}${e.find("h3 a").attr("href")}`, author: e.find("p a").text(), pubDate: timezone(parseDate(e.find("p").eq(2).text()), 8) }; }); items = await Promise.all(items.map((item) => cache_default.tryGet(item.link, async () => { item.description = load((await got_default(item.link)).data)(".information-desc").html(); return item; }))); return { title: `${$("title").text()} - 人人影视`, description: $("meta[name=\"description\"]").attr("content"), link: url, item: items }; } //#endregion export { route };