rsshub
Version:
Make RSS Great Again!
60 lines (58 loc) • 1.5 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 "./helpers-DxBp0Pty.mjs";
import { t as got_default } from "./got-KxxWdaxq.mjs";
//#region lib/routes/niaogebiji/today.ts
const route = {
path: "/today",
categories: ["new-media"],
example: "/niaogebiji/today",
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
radar: [{
source: ["niaogebiji.com/", "niaogebiji.com/bulletin"],
target: ""
}],
name: "今日事",
maintainers: ["KotoriK"],
handler,
url: "niaogebiji.com/"
};
async function handler() {
const response = await got_default({
method: "post",
url: "https://www.niaogebiji.com/pc/bulletin/index",
form: {
page: 1,
pub_time: "",
isfromajax: 1
}
});
if (response.data.return_code !== "200") throw new Error(response.data.return_msg);
return {
title: "鸟哥笔记-今日事",
link: "https://www.niaogebiji.com/bulletin",
item: response.data.return_data.map((item) => ({
title: item.title,
description: item.content,
link: item.url,
pubDate: parseDate(item.pub_time, "X"),
updated: parseDate(item.updated_at, "X"),
category: item.seo_keywords.split(","),
author: item.user_info.nickname
}))
};
}
//#endregion
export { route };