57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
import { Route } from '@/types';
|
|
import cache from '@/utils/cache';
|
|
import { load } from 'cheerio';
|
|
import got from '@/utils/got';
|
|
import { parseDate } from '@/utils/parse-date';
|
|
import { baseUrl, cookieJar, getArticle } from './utils';
|
|
|
|
export const route: Route = {
|
|
path: '/news',
|
|
categories: ['journal'],
|
|
example: '/nature/news',
|
|
parameters: {},
|
|
features: {
|
|
requireConfig: false,
|
|
requirePuppeteer: false,
|
|
antiCrawler: false,
|
|
supportBT: false,
|
|
supportPodcast: false,
|
|
supportScihub: true,
|
|
},
|
|
radar: [
|
|
{
|
|
source: ['nature.com/latest-news', 'nature.com/news', 'nature.com/'],
|
|
},
|
|
],
|
|
name: 'Nature News',
|
|
maintainers: ['y9c', 'TonyRL'],
|
|
handler,
|
|
url: 'nature.com/latest-news',
|
|
};
|
|
|
|
async function handler() {
|
|
const url = `${baseUrl}/latest-news`;
|
|
const res = await got(url, { cookieJar });
|
|
const $ = load(res.data);
|
|
|
|
let items = $('.c-article-item__content')
|
|
.toArray()
|
|
.map((item) => {
|
|
item = $(item);
|
|
return {
|
|
title: item.find('h3').text(),
|
|
link: baseUrl + item.find('a').attr('href'),
|
|
pubDate: parseDate(item.find('.c-article-item__date').text()),
|
|
};
|
|
});
|
|
|
|
items = await Promise.all(items.map((item) => cache.tryGet(item.link, () => getArticle(item))));
|
|
|
|
return {
|
|
title: 'Nature | Latest News',
|
|
description: $('meta[name=description]').attr('content'),
|
|
link: url,
|
|
item: items,
|
|
};
|
|
}
|