rsshub
Version:
Make RSS Great Again!
42 lines (41 loc) • 1.11 kB
JavaScript
import { a as rootUrl, i as processItems, n as icon, r as image, t as apiRootUrl } from "./util-B2chsZL-.mjs";
//#region lib/routes/foresightnews/news.ts
const route = {
path: "/news",
categories: ["new-media"],
example: "/foresightnews/news",
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: true,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false
},
radar: [{ source: ["foresightnews.pro/news", "foresightnews.pro/"] }],
name: "快讯",
maintainers: ["nczitzk"],
handler,
url: "foresightnews.pro/news"
};
async function handler(ctx) {
const limit = ctx.req.query("limit") ? Number(ctx.req.query("limit")) : 50;
const apiUrl = new URL("v1/news", apiRootUrl).href;
const currentUrl = new URL("news", rootUrl).href;
const { items } = await processItems(apiUrl, limit);
return {
item: items,
title: "Foresight News - 快讯",
link: currentUrl,
description: "快讯 - Foresight News",
language: "zh-CN",
image,
icon,
logo: icon,
subtitle: "快讯",
author: "Foresight News"
};
}
//#endregion
export { route };