|
|
|
@ -16,20 +16,30 @@ async function main() {
|
|
|
|
|
for (let item of index.items) {
|
|
|
|
|
console.log(`Processing '${item.url}'...`)
|
|
|
|
|
let playlist = parsePlaylist(item.url)
|
|
|
|
|
if(config.debug) { console.log(`Sorting channels...`) }
|
|
|
|
|
if (config.debug) {
|
|
|
|
|
console.log(`Sorting channels...`)
|
|
|
|
|
}
|
|
|
|
|
playlist = sortChannels(playlist)
|
|
|
|
|
if(config.debug) { console.log(`Removing duplicates...`) }
|
|
|
|
|
if (config.debug) {
|
|
|
|
|
console.log(`Removing duplicates...`)
|
|
|
|
|
}
|
|
|
|
|
playlist = removeDuplicates(playlist)
|
|
|
|
|
|
|
|
|
|
if (config.epg) {
|
|
|
|
|
const tvgUrl = playlist.header.attrs['x-tvg-url']
|
|
|
|
|
if (tvgUrl) {
|
|
|
|
|
if(config.debug) { console.log(`Loading EPG from '${tvgUrl}'...`) }
|
|
|
|
|
if (config.debug) {
|
|
|
|
|
console.log(`Loading EPG from '${tvgUrl}'...`)
|
|
|
|
|
}
|
|
|
|
|
const epg = await loadEPG(tvgUrl)
|
|
|
|
|
if(config.debug) { console.log(`Adding the missing data from EPG...`) }
|
|
|
|
|
if (config.debug) {
|
|
|
|
|
console.log(`Adding the missing data from EPG...`)
|
|
|
|
|
}
|
|
|
|
|
playlist = addDataFromEPG(playlist, epg)
|
|
|
|
|
} else {
|
|
|
|
|
if(config.debug) { console.log(`EPG source is not found`) }
|
|
|
|
|
if (config.debug) {
|
|
|
|
|
console.log(`EPG source is not found`)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -68,7 +78,9 @@ function parsePlaylist(url) {
|
|
|
|
|
function sortChannels(playlist) {
|
|
|
|
|
const channels = JSON.stringify(playlist.items)
|
|
|
|
|
playlist.items = helper.sortBy(playlist.items, ['title', 'url'])
|
|
|
|
|
if(channels !== JSON.stringify(playlist.items)) { playlist.changed = true }
|
|
|
|
|
if (channels !== JSON.stringify(playlist.items)) {
|
|
|
|
|
playlist.changed = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return playlist
|
|
|
|
|
}
|
|
|
|
@ -82,13 +94,17 @@ function removeDuplicates(playlist) {
|
|
|
|
|
if (result) {
|
|
|
|
|
buffer[i.url] = true
|
|
|
|
|
} else {
|
|
|
|
|
if(config.debug) { console.log(`Duplicate of '${i.title}' has been removed`) }
|
|
|
|
|
if (config.debug) {
|
|
|
|
|
console.log(`Duplicate of '${i.title}' has been removed`)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
if(channels !== JSON.stringify(playlist.items)) { playlist.changed = true }
|
|
|
|
|
if (channels !== JSON.stringify(playlist.items)) {
|
|
|
|
|
playlist.changed = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return playlist
|
|
|
|
|
}
|
|
|
|
@ -115,19 +131,25 @@ function addDataFromEPG(playlist, epg) {
|
|
|
|
|
if (!item.name && channel.name.length) {
|
|
|
|
|
item.name = channel.name[0].value
|
|
|
|
|
playlist.changed = true
|
|
|
|
|
if(config.debug) { console.log(`Added tvg-name '${item.name}' to '${item.title}'`) }
|
|
|
|
|
if (config.debug) {
|
|
|
|
|
console.log(`Added tvg-name '${item.name}' to '${item.title}'`)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!item.language && channel.name.length && channel.name[0].lang) {
|
|
|
|
|
item.language = channel.name[0].lang
|
|
|
|
|
playlist.changed = true
|
|
|
|
|
if(config.debug) { console.log(`Added tvg-language '${item.language}' to '${item.title}'`) }
|
|
|
|
|
if (config.debug) {
|
|
|
|
|
console.log(`Added tvg-language '${item.language}' to '${item.title}'`)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!item.logo && channel.icon.length) {
|
|
|
|
|
item.logo = channel.icon[0]
|
|
|
|
|
playlist.changed = true
|
|
|
|
|
if(config.debug) { console.log(`Added tvg-logo '${item.logo}' to '${item.title}'`) }
|
|
|
|
|
if (config.debug) {
|
|
|
|
|
console.log(`Added tvg-logo '${item.logo}' to '${item.title}'`)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|