Files
RSSHub/lib/v2/kbs/today.js
Ethan Shen 7445cee887 feat(route): add KBS news (#8121)
* feat(route): add KBS news

* fix docs

* refactor: migrate to v2

Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
2022-02-24 00:45:00 +08:00

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,
};
};