Files
RSSHub/lib/routes/apple/exchange_repair.js
Henry Wang 22bd174f2e fix: App Store iap price monitor (#3480)
this should close #3393.
2019-11-25 11:51:16 +08:00

50 lines
1.4 KiB
JavaScript

const got = require('@/utils/got');
const cheerio = require('cheerio');
const url = require('url');
const host = 'https://support.apple.com/';
module.exports = async (ctx) => {
const country = ctx.params.country || '';
const link = url.resolve(host, `${country}/exchange_repair/`);
const response = await got.get(link);
const $ = cheerio.load(response.data);
const list = $('section.as-columns')
.get()
.slice(0, 5);
const out = await Promise.all(
list.map(async (item) => {
const $ = cheerio.load(item);
const $a = $('.icon-chevronright').parent();
const itemUrl = url.resolve(host, $a.attr('href'));
const cache = await ctx.cache.get(itemUrl);
if (cache) {
return Promise.resolve(JSON.parse(cache));
}
const response = await got.get(itemUrl);
const $$ = cheerio.load(response.data);
const description = $$('.main').html();
const single = {
title: $a.text(),
link: itemUrl,
author: 'Apple Inc.',
description: description,
};
ctx.cache.set(itemUrl, JSON.stringify(single));
return Promise.resolve(single);
})
);
ctx.state.data = {
title: `Apple - ${$('.main>.richText h1').text()}`,
link,
item: out,
};
};