Merge pull request #778 from mcastellaneta/master

Add support for sub_title, url, date, credits
This commit is contained in:
Aleksandr Statciuk 2022-05-08 12:51:50 +03:00 committed by GitHub
commit 46d305f39a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 30 additions and 3 deletions

View file

@ -22,12 +22,24 @@ async function main() {
category: program.category || null,
season: program.season || null,
episode: program.episode || null,
url: program.url || null,
icon: program.icon || null,
channel: program.channel,
sub_title: program.sub_title || null,
date: program.date || null,
lang: program.lang,
start: program.start,
stop: program.stop,
stop: program.stop,
director: program.director || null,
actor: program.actor || null,
writer: program.writer || null,
adapter: program.adapter || null,
producer: program.producer || null,
composer: program.composer || null,
editor: program.editor || null,
presenter: program.presenter || null,
commentator: program.commentator || null,
guest: program.guest || null,
site: item.channel.site,
_qid: result._qid
}

View file

@ -32,6 +32,8 @@ module.exports = {
description: item.description,
season: item.season || null,
episode: item.episode || null,
sub_title : item['episode_title'] || null,
url : parseURL(item),
start,
stop,
icon: parseIcon(item)
@ -47,3 +49,14 @@ function parseIcon(item) {
return cover = item.image ? `https://www.raiplay.it${item.image}` : null
}
function parseURL(item) {
let url = null
if(item.weblink){
url = `https://www.raiplay.it${item.weblink}`
}
if(item.event_weblink){
url = `https://www.raiplay.it${item.event_weblink}`
}
return url
}

View file

@ -34,7 +34,9 @@ it('can parse response', () => {
"Shaun affronta il suo primo intervento. Il caso si rivela complicato e, nonostante Shaun abbia un'idea geniale, sarà Andrews a portare a termine l'operazione.",
season: "3",
episode: "5",
icon: 'https://www.raiplay.it/dl/img/2020/03/09/1583748471860_dddddd.jpg'
sub_title: "La prima volta",
icon: 'https://www.raiplay.it/dl/img/2020/03/09/1583748471860_dddddd.jpg',
url: 'https://www.raiplay.it/dirette/rai2/The-Good-Doctor-S3E5---La-prima-volta-2f81030d-803b-456a-9ea5-40233234fd9d.html'
}
])
})