mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-07 13:39:35 +08:00
optimize directory structure
This commit is contained in:
59
lib/routes/tencent/wechat/miniprogram/plugins.js
Normal file
59
lib/routes/tencent/wechat/miniprogram/plugins.js
Normal file
@@ -0,0 +1,59 @@
|
||||
const axios = require('../../../../utils/axios');
|
||||
const cheerio = require('cheerio');
|
||||
|
||||
module.exports = async (ctx) => {
|
||||
const link = 'https://developers.weixin.qq.com/community/plugins';
|
||||
const response = await axios({
|
||||
method: 'post',
|
||||
url: `https://developers.weixin.qq.com/community/ngi/plugins/cases?random=${Math.random()}`,
|
||||
headers: {
|
||||
Referer: link,
|
||||
},
|
||||
});
|
||||
|
||||
const { pluginCases } = response.data.data;
|
||||
const resultItem = await Promise.all(
|
||||
pluginCases.map(async (plugin) => {
|
||||
const item = {
|
||||
title: plugin.title,
|
||||
description: '',
|
||||
link: `https://developers.weixin.qq.com/community/develop/doc/${plugin.docid}`,
|
||||
author: plugin.nickname,
|
||||
pubDate: new Date(plugin.createTime * 1000).toUTCString(),
|
||||
};
|
||||
const url = `https://developers.weixin.qq.com/community/ngi/doc/detail/${plugin.docid}`;
|
||||
const key = `miniprogram-plugin: ${url}`;
|
||||
const value = await ctx.cache.get(key);
|
||||
|
||||
if (value) {
|
||||
item.description = value;
|
||||
} else {
|
||||
const pluginDetail = await axios({
|
||||
method: 'get',
|
||||
url: `${url}?random=${Math.random()}`,
|
||||
headers: {
|
||||
Referer: link,
|
||||
},
|
||||
});
|
||||
const id = 'x-rsshub';
|
||||
const $ = cheerio.load(`<div id="${id}">${pluginDetail.data.data.Content}</div>`);
|
||||
$('img').each((index, item) => {
|
||||
item = $(item);
|
||||
item.attr('src', item.attr('data-src'));
|
||||
item.attr('referrerpolicy', 'no-referrer');
|
||||
});
|
||||
|
||||
item.description = $(`#${id}`).html();
|
||||
ctx.cache.set(key, item.description, 24 * 60 * 60);
|
||||
}
|
||||
|
||||
return Promise.resolve(item);
|
||||
})
|
||||
);
|
||||
|
||||
ctx.state.data = {
|
||||
title: '微信小程序插件',
|
||||
link,
|
||||
item: resultItem,
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user