47 lines
1.5 KiB
JavaScript
47 lines
1.5 KiB
JavaScript
const cheerio = require('cheerio');
|
|
const { parseDate } = require('@/utils/parse-date');
|
|
const dayjs = require('dayjs');
|
|
|
|
const baseIndexUrl = 'https://www.sice.uestc.edu.cn/index.htm';
|
|
const host = 'https://www.sice.uestc.edu.cn/';
|
|
|
|
module.exports = async (ctx) => {
|
|
const browser = await require('@/utils/puppeteer')({ stealth: true });
|
|
const page = await browser.newPage();
|
|
await page.setRequestInterception(true);
|
|
page.on('request', (request) => {
|
|
request.resourceType() === 'document' || request.resourceType() === 'script' ? request.continue() : request.abort();
|
|
});
|
|
await page.goto(baseIndexUrl, {
|
|
waitUntil: 'networkidle2',
|
|
});
|
|
const content = await page.content();
|
|
await browser.close();
|
|
|
|
const $ = cheerio.load(content);
|
|
|
|
const out = $('.notice p')
|
|
.map((_, item) => {
|
|
item = $(item);
|
|
const now = dayjs();
|
|
let date = dayjs(now.year() + '-' + item.find('a.date').text());
|
|
if (now < date) {
|
|
date = dayjs(now.year() - 1 + '-' + item.find('a.date').text());
|
|
}
|
|
|
|
return {
|
|
title: item.find('a[href]').text(),
|
|
link: host + item.find('a[href]').attr('href'),
|
|
pubDate: parseDate(date),
|
|
};
|
|
})
|
|
.get();
|
|
|
|
ctx.state.data = {
|
|
title: '信通学院通知',
|
|
link: baseIndexUrl,
|
|
description: '电子科技大学信息与通信工程学院通知公告',
|
|
item: out,
|
|
};
|
|
};
|