forked from DIYgod/RSSHub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2052 from DIYgod/master
[pull] master from diygod:master
- Loading branch information
Showing
3 changed files
with
101 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import type { Namespace } from '@/types'; | ||
|
||
export const namespace: Namespace = { | ||
name: '東森新聞', | ||
url: 'ebc.net.tw', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
import { Route } from '@/types'; | ||
import cache from '@/utils/cache'; | ||
import got from '@/utils/got'; | ||
import { load } from 'cheerio'; | ||
import { parseDate } from '@/utils/parse-date'; | ||
|
||
export const route: Route = { | ||
path: '/realtime/:category?', | ||
categories: ['traditional-media'], | ||
example: '/ebc/realtime/politics', | ||
parameters: { | ||
category: 'Category from the last segment of the URL of the corresponding site', | ||
}, | ||
features: { | ||
requirePuppeteer: false, | ||
antiCrawler: false, | ||
supportBT: false, | ||
supportPodcast: false, | ||
supportScihub: false, | ||
requireConfig: false, | ||
}, | ||
name: '即時新聞', | ||
maintainers: ['quiniapiezoelectricity'], | ||
handler, | ||
description: '', | ||
radar: [ | ||
{ | ||
source: ['news.ebc.net.tw/realtime/:category'], | ||
target: '/:category', | ||
}, | ||
], | ||
}; | ||
|
||
async function handler(ctx) { | ||
const category = ctx.req.param('category') ?? ''; | ||
const response = await got('https://news.ebc.net.tw/list/load', { | ||
method: 'POST', | ||
headers: { | ||
Accept: '*/*', | ||
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8', | ||
'X-Requested-With': 'XMLHttpRequest', | ||
}, | ||
body: new URLSearchParams({ | ||
list_type: 'realtime', | ||
cate_code: category, | ||
page: '1', | ||
}).toString(), | ||
}); | ||
const $ = load(response.data); | ||
const feed = $('div.list > a') | ||
.toArray() | ||
.map((item) => new URL($(item).attr('href') ?? '', 'https://news.ebc.net.tw').href); | ||
const items = await Promise.all( | ||
feed.map((url) => | ||
cache.tryGet(url, async () => { | ||
const response = await got(url); | ||
const $ = load(response.data); | ||
const metadata = $('[type="application/ld+json"]') | ||
.toArray() | ||
.flatMap((item) => JSON.parse($(item).text())) | ||
.find((item) => item['@type'] === 'NewsArticle'); | ||
// handle image box | ||
$('.img_box').each((_, elem) => { | ||
$(elem) | ||
.children('div.img_caption') | ||
.replaceWith($(`<figcaption>${$(elem).children('div.img_caption').text()}</figcaption>`)); | ||
$(elem).children('div.img').children().unwrap(); | ||
$(elem).wrapInner($('<figure></figure>')); | ||
}); | ||
// handle small text | ||
$('[style="font-size:16px;"]').each((_, elem) => { | ||
$(elem).replaceWith(`<small>${$(elem).text()}</small>`); | ||
}); | ||
const cover = $('div.article_cover'); | ||
const content = $('div.article_content'); | ||
content.find('.inline_text, .inline_box, .rss_box').remove(); | ||
return { | ||
title: metadata.headline, | ||
link: url, | ||
pubDate: parseDate(metadata.datePublished), | ||
author: metadata.author.name, | ||
description: cover.html() + content.html(), | ||
category: metadata.keywords ? [metadata.articleSection, ...metadata.keywords.split(',')] : [metadata.articleSection], | ||
}; | ||
}) | ||
) | ||
); | ||
return { | ||
title: '東森新聞|即時', | ||
link: category ? `https://news.ebc.net.tw/realtime/${category}` : 'https://news.ebc.net.tw/realtime', | ||
language: 'zh-TW', | ||
item: items, | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters