Skip to content

Commit

Permalink
feat(route): add 西南交通大学计算机学院本科生教育 (DIYgod#16810)
Browse files Browse the repository at this point in the history
* feat(route): add 西南交通大学计算机学院本科生教育

* Update lib/routes/swjtu/scai/bks.ts
  • Loading branch information
AzureG03 committed Sep 20, 2024
1 parent 9ddfd26 commit a06670e
Showing 1 changed file with 80 additions and 0 deletions.
80 changes: 80 additions & 0 deletions lib/routes/swjtu/scai/bks.ts
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,
};
}

0 comments on commit a06670e

Please sign in to comment.