RSSHub/lib/routes/pts/live.ts

75 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { Route } from '@/types';
import cache from '@/utils/cache';
import got from '@/utils/got';
import { parseDate } from '@/utils/parse-date';
import { renderLive } from './templates/live';
export const route: Route = {
path: '/live/:id',
categories: ['traditional-media'],
example: '/pts/live/62e8e4bbb4de2cbd74468b2b',
parameters: { id: '報導 id可在对应整理報導页 URL 中找到' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['news.pts.org.tw/live/:id', 'news.pts.org.tw/'],
},
],
name: '整理報導',
maintainers: [],
handler,
};
async function handler(ctx) {
const id = ctx.req.param('id');
const rootUrl = 'https://news.pts.org.tw';
const currentUrl = `${rootUrl}/live/${id}`;
const apiUrl = `${rootUrl}/live/api/liveblog/${id}`;
const imageRootUrl = 'https://dkjm35kkdt2ag.cloudfront.net';
const response = await got({
method: 'get',
url: apiUrl,
});
let items = response.data.data.blogArticleList.slice(0, ctx.req.query('limit') ? Number.parseInt(ctx.req.query('limit')) : 30).map((item) => ({
link: `${rootUrl}/live/api/liveblog/article?articleId=${item}&model=main`,
}));
items = await Promise.all(
items.map((item) =>
cache.tryGet(item.link, async () => {
const detailResponse = await got({
method: 'get',
url: item.link,
});
const data = detailResponse.data.data;
item.title = data.title;
item.pubDate = parseDate(data.updatedDate);
item.description = renderLive({
images: data.content.filter((d) => d.type === 'img').map((i) => `${imageRootUrl}/${i.imgFileUrl}`),
texts: data.content.filter((d) => d.type === 'text').map((t) => t.content),
});
return item;
})
)
);
return {
title: `公視新聞網 PNN - ${response.data.data.title.replace(/【不斷更新】/, '')}`,
link: currentUrl,
item: items,
};
}