-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(route): add 中国科普博览直播回看 (#13975)
* feat(route): add 中国科普博览直播回看 * docs: remove rssbud
- Loading branch information
Showing
6 changed files
with
147 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,89 @@ | ||
const got = require('@/utils/got'); | ||
const timezone = require('@/utils/timezone'); | ||
const { parseDate } = require('@/utils/parse-date'); | ||
const { art } = require('@/utils/render'); | ||
const path = require('path'); | ||
|
||
module.exports = async (ctx) => { | ||
const limit = ctx.query.limit ? parseInt(ctx.query.limit, 10) : 50; | ||
|
||
const rootUrl = 'https://live.kepu.net.cn'; | ||
const apiRootUrl = 'https://live.kepu.net.cn:8089'; | ||
|
||
const currentUrl = new URL('replay/index', rootUrl).href; | ||
const apiUrl = new URL('index.php/front/index/replay_list', apiRootUrl).href; | ||
|
||
const { data: response } = await got.post(apiUrl, { | ||
form: { | ||
page: 1, | ||
size: limit, | ||
}, | ||
}); | ||
|
||
let items = response.data.data.slice(0, limit).map((item) => ({ | ||
title: item.title, | ||
link: new URL(`live/index?id=${item.id}`, rootUrl).href, | ||
description: item.desc, | ||
author: item.company, | ||
guid: item.id, | ||
pubDate: timezone(parseDate(item.live_start_time ?? item.start_time), +8), | ||
updated: timezone(parseDate(item.live_end_time ?? item.end_time), +8), | ||
itunes_item_image: new URL(item.cover, apiRootUrl).href, | ||
comments: item.display_comment ?? 0, | ||
})); | ||
|
||
items = await Promise.all( | ||
items.map((item) => | ||
ctx.cache.tryGet(item.link, async () => { | ||
const apiReplayUrl = new URL('index.php/front/live/replay_url', apiRootUrl).href; | ||
|
||
const { data: detailResponse } = await got.post(apiReplayUrl, { | ||
form: { | ||
id: item.guid, | ||
}, | ||
}); | ||
|
||
item.guid = `kepu-live#${item.guid}`; | ||
item.enclosure_url = detailResponse.data.RecordIndexInfoList.RecordIndexInfo.pop()?.RecordUrl; | ||
|
||
if (item.enclosure_url) { | ||
item.enclosure_type = `video/${item.enclosure_url.split(/\./).pop()}`; | ||
} | ||
|
||
item.description = art(path.join(__dirname, 'templates/description.art'), { | ||
image: { | ||
src: item.itunes_item_image, | ||
alt: item.title, | ||
}, | ||
video: { | ||
src: item.enclosure_url, | ||
type: item.enclosure_type, | ||
poster: item.itunes_item_image, | ||
}, | ||
description: item.description, | ||
}); | ||
|
||
return item; | ||
}) | ||
) | ||
); | ||
|
||
const icon = new URL('favicon.ico', rootUrl).href; | ||
const author = '中国科普博览'; | ||
const subtitle = '直播回看'; | ||
|
||
ctx.state.data = { | ||
item: items, | ||
title: `${author} - ${subtitle}`, | ||
link: currentUrl, | ||
description: '科学直播(live.kepu.net.cn)', | ||
language: 'zh', | ||
icon, | ||
logo: icon, | ||
subtitle, | ||
author, | ||
itunes_author: author, | ||
itunes_category: 'Science', | ||
allowEmpty: true, | ||
}; | ||
}; |
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,3 @@ | ||
module.exports = { | ||
'/live': ['nczitzk'], | ||
}; |
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,13 @@ | ||
module.exports = { | ||
'kepu.net.cn': { | ||
_name: '中国科普博览', | ||
live: [ | ||
{ | ||
title: '直播回看', | ||
docs: 'https://docs.rsshub.app/routes/new-media#zhong-guo-ke-pu-bo-lan-zhi-bo-hui-kan', | ||
source: ['/replay/index'], | ||
target: '/kepu/live', | ||
}, | ||
], | ||
}, | ||
}; |
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,3 @@ | ||
module.exports = (router) => { | ||
router.get('/live', require('./live')); | ||
}; |
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,33 @@ | ||
{{ if image?.src }} | ||
<figure> | ||
<img | ||
{{ if image.alt }} | ||
alt="{{ image.alt }}" | ||
{{ /if }} | ||
src="{{ image.src }}"> | ||
</figure> | ||
{{ /if }} | ||
|
||
{{ if intro }} | ||
<p>{{ intro }}</p> | ||
{{ /if }} | ||
|
||
{{ if video?.src }} | ||
<video | ||
{{ set poster = video.poster || image?.src }} | ||
{{ if poster }} | ||
poster="{{ poster }}" | ||
{{ /if }} | ||
controls> | ||
<source | ||
src="{{ video.src }}" | ||
type="{{ video.type }}"> | ||
<object data="{{ video.src }}"> | ||
<embed src="{{ video.src }}"> | ||
</object> | ||
</video> | ||
{{ /if }} | ||
|
||
{{ if description }} | ||
<p>{{ description }}</p> | ||
{{ /if }} |
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