rsshub
Version:
Make RSS Great Again!
88 lines (78 loc) • 3.49 kB
text/typescript
import { Route } from '@/types';
import ofetch from '@/utils/ofetch';
import cache from '@/utils/cache';
import { header, getSignedHeader, processImage } from './utils';
import { parseDate } from '@/utils/parse-date';
import { Articles, Profile } from './types';
export const route: Route = {
path: '/posts/:usertype/:id',
categories: ['social-media'],
example: '/zhihu/posts/people/frederchen',
parameters: { usertype: '作者 id,可在用户主页 URL 中找到', id: '用户类型usertype,参考用户主页的URL。目前有两种,见下表' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: true,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['www.zhihu.com/:usertype/:id/posts', 'www.zhihu.com/:usertype/:id'],
},
],
name: '用户文章',
maintainers: ['whtsky', 'Colin-XKL'],
handler,
description: `| 普通用户 | 机构用户 |
| -------- | -------- |
| people | org |`,
};
async function handler(ctx) {
const id = ctx.req.param('id');
const usertype = ctx.req.param('usertype');
const userProfile = await cache.tryGet(`zhihu:posts:profile:${id}`, async () => {
const userAPIPath = `/api/v4/${usertype === 'people' ? 'members' : 'org'}/${id}?${new URLSearchParams({
include: 'allow_message,is_followed,is_following,is_org,is_blocking,employments,answer_count,follower_count,articles_count,gender,badge[?(type=best_answerer)].topics',
})}`;
return await ofetch<Profile>(`https://www.zhihu.com${userAPIPath}`, {
headers: {
...header,
...(await getSignedHeader(`https://www.zhihu.com/${usertype}/${id}/`, userAPIPath)),
Referer: `https://www.zhihu.com/${usertype}/${id}/`,
},
});
});
const apiPath = `/api/v4/${usertype === 'people' ? 'members' : 'org'}/${id}/articles?${new URLSearchParams({
include:
'data[*].comment_count,suggest_edit,is_normal,thumbnail_extra_info,thumbnail,can_comment,comment_permission,admin_closed_comment,content,voteup_count,created,updated,upvoted_followees,voting,review_info,reaction_instruction,is_labeled,label_info;data[*].vessay_info;data[*].author.badge[?(type=best_answerer)].topics;data[*].author.vip_info;',
offset: '0',
limit: '20',
sort_by: 'created',
})}`;
const signedHeader = await getSignedHeader(`https://www.zhihu.com/${usertype}/${id}/posts`, apiPath);
const articleResponse = await ofetch<Articles>(`https://www.zhihu.com${apiPath}`, {
headers: {
...header,
...signedHeader,
Referer: `https://www.zhihu.com/${usertype}/${id}/posts`,
},
});
const items = articleResponse.data.map((item) => ({
title: item.title,
description: processImage(item.content),
link: `https://zhuanlan.zhihu.com/p/${item.id}`,
pubDate: parseDate(item.created, 'X'),
updated: parseDate(item.updated, 'X'),
author: item.author.name,
}));
return {
title: `${userProfile.name} 的知乎文章`,
link: `https://www.zhihu.com/${usertype}/${id}/posts`,
description: userProfile.headline,
image: userProfile.avatar_url.split('?')[0],
// banner: userData?.coverUrl?.split('?')[0],
item: items,
};
}