RSSHub/lib/v2/gameapps/index.js

77 lines
2.7 KiB
JavaScript

import cache from '@/utils/cache';
import got from '@/utils/got';
import parser from '@/utils/rss-parser';
import { load } from 'cheerio';
import { parseDate } from '@/utils/parse-date';
import { art } from '@/utils/render';
import * as path from 'node:path';
module.exports = async (ctx) => {
const baseUrl = 'https://www.gameapps.hk';
const feed = await parser.parseURL(`${baseUrl}/rss`);
const items = await Promise.all(
feed.items.map((item) =>
cache.tryGet(item.link, async () => {
const { data: response } = await got(item.link, {
headers: {
Referer: baseUrl,
},
});
const $ = load(response);
const nextPages = $('.pagination li')
.not('.disabled')
.not('.active')
.find('a')
.toArray()
.map((a) => `${baseUrl}${a.attribs.href}`);
$('.pages').remove();
const content = $('.news-content');
// remove unwanted key value
delete item.content;
delete item.contentSnippet;
delete item.isoDate;
if (nextPages.length) {
const pages = await Promise.all(
nextPages.map(async (url) => {
const { data: response } = await got(url, {
headers: {
referer: item.link,
},
});
const $ = load(response);
$('.pages').remove();
return $('.news-content').html();
})
);
content.append(pages);
}
item.description = art(path.join(__dirname, 'templates/description.art'), {
src: $('div.introduction.media.news-intro div.media-left').find('img').attr('src'),
intro: $('div.introduction.media.news-intro div.media-body').html().trim(),
desc: content.html().trim(),
});
item.guid = item.guid.substring(0, item.link.lastIndexOf('/'));
item.pubDate = parseDate(item.pubDate);
return item;
})
)
);
ctx.set('data', {
title: feed.title,
link: feed.link,
description: feed.description,
image: `${baseUrl}/static/favicon/apple-touch-icon.png`,
item: items,
language: feed.language,
});
};