-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(route): add 西南交通大学计算机学院本科生教育 (#16810)
* feat(route): add 西南交通大学计算机学院本科生教育 * Update lib/routes/swjtu/scai/bks.ts
- Loading branch information
Showing
1 changed file
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
import { Route } from '@/types'; | ||
import cache from '@/utils/cache'; | ||
import { load } from 'cheerio'; | ||
import { parseDate } from '@/utils/parse-date'; | ||
import got from '@/utils/got'; | ||
import { ofetch } from 'ofetch'; | ||
|
||
const rootURL = 'https://scai.swjtu.edu.cn'; | ||
const pageURL = `${rootURL}/web/page-module.html?mid=B730BEB095B31840`; | ||
|
||
export const route: Route = { | ||
path: '/scai/bks', | ||
categories: ['university'], | ||
example: '/swjtu/scai/bks', | ||
parameters: {}, | ||
features: { | ||
requireConfig: false, | ||
requirePuppeteer: false, | ||
antiCrawler: true, | ||
supportBT: false, | ||
supportPodcast: false, | ||
supportScihub: false, | ||
}, | ||
radar: [ | ||
{ | ||
source: ['scai.swjtu.edu.cn/'], | ||
}, | ||
], | ||
name: '计算机与人工智能学院', | ||
description: '本科生教育', | ||
maintainers: ['AzureG03'], | ||
handler, | ||
}; | ||
|
||
const getItem = (item, cache) => { | ||
const title = item.find('a').text(); | ||
const link = `${rootURL}${item.find('a').attr('href').slice(2)}`; | ||
|
||
return cache.tryGet(link, async () => { | ||
const res = await ofetch(link); | ||
const $ = load(res); | ||
|
||
const pubDate = parseDate( | ||
$('div.news-info span:nth-of-type(2)') | ||
.text() | ||
.match(/\d{4}(-|\/|.)\d{1,2}\1\d{1,2}/)[0] | ||
); | ||
const description = $('div.content-main').html(); | ||
return { | ||
title, | ||
pubDate, | ||
link, | ||
description, | ||
}; | ||
}); | ||
}; | ||
|
||
async function handler() { | ||
const res = await got({ | ||
method: 'get', | ||
url: pageURL, | ||
}); | ||
|
||
const $ = load(res.data); | ||
const $list = $('div.list-top-item, div.item-wrapper'); | ||
|
||
const items = await Promise.all( | ||
$list.toArray().map((i) => { | ||
const $item = $(i); | ||
return getItem($item, cache); | ||
}) | ||
); | ||
|
||
return { | ||
title: '西南交大计算机学院-本科生教育', | ||
link: pageURL, | ||
item: items, | ||
allowEmpty: true, | ||
}; | ||
} |