UNPKG

rsshub

Version:
81 lines (67 loc) 2.17 kB
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: '/', radar: [ { source: ['distill.pub/'], target: '', }, ], name: 'Unknown', maintainers: ['nczitzk'], handler, url: 'distill.pub/', }; async function handler() { const rootUrl = 'https://distill.pub'; const response = await got({ method: 'get', url: rootUrl, }); const $ = load(response.data); let items = $('.post-preview') .toArray() .map((item) => { item = $(item); return { title: item.find('.title').text(), link: `${rootUrl}/${item.children('a').attr('href')}`, }; }); items = await Promise.all( items.map((item) => cache.tryGet(item.link, async () => { const detailResponse = await got({ method: 'get', url: item.link, }); const content = load(detailResponse.data); content('d-contents').remove(); content('img').each(function () { content(this).attr('src', `${item.link}/${content(this).attr('src')}`); }); item.doi = content('meta[name="citation_doi"]').attr('content'); item.pubDate = parseDate(content('meta[property="article:published"]').attr('content')); item.description = content('d-article') .children() .toArray() .map((c) => content(c).html()) .join(''); item.author = content('meta[property="article:author"]') .toArray() .map((author) => content(author).attr('content')) .join(', '); return item; }) ) ); return { title: $('title').text(), link: rootUrl, item: items, }; }