rsshub
Version:
Make RSS Great Again!
74 lines (72 loc) • 2.64 kB
JavaScript
import { n as init_esm_shims, t as __dirname } from "./esm-shims-CzJ_djXG.mjs";
import "./config-C37vj7VH.mjs";
import "./dist-BInvbO1W.mjs";
import "./logger-Czu8UMNd.mjs";
import "./ofetch-BIyrKU3Y.mjs";
import { t as parseDate } from "./parse-date-BrP7mxXf.mjs";
import "./helpers-DxBp0Pty.mjs";
import { t as art } from "./render-BQo6B4tL.mjs";
import { t as got_default } from "./got-KxxWdaxq.mjs";
import { t as timezone } from "./timezone-D8cuwzTY.mjs";
import path from "node:path";
//#region lib/routes/nmtv/column.ts
init_esm_shims();
const route = {
path: "/column/:id?",
categories: ["traditional-media"],
example: "/nmtv/column/877",
parameters: { id: "栏目 id,可在对应栏目 URL 中找到" },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
name: "点播",
maintainers: ["nczitzk"],
handler,
description: `::: tip
如 [蒙古语卫视新闻联播](http://www.nmtv.cn/folder292/folder663/folder301/folder830/folder877) 的 URL 为 \`http://www.nmtv.cn/folder292/folder663/folder301/folder830/folder877\`,其栏目 id 为末尾数字编号,即 \`877\`。可以得到其对应路由为 [\`/nmtv/column/877\`](https://rsshub.app/nmtv/column/877)
:::`
};
async function handler(ctx) {
const id = ctx.req.param("id") ?? "877";
const limit = ctx.req.query("limit") ? Number.parseInt(ctx.req.query("limit")) : 100;
const hostUrl = "https://vod.m2oplus.nmtv.cn";
const data = (await got_default({
method: "get",
url: `https://mapi.m2oplus.nmtv.cn/api/v1/contents.php?offset=0&count=${limit}&column_id=${id}`
})).data;
const items = data.map((item) => {
const enclosure_url = `${hostUrl}/${item.target_path}${item.target_filename}`;
const enclosure_type = `${item.type}/${enclosure_url.match(/\.(\w+)$/)[1]}`;
return {
title: item.title,
link: item.content_url,
author: item.column_name,
pubDate: timezone(parseDate(item.publish_time), 8),
description: art(path.join(__dirname, "templates/description-ffc4bfcb.art"), {
type: item.type,
image: item.index_pic,
file: enclosure_url
}),
enclosure_url,
enclosure_type,
itunes_duration: item.video.duration,
itunes_item_image: item.index_pic
};
});
const author = data[0].column_name;
const imageUrl = data[0].column_info.indexpic;
return {
title: `内蒙古广播电视台 - ${author}`,
link: items[0].link.split(/\/\d{4}-\d{2}-\d{2}\//)[0],
item: items,
image: `${imageUrl.host}${imageUrl.filepath}${imageUrl.filename}`,
itunes_author: author
};
}
//#endregion
export { route };