mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-04 02:58:08 +08:00
73 lines
2.9 KiB
TypeScript
73 lines
2.9 KiB
TypeScript
import { Route } from '@/types';
|
|
import cache from '@/utils/cache';
|
|
import got from '@/utils/got';
|
|
import { topicDataHanding, constructTopicEntry } from './utils';
|
|
import { load } from 'cheerio';
|
|
import dayjs from 'dayjs';
|
|
|
|
const urlRegex = /(https?:\/\/[^\s"'<>]+)/g;
|
|
|
|
export const route: Route = {
|
|
path: '/topic/:id/:showUid?',
|
|
categories: ['social-media', 'popular'],
|
|
example: '/jike/topic/556688fae4b00c57d9dd46ee',
|
|
parameters: { id: '圈子 id, 可在即刻 web 端圈子页或 APP 分享出来的圈子页 URL 中找到', showUid: '是否在内容中显示用户信息,设置为 1 则开启' },
|
|
features: {
|
|
requireConfig: false,
|
|
requirePuppeteer: false,
|
|
antiCrawler: false,
|
|
supportBT: false,
|
|
supportPodcast: false,
|
|
supportScihub: false,
|
|
},
|
|
radar: [
|
|
{
|
|
source: ['web.okjike.com/topic/:id'],
|
|
target: '/topic/:id',
|
|
},
|
|
],
|
|
name: '圈子',
|
|
maintainers: ['DIYgod', 'prnake'],
|
|
handler,
|
|
};
|
|
|
|
async function handler(ctx) {
|
|
const id = ctx.req.param('id');
|
|
const topicUrl = `https://m.okjike.com/topics/${id}`;
|
|
|
|
const data = await constructTopicEntry(ctx, topicUrl);
|
|
|
|
if (data) {
|
|
const result = data.result;
|
|
result.item = topicDataHanding(data, ctx);
|
|
if (id === '553870e8e4b0cafb0a1bef68' || id === '55963702e4b0d84d2c30ce6f') {
|
|
result.item = await Promise.all(
|
|
result.item.map(async (one) => {
|
|
const item = { ...one };
|
|
const regResult = /https:\/\/www\.okjike\.com\/medium\/[\dA-Za-z]*/.exec(item.description);
|
|
if (regResult) {
|
|
const newsUrl = regResult[0];
|
|
item.description = await cache.tryGet(newsUrl, async () => {
|
|
const { data } = await got(newsUrl);
|
|
const $ = load(data);
|
|
const upper = $('ul.main > li.item');
|
|
const links = upper.find('a').map((_, ele) => $(ele).attr('href'));
|
|
const texts = upper.find('span.text').map((_, ele) => $(ele).text());
|
|
let description = '';
|
|
for (const [i, link] of links.entries()) {
|
|
description += `${i + 1}、<a href="${link}">${texts[i]}</a><br>`;
|
|
}
|
|
description = description.replace(/<br>$/, '');
|
|
return description;
|
|
});
|
|
}
|
|
item.description = item.description.replaceAll(urlRegex, (url) => `<a href="${url}">${url}</a>`);
|
|
item.title = `${data.topic.content} ${dayjs(one.pubDate).format('MM月DD日')}`;
|
|
return item;
|
|
})
|
|
);
|
|
}
|
|
return result;
|
|
}
|
|
}
|