rsshub
Version:
Make RSS Great Again!
47 lines (36 loc) • 1.32 kB
text/typescript
import { Route } from '@/types';
import cache from '@/utils/cache';
import got from '@/utils/got';
import { load } from 'cheerio';
import timezone from '@/utils/timezone';
import { parseDate } from '@/utils/parse-date';
import { rootUrl, processItems, fetchData } from './util';
export const route: Route = {
path: '/chinamine-safety/xw/:category{.+}?',
name: 'Unknown',
maintainers: [],
handler,
};
async function handler(ctx) {
const { category = 'yjglbyw' } = ctx.req.param();
const limit = ctx.req.query('limit') ? Number.parseInt(ctx.req.query('limit'), 10) : 30;
const currentUrl = new URL(`xw/${category.endsWith('/') ? category : `${category}/`}`, rootUrl).href;
const { data: response } = await got(currentUrl);
const $ = load(response);
let items = $('div.center_display_right table tbody tr td a')
.slice(0, limit)
.toArray()
.map((item) => {
item = $(item);
return {
title: item.text(),
link: new URL(item.prop('href'), currentUrl).href,
pubDate: timezone(parseDate(item.parent().find('span').text()), +8),
};
});
items = await processItems(items, cache.tryGet);
return {
item: items,
...fetchData($, currentUrl),
};
}