mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-19 06:38:55 +08:00
44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
const axios = require('../../utils/axios');
|
|
const cheerio = require('cheerio');
|
|
|
|
const host = 'http://www.ifanr.com/app';
|
|
|
|
module.exports = async (ctx) => {
|
|
const response = await axios.get(host);
|
|
|
|
const $ = cheerio.load(response.data);
|
|
|
|
const list = $('h3 a')
|
|
.map((i, e) => $(e).attr('href'))
|
|
.get();
|
|
|
|
const out = await Promise.all(
|
|
list.map(async (itemUrl) => {
|
|
const cache = await ctx.cache.get(itemUrl);
|
|
if (cache) {
|
|
return Promise.resolve(JSON.parse(cache));
|
|
}
|
|
|
|
const response = await axios.get(itemUrl);
|
|
const $ = cheerio.load(response.data);
|
|
const title = $('h1').text();
|
|
|
|
const single = {
|
|
title,
|
|
link: itemUrl,
|
|
author: $('.c-article-header-meta__category').html(),
|
|
description: $('article').html(),
|
|
pubDate: new Date($('.c-article-header-meta__time').attr('date-timestamp')),
|
|
};
|
|
ctx.cache.set(itemUrl, JSON.stringify(single), 24 * 60 * 60);
|
|
return Promise.resolve(single);
|
|
})
|
|
);
|
|
|
|
ctx.state.data = {
|
|
title: 'AppSo : 让手机更好用的数字生活媒体',
|
|
link: host,
|
|
item: out,
|
|
};
|
|
};
|