RSSHub/lib/routes/segmentfault/user.ts

50 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { Route } from '@/types';
import cache from '@/utils/cache';
import ofetch from '@/utils/ofetch';
import { acw_sc__v2, host, parseItems, parseList } from './utils';
export const route: Route = {
path: '/user/:name',
categories: ['programming'],
example: '/segmentfault/user/minnanitkong',
parameters: { name: '用户 Id用户详情页 URL 可以找到' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: true,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['segmentfault.com/u/:name'],
},
],
name: '用户',
maintainers: ['leyuuu', 'Fatpandac'],
handler,
};
async function handler(ctx) {
const name = ctx.req.param('name');
const apiURL = `${host}/gateway/homepage/${name}/timeline?size=20&offset=`;
const response = await ofetch(apiURL);
const data = response.rows;
const list = parseList(data);
const { author } = list[0];
const acwScV2Cookie = await acw_sc__v2(list[0].link, cache.tryGet);
const items = await Promise.all(list.map((item) => parseItems(acwScV2Cookie, item, cache.tryGet)));
return {
title: `segmentfault - ${author}`,
link: `${host}/u/${name}`,
item: items,
};
}