mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 01:28:08 +08:00
39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
const got = require('@/utils/got');
|
|
const cheerio = require('cheerio');
|
|
const { parseDate } = require('@/utils/parse-date');
|
|
const path = require('path');
|
|
const { art } = require('@/utils/render');
|
|
|
|
const rootUrl = `https://www.ssm.gov.mo`;
|
|
const newsUrl = `${rootUrl}/apps1/content/ch/973/itemlist.aspx?defaultcss=false&dlimit=20&showdate=true&dorder=cridate%20desc,displaydate%20desc&withattach=true`;
|
|
|
|
module.exports = async (ctx) => {
|
|
const response = await got.get(newsUrl);
|
|
const $ = cheerio.load(response.data);
|
|
const list = $('body > div > div > ul > li');
|
|
|
|
const item = list
|
|
.map((_, item) => {
|
|
const title = $(item).find('a').text();
|
|
const link = $(item).find('a').attr('href');
|
|
const pubDate = parseDate($(item).find('small').text().split(':')[1].trim(), 'DD/MM/YYYY');
|
|
const desc = art(path.join(__dirname, 'templates/news.art'), {
|
|
link,
|
|
});
|
|
|
|
return {
|
|
title,
|
|
link,
|
|
description: desc,
|
|
pubDate,
|
|
};
|
|
})
|
|
.get();
|
|
|
|
ctx.state.data = {
|
|
title: '澳门卫生局-最新消息',
|
|
link: rootUrl,
|
|
item,
|
|
};
|
|
};
|