63 lines
2.0 KiB
JavaScript
63 lines
2.0 KiB
JavaScript
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';
|
|
|
|
function load_detail(list, cache) {
|
|
return Promise.all(
|
|
list.map((item) => {
|
|
const notice_item = load(item);
|
|
const href = notice_item('a').attr('href');
|
|
const url = 'http://www.shmeea.edu.cn' + href;
|
|
if (href[0] !== '/') {
|
|
return {
|
|
title: notice_item('a').attr('title'),
|
|
description: `<a href="${href}" >附件</a>`,
|
|
link: href,
|
|
};
|
|
}
|
|
return cache.tryGet(url, async () => {
|
|
const detail_response = await got({
|
|
method: 'get',
|
|
url,
|
|
headers: {
|
|
Referer: 'http://www.shmeea.edu.cn/page/04000/index.html',
|
|
Host: 'www.shmeea.edu.cn',
|
|
},
|
|
});
|
|
const detail = load(detail_response.data);
|
|
return {
|
|
title: notice_item('a').attr('title'),
|
|
description: detail('.Article_content').html(),
|
|
link: url,
|
|
pubDate: timezone(parseDate(detail('.PBtime').text(), 'YYYY-MM-DD HH:mm:ss'), +8),
|
|
};
|
|
});
|
|
})
|
|
);
|
|
}
|
|
|
|
module.exports = async (ctx) => {
|
|
const response = await got({
|
|
method: 'get',
|
|
url: 'http://www.shmeea.edu.cn/page/04000/index.html',
|
|
headers: {
|
|
Host: 'www.shmeea.edu.cn',
|
|
},
|
|
});
|
|
|
|
const data = response.data;
|
|
|
|
const $ = load(data);
|
|
const list = $('#main > div.container > div > div.span9 > div.page-he > div > ul > li').get();
|
|
|
|
const detail = await load_detail(list, cache);
|
|
|
|
ctx.set('data', {
|
|
title: '上海自学考试 - 通知公告',
|
|
link: 'http://www.shmeea.edu.cn/page/04000/index.html',
|
|
item: detail,
|
|
});
|
|
};
|