forked from chengxuanying/RSSHub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e5baaa
commit b970348
Showing
2 changed files
with
22 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,35 +10,36 @@ module.exports = async (ctx) => { | |
}); | ||
const data = response.data; | ||
const $ = cheerio.load(data); | ||
const post = $('item').map((index, elem) => { | ||
const title = $(elem).find('title').text(); | ||
const link = $(elem).find('link').next().text(); | ||
return { | ||
link: link, | ||
title: title | ||
}; | ||
}).get(); | ||
const post = $('item') | ||
.map((index, elem) => { | ||
const title = $(elem).find('title').text(); | ||
const link = $(elem).find('link').next().text(); | ||
return { | ||
link: link, | ||
title: title, | ||
}; | ||
}) | ||
.get(); | ||
|
||
const browser = await require('@/utils/puppeteer')(); | ||
|
||
const items = await Promise.all( | ||
post.map( | ||
async (item) => { | ||
// use puppeter cause all the image is lazy-load | ||
const result = utils.ProcessFeed(await utils.PuppeterGetter(ctx, browser, item.link), true); | ||
post.map(async (item) => { | ||
// use puppeter cause all the image is lazy-load | ||
const result = utils.ProcessFeed(await utils.PuppeterGetter(ctx, browser, item.link), true); | ||
|
||
item.pubDate = result.pubDate; | ||
item.pubDate = result.pubDate; | ||
|
||
// Match 感谢|謝.*[email protected]。 | ||
const ending = /感(谢|謝);.*?cn\.letters@nytimes\.com。/g; | ||
// Match 感谢|謝.*[email protected]。 | ||
const ending = /感(谢|謝);.*?cn\.letters@nytimes\.com。/g; | ||
|
||
const matching = '<div class="article-paragraph">'; | ||
const formatted = '<br>' + matching; | ||
const matching = '<div class="article-paragraph">'; | ||
const formatted = '<br>' + matching; | ||
|
||
item.description = result.description.replace(ending, '').split(matching).join(formatted); | ||
item.description = result.description.replace(ending, '').split(matching).join(formatted); | ||
|
||
return Promise.resolve(item); | ||
}) | ||
return Promise.resolve(item); | ||
}) | ||
); | ||
|
||
browser.close(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters