UNPKG

rsshub

Version:
38 lines (30 loc) 988 B
const got = require('@/utils/got'); const cheerio = require('cheerio'); module.exports = async (ctx) => { const os = ctx.params.os || 'mac'; const rootUrl = 'https://www.rescuetime.com/release-notes'; const currentUrl = `${rootUrl}/${os}`; const response = await got({ method: 'get', url: currentUrl, }); const $ = cheerio.load(response.data.replaceAll('<h3 align="left">', '</content><content><h3 align="left">')); const items = $('.release') .map((_, item) => { item = $(item); const title = item.find('h2').text(); item.find('h2').remove(); return { title, link: currentUrl, description: item.html(), pubDate: new Date(title.match(/(\d{4}(?:\/\d{2}){2})/)[1]), }; }) .get(); ctx.state.data = { title: $('h1').text(), link: currentUrl, item: items, }; };