rsshub
Version:
Make RSS Great Again!
78 lines (68 loc) • 1.89 kB
text/typescript
import { Route } from '@/types';
import cache from '@/utils/cache';
import { load } from 'cheerio';
import { parseDate } from '@/utils/parse-date';
import { ofetch } from 'ofetch';
const rootURL = 'https://sports.swjtu.edu.cn';
const pageURL = `${rootURL}/xwzx.htm`;
export const route: Route = {
path: '/sports',
categories: ['university'],
example: '/swjtu/sports',
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: true,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['sports.swjtu.edu.cn/'],
},
],
name: '体育学院',
description: '新闻资讯',
maintainers: ['AzureG03'],
handler,
};
const getItem = (item, cache) => {
const title = item.find('p.toe').text();
const link = `${rootURL}/${item.find('a').attr('href')}`;
return cache.tryGet(link, async () => {
const res = await ofetch(link);
const $ = load(res);
const pubDate = parseDate(
$('div.info span:nth-of-type(3)')
.text()
.slice(3)
.match(/\d{4}(-|\/|.)\d{1,2}\1\d{1,2}/)?.[0]
);
const description = $('div.detail-wrap').html();
return {
title,
pubDate,
link,
description,
};
});
};
async function handler() {
const res = await ofetch(pageURL);
const $ = load(res);
const $list = $('div.news-list > ul > li');
const items = await Promise.all(
$list.toArray().map((i) => {
const $item = $(i);
return getItem($item, cache);
})
);
return {
title: '西南交大体院-新闻资讯',
link: pageURL,
item: items,
allowEmpty: true,
};
}