rsshub
Version:
Make RSS Great Again!
65 lines (58 loc) • 1.89 kB
text/typescript
import { Route } from '@/types';
import cache from '@/utils/cache';
import got from '@/utils/got';
import { parseDate } from '@/utils/parse-date';
import { baseUrl, parseArticle } from './utils';
const rangeMap = {
daily: '日榜',
weekly: '周榜',
monthly: '月榜',
};
export const route: Route = {
path: '/popular/:range?',
categories: ['new-media'],
example: '/woshipm/popular',
parameters: { range: '时间,见下表,默认为 `daily`' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['woshipm.com/'],
target: '/popular',
},
],
name: '热门文章',
maintainers: ['WenryXu'],
handler,
url: 'woshipm.com/',
description: `| 日榜 | 周榜 | 月榜 |
| ----- | ------ | ------- |
| daily | weekly | monthly |`,
};
async function handler(ctx) {
const { range = 'daily' } = ctx.req.param();
const { data: response } = await got(`${baseUrl}/api2/app/article/popular/${range}`);
const list = response.RESULT.map((item) => {
item = item.data;
return {
title: item.articleTitle,
description: item.articleSummary,
link: `${baseUrl}/${item.type || 'ai'}/${item.id}.html`,
pubDate: parseDate(item.publishTime, 'x'),
author: item.articleAuthor,
};
});
const results = await Promise.allSettled(list.map((item) => parseArticle(item, cache.tryGet)));
const result = results.filter((result) => result.status === 'fulfilled').map((result) => result.value);
return {
title: `热门文章 - ${rangeMap[range]} - 人人都是产品经理`,
link: baseUrl,
item: result,
};
}