rsshub
Version:
Make RSS Great Again!
73 lines (67 loc) • 2.52 kB
text/typescript
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';
const baseUrl = 'https://www.aac.moj.gov.tw';
export const route: Route = {
path: '/moj/aac/news/:type?',
categories: ['government'],
example: '/gov/moj/aac/news',
parameters: { type: '資料大類,留空為全部' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
name: '最新消息',
maintainers: ['TonyRL'],
handler,
description: `| 全部 | 其他 | 採購公告 | 新聞稿 | 肅貪 | 預防 | 綜合 | 防疫專區 |
| ---- | ---- | -------- | ------ | ---- | ---- | ---- | -------- |
| | 02 | 01 | 06 | 05 | 04 | 03 | 99 |`,
};
async function handler(ctx) {
const type = ctx.req.param('type');
const url = `${baseUrl}/7204/7246/?Page=1&PageSize=40${type ? `&type=${type}` : ''}`;
const response = await got(url);
const $ = load(response.data);
$('.num').remove();
const list = $('.list ul li a')
.toArray()
.map((item) => {
item = $(item);
const isDownload = /檔案下載/.test(item.attr('title'));
const title = isDownload ? item.text().trim() : item.attr('title');
return {
title,
link: new URL(item.attr('href'), baseUrl).href,
isDownload,
};
});
const items = await Promise.all(
list.map((item) =>
cache.tryGet(item.link, async () => {
if (!item.isDownload) {
const response = await got(item.link);
const $ = load(response.data);
item.pubDate = timezone(parseDate($('.info time').attr('datetime'), 'YYYY-MM-DD HH:mm:ss'), +8);
$('.info, button').remove();
item.description = $('.cp').html() + ($('.lightbox_slider').length ? $('.lightbox_slider').html() : '') + ($('.file_download').length ? $('.file_download').html() : '');
}
delete item.isDownload;
return item;
})
)
);
return {
title: $('head title').text(),
link: url,
item: items,
language: 'zh-TW',
};
}