rsshub
Version:
Make RSS Great Again!
47 lines (40 loc) • 1.16 kB
text/typescript
import { Route } from '@/types';
import got from '@/utils/got';
import { load } from 'cheerio';
import { parseDate } from '@/utils/parse-date';
const rootUrl = 'https://www.gz.gov.cn';
const urlMap = {
gzyw: 'gzyw',
jrtt: 'jrtt',
tzgg: 'tzgg',
zcjd: 'zcjd/zcjd',
};
export const route: Route = {
path: '/gz/:channel/:category',
name: 'Unknown',
maintainers: [],
handler,
};
async function handler(ctx) {
const channel = ctx.req.param('channel');
const category = ctx.req.param('category');
const url = `${rootUrl}/${channel}/${urlMap[category]}/`;
const response = await got(url);
const $ = load(response.data);
const items = $('.news_list li')
.toArray()
.map((item) => {
item = $(item);
const href = item.find('a').attr('href');
return {
title: item.find('a').attr('title'),
link: href,
pubDate: parseDate(item.find('span').text()),
};
});
return {
title: `广州市人民政府 - ${$('.main_title').text()}`,
link: url,
item: items,
};
}