rsshub
Version:
Make RSS Great Again!
133 lines (111 loc) • 4.32 kB
text/typescript
import { Route } from '@/types';
import cache from '@/utils/cache';
import got from '@/utils/got';
import { load } from 'cheerio';
import timezone from '@/utils/timezone';
import { parseDate } from '@/utils/parse-date';
import { art } from '@/utils/render';
import path from 'node:path';
export const handler = async (ctx) => {
const { id = '1' } = ctx.req.param();
const limit = ctx.req.query('limit') ? Number.parseInt(ctx.req.query('limit'), 10) : 10;
const rootUrl = 'https://www.eshukan.com';
const currentUrl = new URL(`academic/index.aspx?cid=${id}`, rootUrl).href;
const { data: response } = await got(currentUrl);
const $ = load(response);
let items = $('ul.article li')
.slice(0, limit)
.toArray()
.map((item) => {
item = $(item);
const a = item.find('a');
const title = a.contents().last().text();
const pubDate = item
.find('p span')
.text()
.match(/(\d{4}\/\d{2}\/\d{2}\s\d{2}:\d{2}:\d{2})/)?.[1];
item.find('p span').remove();
const description = art(path.join(__dirname, 'templates/description.art'), {
intro: item.find('p').text(),
});
return {
title,
description,
pubDate: pubDate ? timezone(parseDate(pubDate), +8) : undefined,
link: new URL(a.prop('href'), currentUrl).href,
content: {
html: description,
text: item.find('p').text(),
},
};
});
items = await Promise.all(
items.map((item) =>
cache.tryGet(item.link, async () => {
const { data: detailResponse } = await got(item.link);
const $$ = load(detailResponse);
const title = $$('h1').text();
const description = art(path.join(__dirname, 'templates/description.art'), {
intro: $$('div.summary').html(),
description: $$('div.detail').html(),
});
const pubDate = $$('div.author')
.text()
.match(/(\d{4}\/\d{2}\/\d{2}\s\d{2}:\d{2}:\d{2})/)?.[1];
item.title = title;
item.description = description;
item.pubDate = pubDate ? timezone(parseDate(pubDate), +8) : item.pubDate;
item.author = $$('div.author a').text();
item.content = {
html: description,
text: $$('div.detail').text(),
};
return item;
})
)
);
const title = $('title').text();
const image = new URL($('div.logo img').prop('src'), rootUrl).href;
return {
title,
description: $('meta[name="description"]').prop('content'),
link: currentUrl,
item: items,
allowEmpty: true,
image,
author: title.split(/_/).pop(),
};
};
export const route: Route = {
path: '/academic/:id?',
name: '学术资讯',
url: 'www.eshukan.com',
maintainers: ['nczitzk'],
handler,
example: '/eshukan/academic/1',
parameters: { category: '栏目 id,默认为 `1`,即期刊动态,可在对应栏目页 URL 中找到' },
description: `::: tip
若订阅 [期刊动态](https://www.eshukan.com/academic/index.aspx?cid=1),网址为 \`https://www.eshukan.com/academic/index.aspx?cid=1\`。截取 \`https://www.eshukan.com/academic/index.aspx?cid=\` 到末尾的部分 \`1\` 作为参数填入,此时路由为 [\`/eshukan/academic/1\`](https://rsshub.app/eshukan/academic/1)。
:::
`,
categories: ['study'],
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportRadar: true,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['www.eshukan.com/academic/index.aspx'],
target: (_, url) => {
url = new URL(url);
const id = url.searchParams.get('id');
return `/academic${id ? `/${id}` : ''}`;
},
},
],
};