rsshub
Version:
Make RSS Great Again!
40 lines (33 loc) • 1.13 kB
JavaScript
const got = require('@/utils/got');
const cheerio = require('cheerio');
module.exports = async (ctx) => {
const url = 'http://www.haiwen-law.com/class/view?id=19';
const res = await got.get(url);
const $ = cheerio.load(res.data);
const list = $('div.newlist ul li.clearfix').get();
const out = await Promise.all(
list.map(async (item) => {
const $ = cheerio.load(item);
const title = $('.ittitle a').html();
const itemUrl = $('.ittitle a').attr('href');
const cache = await ctx.cache.get(itemUrl);
if (cache) {
return JSON.parse(cache);
}
const responses = await got.get(itemUrl);
const $d = cheerio.load(responses.data);
const single = {
title,
link: itemUrl,
description: $d('.large').html(),
};
ctx.cache.set(itemUrl, JSON.stringify(single));
return single;
})
);
ctx.state.data = {
title: $('title').text(),
link: url,
item: out,
};
};