rsshub
Version:
Make RSS Great Again!
113 lines (108 loc) • 4.96 kB
JavaScript
import "./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 { 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/1lou/index.ts
const rootUrl = "https://www.1lou.me";
const handler = async (ctx) => {
const { params } = ctx.req.param();
const limit = ctx.req.query("limit") ? Number.parseInt(ctx.req.query("limit"), 10) : 50;
const queryString = Object.entries(ctx.req.query()).map(([key, value]) => `${encodeURIComponent(key)}=${encodeURIComponent(value)}`).join("&");
const currentUrl = new URL(`${params && params.endsWith(".htm") ? params : `${params}.htm`}${queryString ? `?${queryString}` : ""}`, rootUrl).href;
const { data: response } = await got_default(currentUrl);
const $ = load(response);
const language = $("html").prop("lang");
let items = $("li.media.thread.tap:not(li.hidden-sm)").slice(0, limit).toArray().map((item) => {
item = $(item);
const subjectEl = item.find("div.subject").children("a").first();
return {
title: subjectEl.text(),
pubDate: timezone(parseDate(item.find("span.date").text()), 8),
link: new URL(subjectEl.prop("href"), rootUrl).href,
category: [item.find("a.text-secondary").text().replaceAll("[]", ""), ...item.find("a.badge").toArray().map((c) => $(c).text())].filter(Boolean),
author: item.find("a.username").text(),
language
};
});
items = await Promise.all(items.map((item) => cache_default.tryGet(item.link, async () => {
const { data: detailResponse } = await got_default(item.link);
const $$ = load(detailResponse);
const title = $$("h4.break-all").contents().last().text();
if (title) {
const description = $$("div.message.break-all").html();
const image$1 = new URL($$("img").first().prop("src"), rootUrl).href;
item.title = title;
item.description = description;
item.pubDate = timezone(parseDate($$("span.date").text()), 8);
item.category = $$("a.badge").toArray().map((c) => $$(c).text());
item.content = {
html: description,
text: $$("div.message.break-all").text()
};
item.image = image$1;
item.banner = image$1;
item.language = language;
const torrents = $$("ul.attachlist li a");
if (torrents.length > 0) {
const torrent = torrents.first();
item.enclosure_url = new URL(torrent.prop("href"), rootUrl).href;
item.enclosure_type = "application/x-bittorrent";
item.enclosure_title = torrent.text();
}
}
return item;
})));
const author = "BT 之家 1LOU 站";
const image = new URL($("img.logo-2").prop("src"), rootUrl).href;
return {
title: `${$("title").text().split(/-/)[0]} - ${author}`,
description: $("meta[name=\"description\"]").prop("content"),
link: currentUrl,
item: items,
allowEmpty: true,
image,
author,
language
};
};
const route = {
path: "/:params{.+}?",
name: "通用",
url: "1lou.me",
maintainers: ["falling", "nczitzk"],
handler,
example: "/1lou/forum-2-1",
parameters: { params: "路径参数,可以在对应页面的 URL 中找到" },
description: `::: tip
\`1lou.me/\` 后的内容填入 params 参数,以下是几个例子:
若订阅 [大陆电视剧](https://www.1lou.me/forum-2-1.htm?tagids=0_97_0_0),网址为 \`https://www.1lou.me/forum-2-1.htm?tagids=0_97_0_0\`。截取 \`https://www.1lou.me/\` 到末尾 \`.htm\` 的部分 \`forum-2-1\` 作为参数,并补充 \`tagids\`,此时路由为 [\`/1lou/forum-2-1?tagids=0_97_0_0\`](https://rsshub.app/1lou/forum-2-1?tagids=0_97_0_0)。
若订阅 [最新发帖电视剧](https://www.1lou.me/forum-2-1.htm?orderby=tid&digest=0),网址为 \`https://www.1lou.me/forum-2-1.htm?orderby=tid&digest=0\`。截取 \`https://www.1lou.me/\` 到末尾 \`.htm\` 的部分 \`forum-2-1\` 作为参数,并补充 \`orderby\`,此时路由为 [\`/1lou/forum-2-1?orderby=tid\`](https://rsshub.app/1lou/forum-2-1?orderby=tid)。
若订阅 [搜素繁花主题贴](https://www.1lou.me/search-_E7_B9_81_E8_8A_B1-1.htm),网址为 \`https://www.1lou.me/search-_E7_B9_81_E8_8A_B1-1.htm\`。截取 \`https://www.1lou.me/\` 到末尾 \`.htm\` 的部分 \`search-_E7_B9_81_E8_8A_B1-1\` 作为参数,此时路由为 [\`/1lou/search-_E7_B9_81_E8_8A_B1-1\`](https://rsshub.app/1lou/search-_E7_B9_81_E8_8A_B1-1)。
:::`,
categories: ["multimedia"],
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportRadar: true,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
radar: [{
source: ["1lou.me/:params"],
target: (_, url) => {
url = new URL(url);
return `/1lou${url.href.replace(rootUrl, "")}`;
}
}]
};
//#endregion
export { handler, route };