RSSHub/lib/v2/cuc/yz.js

34 lines
917 B
JavaScript

import got from '@/utils/got';
import { load } from 'cheerio';
import { parseDate } from '@/utils/parse-date';
/* 研究生招生网通知公告*/
module.exports = async (ctx) => {
const host = 'https://yz.cuc.edu.cn';
const link = `${host}/8549/list.htm`;
const response = await got({
method: 'get',
url: link,
});
const $ = load(response.data);
const content = $('.news_list li');
const items = content.toArray().map((elem) => {
elem = $(elem);
const a = elem.find('a');
return {
link: new URL(a.attr('href'), host).href,
title: a.attr('title'),
pubDate: parseDate(elem.find('.news_meta').text(), 'YYYY-MM-DD'),
};
});
ctx.set('data', {
title: $('title').text(),
link,
description: '中国传媒大学研究生招生网 通知公告',
item: items,
});
};