rsshub
Version:
Make RSS Great Again!
92 lines (80 loc) • 2.8 kB
text/typescript
import { Route } from '@/types';
import cache from '@/utils/cache';
import got from '@/utils/got';
import { load } from 'cheerio';
import utils from './utils';
import { parseDate } from '@/utils/parse-date';
import timezone from '@/utils/timezone';
import { art } from '@/utils/render';
import path from 'node:path';
export const route: Route = {
path: '/news/:tag?',
categories: ['study'],
example: '/x-mol/news/3',
parameters: { tag: 'Tag number, can be obtained from news list URL. Empty value means news index.' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['x-mol.com/news/index'],
target: '/news',
},
],
name: 'News',
maintainers: ['cssxsh'],
handler,
url: 'x-mol.com/news/index',
};
async function handler(ctx) {
const tag = ctx.req.param('tag');
const urlPath = tag ? `news/tag/${tag}` : 'news/index';
const link = new URL(urlPath, utils.host).href;
const response = await got(link);
const data = response.data;
const $ = load(data);
const newsitem = $('.newsitem')
.toArray()
.map((element) => {
element = $(element);
const a = element.find('h3 a');
const span = element.find('.space-right-m30');
const author = span.text().replace('来源:', '').trim();
return {
title: a.text(),
link: new URL(a.attr('href'), utils.host).href,
description: art(path.join(__dirname, 'templates/description.art'), {
image: element.find('img').attr('src').split('?')[0],
text: element.find('.thsis-div a').text().trim(),
}),
author,
pubDate: span.next().length ? timezone(parseDate(span.next().text().trim()), 8) : undefined,
};
});
const item = await Promise.all(
newsitem.map((item) =>
cache.tryGet(item.link, async () => {
if (item.link.includes('outLinkByIdAndCode')) {
return item;
}
const response = await got(item.link);
const $ = load(response.data);
const description = $('.newscontent');
description.find('.detitemtit, .detposttiau').remove();
item.description = description.html();
return item;
})
)
);
return {
title: $('title').text(),
link: response.url,
description: $('meta[name="description"]').attr('content'),
item,
};
}