rsshub
Version:
Make RSS Great Again!
57 lines (55 loc) • 1.63 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 { load } from "cheerio";
//#region lib/routes/thzt/index.ts
const route = {
path: "/blog",
categories: ["blog"],
example: "/thzt/blog",
url: "thzt.github.io",
name: "Blog",
maintainers: ["jihuayu"],
handler
};
const author = "何幻";
async function handler() {
const baseUrl = "https://thzt.github.io";
const targetUrl = `${baseUrl}/archives/`;
const $ = load((await got_default({
method: "get",
url: targetUrl
})).data);
const list = $("a.post-title-link").toArray().map((item) => {
const element = $(item);
const link = element.attr("href") || "";
return {
title: element.find("span").first().text() || "",
link
};
});
return {
title: "thzt articles",
link: targetUrl,
item: await Promise.all(list.slice(0, 15).map((item) => cache_default.tryGet(item.link, async () => {
const $$1 = load((await got_default({
method: "get",
url: `${baseUrl}/${item.link}`
})).data);
const articlePubDate = $$1("span.post-time > time").text();
item.author = author;
item.pubDate = parseDate(articlePubDate);
item.description = $$1("div.post-body").first().html() || "";
item.category = [$$1("span.post-category>span>a>span").first().text()];
return item;
})))
};
}
//#endregion
export { route };