mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-08 05:59:00 +08:00
50 lines
1.4 KiB
JavaScript
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,
|
|
};
|
|
};
|