mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 12:21:31 +08:00
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
const got = require('@/utils/got');
|
|
const parser = require('@/utils/rss-parser');
|
|
const cheerio = require('cheerio');
|
|
|
|
module.exports = async (ctx) => {
|
|
const ProcessFeed = (content) => {
|
|
// clean up the article
|
|
content.find('div.o-share, aside, div.o-ads').remove();
|
|
|
|
return content.html();
|
|
};
|
|
|
|
const link = `https://www.ft.com/myft/following/${ctx.params.key}.rss`;
|
|
|
|
const feed = await parser.parseURL(link);
|
|
|
|
const items = await Promise.all(
|
|
feed.items.map((item) =>
|
|
ctx.cache.tryGet(item.link, async () => {
|
|
const response = await got({
|
|
method: 'get',
|
|
url: item.link,
|
|
headers: {
|
|
Referer: 'https://www.facebook.com',
|
|
},
|
|
});
|
|
|
|
const $ = cheerio.load(response.data);
|
|
|
|
item.description = ProcessFeed($('div.article__content-body'));
|
|
item.author = $('a.n-content-tag--author').text();
|
|
|
|
return item;
|
|
})
|
|
)
|
|
);
|
|
|
|
ctx.state.data = {
|
|
title: `FT.com - myFT`,
|
|
link,
|
|
description: `FT.com - myFT`,
|
|
item: items,
|
|
};
|
|
};
|