79 lines
2.1 KiB
TypeScript
79 lines
2.1 KiB
TypeScript
import { Route } from '@/types';
|
|
import cache from '@/utils/cache';
|
|
import got from '@/utils/got';
|
|
import { load } from 'cheerio';
|
|
import { parseDate } from '@/utils/parse-date';
|
|
|
|
export const route: Route = {
|
|
path: '/featured',
|
|
categories: ['journal'],
|
|
example: '/bioone/featured',
|
|
parameters: {},
|
|
features: {
|
|
requireConfig: false,
|
|
requirePuppeteer: false,
|
|
antiCrawler: false,
|
|
supportBT: false,
|
|
supportPodcast: false,
|
|
supportScihub: false,
|
|
},
|
|
radar: [
|
|
{
|
|
source: ['bioone.org/'],
|
|
},
|
|
],
|
|
name: 'Featured articles',
|
|
maintainers: ['nczitzk'],
|
|
handler,
|
|
url: 'bioone.org/',
|
|
};
|
|
|
|
async function handler(ctx) {
|
|
const rootUrl = 'https://bioone.org';
|
|
const response = await got(rootUrl, {
|
|
https: {
|
|
rejectUnauthorized: false,
|
|
},
|
|
});
|
|
|
|
const $ = load(response.data);
|
|
|
|
let items = $('.items h4 a')
|
|
.slice(0, ctx.req.query('limit') ? Number.parseInt(ctx.req.query('limit')) : 10)
|
|
.toArray()
|
|
.map((item) => {
|
|
item = $(item);
|
|
const link = item.attr('href').split('?')[0];
|
|
|
|
return {
|
|
title: item.text(),
|
|
link: link.includes('http') ? link : `${rootUrl}${link}`,
|
|
};
|
|
});
|
|
|
|
items = await Promise.all(
|
|
items.map((item) =>
|
|
cache.tryGet(item.link, async () => {
|
|
const detailResponse = await got(item.link, {
|
|
https: {
|
|
rejectUnauthorized: false,
|
|
},
|
|
});
|
|
const content = load(detailResponse.data);
|
|
|
|
item.description = content('#divARTICLECONTENTTop').html();
|
|
item.doi = content('meta[name="dc.Identifier"]').attr('content');
|
|
item.pubDate = parseDate(content('meta[name="dc.Date"]').attr('content'));
|
|
|
|
return item;
|
|
})
|
|
)
|
|
);
|
|
|
|
return {
|
|
title: 'Featured articles - BioOne',
|
|
link: rootUrl,
|
|
item: items,
|
|
};
|
|
}
|