rsshub
Version:
Make RSS Great Again!
64 lines (59 loc) • 1.99 kB
text/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: '/loginonline',
categories: ['journal'],
example: '/usenix/loginonline',
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['usenix.org/publications/loginonline', 'usenix.org/publications', 'usenix.org/'],
},
],
name: ';login:',
maintainers: ['wu-yufei'],
handler,
};
async function handler() {
const baseUrl = 'https://www.usenix.org';
const { data: response } = await got(`${baseUrl}/publications/loginonline`);
const $ = load(response);
const list = $('div.views-row')
.toArray()
.map((item) => {
item = $(item);
return {
title: item.find('.views-field-title').text().trim(),
link: `${baseUrl}${item.find('a').attr('href')}`,
pubDate: parseDate(item.find('.views-field-field-lv2-publication-date').text()),
author: item.find('.views-field-pseudo-author-list').text().trim().replace('Authors: ', ''),
};
});
const items = await Promise.all(
list.map((item) =>
cache.tryGet(item.link, async () => {
const { data: response } = await got(item.link);
const $ = load(response);
item.description = $('.group-article-body-wrapper').html();
return item;
})
)
);
return {
title: 'USENIX ;login:',
link: `${baseUrl}/publications/loginonline`,
description: 'An open access publication driven by the USENIX community',
item: items,
};
}