42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import { Route } from '@/types';
|
|
import parser from '@/utils/rss-parser';
|
|
import { fetchArticle } from './utils';
|
|
const HOME_PAGE = 'https://apnews.com';
|
|
|
|
export const route: Route = {
|
|
path: '/rss/:rss?',
|
|
categories: ['traditional-media'],
|
|
example: '/apnews/rss/business',
|
|
parameters: { rss: 'Route name from the first segment of the corresponding site, or `index` for the front page(default).' },
|
|
features: {
|
|
requireConfig: false,
|
|
requirePuppeteer: false,
|
|
antiCrawler: false,
|
|
supportBT: false,
|
|
supportPodcast: false,
|
|
supportScihub: false,
|
|
},
|
|
radar: [
|
|
{
|
|
source: ['apnews.com/:rss'],
|
|
target: '/rss/:rss',
|
|
},
|
|
],
|
|
name: 'RSS',
|
|
maintainers: ['zoenglinghou', 'mjysci', 'TonyRL'],
|
|
handler,
|
|
};
|
|
|
|
async function handler(ctx) {
|
|
const { rss = 'index' } = ctx.req.param();
|
|
const url = `${HOME_PAGE}/${rss}.rss`;
|
|
const res = await parser.parseURL(url);
|
|
|
|
const items = await Promise.all(res.items.map((item) => fetchArticle(item)));
|
|
|
|
return {
|
|
...rss,
|
|
item: items,
|
|
};
|
|
}
|