RSSHub/lib/v2/zhibo8/post.js

40 lines
1.2 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const got = require('@/utils/got');
const cheerio = require('cheerio');
module.exports = async (ctx) => {
const id = ctx.params.id;
const link = `https://bbs.zhibo8.cc/forum/topic?tid=${id}`;
const response = await got.get(link);
const $ = cheerio.load(response.data);
const title = $('div.topic-title > h1').text();
const list = $('.topic-content .topic-table');
const out = await Promise.all(
list
.map((index, item) => {
item = $(item);
const author = item.find('.topic-left > div > a').text();
const floor = item.find('p.topic-foot span:nth-child(2)').text();
const description = item.find('.detail_ent').html().replace(/src="/g, 'src="https:');
const single = {
title: `${floor}${author}发表了新回复`,
author,
description,
guid: floor,
};
return single;
})
.get()
);
ctx.state.data = {
title: `${title}”的新回复—直播吧`,
link,
item: out,
};
};