mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 12:21:31 +08:00
* 南京艺术学院研究生院 * Update lib/v2/nua/gra.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/nua/gra.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/nua/gra.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/nua/radar.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/nua/radar.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/nua/gra.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/nua/gra.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update docs/university.md Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update docs/university.md Co-authored-by: Tony <TonyRL@users.noreply.github.com> * 优化代码 * 优化 * update * 补充南京艺术学院 * fix * fix * fix * 更新南京艺术学院数据源。 * 更新南京艺术学院数据源。 * fix * fix * update * fix doc * fix * Update lib/v2/nua/radar.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * fix: yarn.lock permission * style: auto format * fix double fetch same page * Update dc.js * Revert "Merge branch 'master' of https://github.com/evnydd0sf/RSS-Hub" This reverts commitdd56f9469b, reversing changes made tod900050eb8. * fix * Revert "fix" This reverts commit820ff88120. * Revert "Revert "Merge branch 'master' of https://github.com/evnydd0sf/RSS-Hub"" This reverts commitce67e0b53c. * 增加微信公众号解析引导。 * 修正url * 适配微信公众号内容。 * 适配站内文章、微信公号号文章和未知文章引导。 * Update wechat-mp.js * fix fetch wechat bug * 增加设计学院研创、后浪模块 * bugfix * Revert "Merge branch 'DIYgod:master' into master" This reverts commit102cb48db6, reversing changes made toccac4be518. * Update university.md * Revert "Revert "Merge branch 'DIYgod:master' into master"" This reverts commitc8841910b8. * fix fetch listname * fix: switch default case Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
81 lines
2.6 KiB
JavaScript
81 lines
2.6 KiB
JavaScript
const got = require('@/utils/got');
|
|
const cheerio = require('cheerio');
|
|
const { parseDate } = require('@/utils/parse-date');
|
|
const timezone = require('@/utils/timezone');
|
|
const { fetchArticle } = require('@/utils/wechat-mp');
|
|
|
|
const pageType = (href) => {
|
|
if (!href.startsWith('http')) {
|
|
return 'in-nua';
|
|
}
|
|
const url = new URL(href);
|
|
if (url.hostname === 'mp.weixin.qq.com') {
|
|
return 'wechat-mp';
|
|
} else if (url.hostname === 'www.nua.edu.cn') {
|
|
return 'nua';
|
|
} else {
|
|
return 'unknown';
|
|
}
|
|
};
|
|
|
|
function arti_link(text, href) {
|
|
return `<a href="${href}">${text}</a>`;
|
|
}
|
|
|
|
async function ProcessList(newsUrl, baseUrl, listName, listDate, webPageName) {
|
|
const result = await got(newsUrl, {
|
|
https: {
|
|
rejectUnauthorized: false,
|
|
},
|
|
});
|
|
const $ = cheerio.load(result.data);
|
|
|
|
const pageName = $(webPageName).text();
|
|
|
|
const items = $(listName)
|
|
.toArray()
|
|
.map((item) => {
|
|
item = $(item);
|
|
const href = $(item).find('a').attr('href');
|
|
const type = pageType(href);
|
|
|
|
return {
|
|
link: type === 'in-nua' ? baseUrl + href : href,
|
|
title: item.find('a').attr('title'),
|
|
pubDate: timezone(parseDate(item.find(listDate).first().text(), 'YYYY-MM-DD'), +8),
|
|
type,
|
|
};
|
|
});
|
|
|
|
return [items, pageName];
|
|
}
|
|
|
|
const ProcessFeed = async (items, artiContent, ctx) =>
|
|
await Promise.all(
|
|
items.map((item) =>
|
|
ctx.cache.tryGet(item.link, async () => {
|
|
switch (item.type) {
|
|
case 'in-nua' || 'nua':
|
|
// eslint-disable-next-line no-case-declarations
|
|
const result = await got(item.link, { https: { rejectUnauthorized: false } });
|
|
// eslint-disable-next-line no-case-declarations
|
|
const $ = cheerio.load(result.data);
|
|
item.author = $('.arti_publisher').text() + ' ' + $('.arti_views').text();
|
|
item.description = $(artiContent).html();
|
|
return item;
|
|
case 'wechat-mp':
|
|
return fetchArticle(ctx, item.link);
|
|
case 'unknown':
|
|
default:
|
|
item.description = `暂不支持解析该内容,请点击 ${arti_link('原文', item.link)}`;
|
|
return item;
|
|
}
|
|
})
|
|
)
|
|
);
|
|
|
|
module.exports = {
|
|
ProcessList,
|
|
ProcessFeed,
|
|
};
|