rsshub
Version:
Make RSS Great Again!
117 lines (116 loc) • 4.29 kB
JavaScript
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 { Fragment, jsx, jsxs } from "hono/jsx/jsx-runtime";
import { load } from "cheerio";
import { renderToString } from "hono/jsx/dom/server";
//#region lib/routes/iqilu/templates/description.tsx
const renderDescription = ({ image, video, description }) => renderToString(/* @__PURE__ */ jsxs(Fragment, { children: [
image?.src && !video ? /* @__PURE__ */ jsx("figure", { children: /* @__PURE__ */ jsx("img", {
src: image.src,
alt: image.alt
}) }) : null,
video ? /* @__PURE__ */ jsxs("video", {
poster: image?.src,
controls: true,
children: [/* @__PURE__ */ jsx("source", {
src: video.src,
type: video.type
}), /* @__PURE__ */ jsx("object", {
data: video.src,
children: /* @__PURE__ */ jsx("embed", { src: video.src })
})]
}) : null,
description ? /* @__PURE__ */ jsx("p", { children: description }) : null
] }));
//#endregion
//#region lib/routes/iqilu/program.ts
const route = {
path: "/v/:category{.+}?",
categories: ["traditional-media"],
example: "/iqilu/v/sdws/sdxwlb",
parameters: { category: "节目 id,可在对应节目页 URL 中找到,见下表,默认为 `sdws/sdxwlb`,即山东新闻联播" },
features: { supportPodcast: true },
name: "电视节目",
maintainers: ["nczitzk"],
description: `| 节目名称 | 节目 id |
| ---------------- | -------------- |
| 山东新闻联播 | sdws/sdxwlb |
| 闪电大视野 | ggpd/sddsy |
| 山东三农新闻联播 | nkpd/snxw |
| 每日新闻 | qlpd/mrxw |
| 新闻午班车 | ggpd/xwwbc |
| 戏宇宙 | sdws/xyz/ |
| 中国礼 中国乐 | qlpd/zglzgy |
| 超级语文课 | sdws/cjywk |
| 文物里的山东 | yspd/wwldsd |
| 拉呱 | qlpd/l0 |
| 生活帮 | shpd/shb |
| 快乐大赢家 | zypd/kldyj |
| 乡村季风 | nkpd/xcjf |
| 健康是 1 | ggpd/jks1 |
| 此时此刻 | sdws/cishicike |`,
handler
};
async function handler(ctx) {
const { category = "sdws/sdxwlb" } = ctx.req.param();
const limit = ctx.req.query("limit") ? Number(ctx.req.query("limit")) : 30;
const rootUrl = "http://v.iqilu.com";
const currentUrl = new URL(category, rootUrl).href;
const { data: response } = await got_default(currentUrl);
const $ = load(response);
let items = $("#jmzhanshi1 dl").slice(0, limit).toArray().map((item) => {
const $item = $(item);
const a = $item.find("a").first();
const image = $item.find("img").first();
$item.find("dd").last().remove();
return {
title: a.prop("title") ?? "",
link: a.prop("href"),
description: renderDescription({ image: {
src: image.prop("src"),
alt: image.prop("alt")
} }),
pubDate: parseDate($item.find("dd").last().text().match(/(\d{4}-\d{2}-\d{2})/)[1]),
itunes_item_image: image.prop("src")
};
});
items = await Promise.all(items.map((item) => cache_default.tryGet(item.link, async () => {
const { data: detailResponse } = await got_default(item.link);
const content = load(detailResponse);
item.title = content("div.vtitle").text();
item.enclosure_url = content("#copy_mp4text").prop("value");
item.enclosure_type = item.enclosure_url ? `video/${item.enclosure_url.split(/\./).pop()}` : void 0;
item.description = renderDescription({
image: {
src: item.itunes_item_image,
alt: item.title
},
video: {
src: item.enclosure_url,
type: item.enclosure_type
},
description: content("div.vinfo").text().trim()
});
return item;
})));
const icon = new URL($("link[rel=\"icon\"]").prop("href"), rootUrl).href;
const author = $("div.host_pic dl dd a").toArray().map((a) => $(a).text()).join("/");
return {
item: items,
title: $("title").text(),
link: currentUrl,
description: $("meta[name=\"description\"]").prop("content"),
language: $("html").prop("lang"),
image: $("div.s_logo img").prop("src"),
icon,
logo: icon,
subtitle: $("meta[name=\"keywords\"]").prop("content"),
author,
itunes_author: author,
itunes_category: "News",
allowEmpty: true
};
}
//#endregion
export { route };