rsshub
Version:
Make RSS Great Again!
51 lines (50 loc) • 1.57 kB
JavaScript
import { t as rofetch } from "./ofetch-C3ts-Hud.mjs";
import { t as parseDate } from "./parse-date-Cr0wQjV_.mjs";
import { t as cache_default } from "./cache-BkqOokyU.mjs";
import { load } from "cheerio";
//#region lib/routes/huggingface/blog-zh.ts
const route = {
path: "/blog-zh",
categories: ["programming"],
example: "/huggingface/blog-zh",
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
radar: [{ source: ["huggingface.co/blog/zh", "huggingface.co/"] }],
name: "中文博客",
maintainers: ["zcf0508"],
handler,
url: "huggingface.co/blog/zh"
};
async function handler() {
const { allBlogs } = await rofetch("https://huggingface.co/api/blog/zh");
const lists = allBlogs.map((blog) => ({
title: blog.title,
link: `https://huggingface.co/blog/zh/${blog.slug}`,
pubDate: parseDate(blog.publishedAt),
author: blog.authorsData.map((author) => ({ name: author.fullname || author.name })),
upvotes: blog.upvotes,
image: blog.thumbnail ? new URL(blog.thumbnail, "https://huggingface.co").href : void 0,
category: blog.tags
}));
return {
title: "Huggingface 中文博客",
link: "https://huggingface.co/blog/zh",
item: await Promise.all(lists.map((item) => cache_default.tryGet(item.link, async () => {
const $ = load(await rofetch(item.link));
$(".mb-4, .mb-6, .not-prose, h1").remove();
return {
...item,
description: $(".blog-content").html()
};
})))
};
}
//#endregion
export { route };