mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-12 16:20:27 +08:00
* feat(route): add KBS news * fix docs * refactor: migrate to v2 Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
57 lines
1.5 KiB
JavaScript
57 lines
1.5 KiB
JavaScript
const got = require('@/utils/got');
|
|
const cheerio = require('cheerio');
|
|
const timezone = require('@/utils/timezone');
|
|
const { parseDate } = require('@/utils/parse-date');
|
|
|
|
module.exports = async (ctx) => {
|
|
const language = ctx.params.language ?? 'e';
|
|
|
|
const rootUrl = 'http://world.kbs.co.kr';
|
|
const currentUrl = `${rootUrl}/service/news_today.htm?lang=${language}`;
|
|
|
|
const response = await got({
|
|
method: 'get',
|
|
url: currentUrl,
|
|
});
|
|
|
|
const $ = cheerio.load(response.data);
|
|
|
|
const list = $('.comp_text_1x article')
|
|
.map((_, item) => {
|
|
item = $(item);
|
|
|
|
const a = item.find('h2 a');
|
|
|
|
return {
|
|
title: a.text(),
|
|
category: item.find('.cate').text(),
|
|
link: `${rootUrl}/service${a.attr('href').replace('./', '/')}`,
|
|
pubDate: timezone(parseDate(item.find('.date').text()), +9),
|
|
};
|
|
})
|
|
.get();
|
|
|
|
const items = await Promise.all(
|
|
list.map((item) =>
|
|
ctx.cache.tryGet(item.link, async () => {
|
|
const detailResponse = await got({
|
|
method: 'get',
|
|
url: item.link,
|
|
});
|
|
|
|
const content = cheerio.load(detailResponse.data);
|
|
|
|
item.description = content('.body_txt').html();
|
|
|
|
return item;
|
|
})
|
|
)
|
|
);
|
|
|
|
ctx.state.data = {
|
|
title: `Latest News | KBS WORLD`,
|
|
link: currentUrl,
|
|
item: items,
|
|
};
|
|
};
|