rsshub
Version:
Make RSS Great Again!
47 lines (38 loc) • 1.56 kB
text/typescript
import { Route } from '@/types';
import cache from '@/utils/cache';
import ofetch from '@/utils/ofetch';
export const route: Route = {
path: '/:type?',
name: 'Unknown',
maintainers: ['Fatpandac'],
handler,
};
async function handler(ctx) {
const type = ctx.req.param('type') === 'all' ? '' : ctx.req.param('type').toUpperCase();
const host = `https://td.zjgtjy.cn:8553/devops/noticeInfo/queryNoticeInfoList?pageSize=10&pageNumber=1¬iceType=${type}&sort=DESC`;
const response = await ofetch(host);
const data = response.data;
const items = await Promise.all(
data.map(async (item) => {
const pageUrl = `https://td.zjgtjy.cn:8553/devops/noticeInfo/queryNoticeLandContentDetails?noticeId=${item.GGID}&transactionMode=${item.JYFS}`;
const pageLink = `https://td.zjgtjy.cn/view/trade/announcement/detail?id=${item.GGID}&category=${item.ZYLB}&type=${item.JYFS}`;
const desc = await cache.tryGet(pageUrl, async () => {
let desc = await ofetch(pageUrl);
desc = desc.queryNoticeContent.GGNR;
desc = desc.replaceAll('<', '<').replaceAll('>', '>').replaceAll('"', '"');
return desc;
});
return {
title: item.GGMC,
description: desc,
link: pageLink,
pubDate: item.GGFBSJ,
};
})
);
return {
title: '浙江土地使用权挂牌公告',
link: host,
item: items,
};
}