rsshub
Version:
Make RSS Great Again!
51 lines (39 loc) • 1.37 kB
JavaScript
const got = require('@/utils/got');
const cheerio = require('cheerio');
const url = require('url');
async function load(link) {
const response = await got.get(link);
const $ = cheerio.load(response.data);
// DATE
const date = new Date(
$('div.contain > form > h3 span:nth-of-type(1)')
.text()
.match(/\d{4}-\d{2}-\d{2}/)
);
const timeZone = 8;
const serverOffset = date.getTimezoneOffset() / 60;
const pubDate = new Date(date.getTime() - 60 * 60 * 1000 * (timeZone + serverOffset)).toUTCString();
const description = $('#vsb_content > .v_news_content').html();
return { description, pubDate };
}
const ProcessFeed = (list, caches) => {
const host = 'http://computer.ahau.edu.cn/';
return Promise.all(
list.map(async (item) => {
const $ = cheerio.load(item);
const $title = $('a');
const itemUrl = url.resolve(host, $title.attr('href'));
const single = {
title: $title.text(),
link: itemUrl,
author: '安农大信息与计算机学院',
guid: itemUrl,
};
const other = await caches.tryGet(itemUrl, () => load(itemUrl));
return Object.assign({}, single, other);
})
);
};
module.exports = {
ProcessFeed,
};