Skip to content

Commit

Permalink
feat(route): add route for https://jw.cdu.edu.cn/ (DIYgod#16548)
Browse files Browse the repository at this point in the history
* feat(route): add route for https://jw.cdu.edu.cn/

添加了成都大学教务处公告通知

* Update jwgg.ts

gwgg-->jwgg

* Update jwgg.ts

https://jw.cdu.edu.cn/jwgg.html-->https://jw.cdu.edu.cn/jwgg.htm

* Delete lib/cdu directory

incorrect directory place

* Add files via upload

add cdu

* Add files via upload

fix:
Enforce consistent linebreak style
Error
Expected linebreaks to be 'LF' but found 'CRLF'.

* Add files via upload

fix namespace.ts's
Error
Expected linebreaks to be 'LF' but found 'CRLF'.

* Add files via upload

correct some errors

* Add files via upload

修复了不匹配问题

* Update jwgg.ts

////-->/**/

* Update jwgg.ts

Enforce consistent spacing after the `//` or `/*` in a comment
one tab

* Update jwgg.ts

A space has been added after /*

* Add files via upload

description repair try

* Update jwgg.ts

A space has been added after /*

* Update lib/routes/cdu/jwgg.ts

update maintainers

Co-authored-by: Tony <TonyRL@users.noreply.github.com>

* Update jwgg.ts

/**/ was used instead of ////

* Update lib/routes/cdu/namespace.ts

---------
  • Loading branch information
uuwor authored Aug 29, 2024
1 parent d1a4598 commit e884dc4
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 0 deletions.
79 changes: 79 additions & 0 deletions lib/routes/cdu/jwgg.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
import { Route } from '@/types';
import cache from '@/utils/cache';
import got from '@/utils/got';
import { load } from 'cheerio';
import { parseDate } from '@/utils/parse-date';
import timezone from '@/utils/timezone';

export const route: Route = {
path: '/jwgg',
categories: ['university'],
example: '/cdu/jwgg',
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['jw.cdu.edu.cn/'],
},
],
name: '教务处通知公告',
maintainers: ['uuwor'],
handler,
url: 'jw.cdu.edu.cn/',
};

async function handler() {
const url = 'https://jw.cdu.edu.cn/jwgg.htm';// 数据来源网页(待提取网页)
const response = await got.get(url);
const data = response.data;
const $ = load(data);
const list = $('.ListTable.dataTable.no-footer tbody tr[role="row"].odd')
.slice(0, 10)
.toArray()
.map((e) => {
const element = $(e);
const title = element.find('tr.odd a').text().trim();/* 1.选择器 tr.odd a:这个选择器查找具有 class="odd" 的 <tr> 元素下的 <a> 标签。
2..text():该方法获取选中元素的文本内容。
3..trim():用于去掉字符串前后的空格,确保得到干净的文本。*/
const link = element.find('tr.odd a').attr('href');
const date = element
.find('tr.odd td.columnDate')
.text()
.match(/\d{4}-\d{2}-\d{2}/);
const pubDate = timezone(parseDate(date), 8);

return {
title,
link: 'https://jw.cdu.edu.cn/' + link,
author: '成都大学教务处通知公告',
pubDate,
};
});

const result = await Promise.all(
list.map((item) =>
cache.tryGet(item.link, async () => {
const itemReponse = await got.get(item.link);
const data = itemReponse.data;
const itemElement = load(data);

item.description = itemElement('.v_news_content').html();

return item;
})
)
);

return {
title: '成大教务处通知公告',
link: url,
item: result,
};
}
6 changes: 6 additions & 0 deletions lib/routes/cdu/namespace.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import type { Namespace } from '@/types';

export const namespace: Namespace = {
name: '成都大学',
url: 'www.cdu.edu.cn',
};

0 comments on commit e884dc4

Please sign in to comment.