rsshub
Version:
Make RSS Great Again!
68 lines (67 loc) • 2.37 kB
JavaScript
import { n as parseRelativeDate, 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 { t as timezone } from "./timezone-BBvDwS_3.mjs";
import { load } from "cheerio";
//#region lib/routes/quicker/user.ts
const route = {
path: "/user/:category/:id",
categories: ["programming"],
example: "/quicker/user/Actions/3-CL",
parameters: {
category: "分类,见下表",
id: "用户 id,可在对应用户页 URL 中找到"
},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
name: "用户更新",
maintainers: ["Cesaryuan", "nczitzk"],
handler,
description: `| 动作 | 子程序 | 动作单 |
| ------- | ----------- | ----------- |
| Actions | SubPrograms | ActionLists |`
};
async function handler(ctx) {
const category = ctx.req.param("category");
const id = ctx.req.param("id");
const rootUrl = "https://getquicker.net";
const currentUrl = `${rootUrl}/User/${category}/${id}`;
const $ = load((await got_default({
method: "get",
url: currentUrl
})).data);
let items = $("table tbody tr").slice(1, ctx.req.query("limit") ? Number.parseInt(ctx.req.query("limit")) : 25).toArray().map((item) => {
const $item = $(item).find("td a").first();
return {
title: $item.text(),
link: `${rootUrl}${$item.attr("href")}`
};
});
items = await Promise.all(items.map((item) => cache_default.tryGet(item.link, async () => {
const content = load((await got_default({
method: "get",
url: item.link
})).data);
content("section").last().remove();
content("#app").children().slice(0, 2).remove();
const pubDate = content(".text-secondary a").not(".text-secondary").first().text()?.replaceAll(/\s*/g, "") || content("div.note-text").find("span").eq(3).text();
item.author = content(".user-link").first().text();
item.description = content("div[data-info=\"动作信息\"]").html() ?? content("#app").html() ?? content(".row").eq(1).html();
item.pubDate = timezone(/-/.test(pubDate) ? parseDate(pubDate) : parseRelativeDate(pubDate), 8);
return item;
})));
return {
title: $("title").text(),
link: currentUrl,
item: items,
allowEmpty: true
};
}
//#endregion
export { route };