2019-07-20 09:03:31 +02:00
|
|
|
const util = require('./util')
|
2019-04-30 15:52:38 +02:00
|
|
|
|
2019-08-07 15:51:34 +02:00
|
|
|
const debug = false
|
2019-08-17 13:58:28 +02:00
|
|
|
const verbose = false
|
2019-08-11 23:28:51 +02:00
|
|
|
const parseEpg = process.env.npm_config_epg || false
|
2019-08-08 02:32:11 +02:00
|
|
|
|
2019-08-07 14:40:58 +02:00
|
|
|
let stats = {
|
2019-08-08 02:32:11 +02:00
|
|
|
total: 0,
|
2019-08-08 01:24:15 +02:00
|
|
|
updated: 0,
|
2019-08-08 02:32:11 +02:00
|
|
|
duplicates: 0,
|
2019-08-19 16:14:55 +02:00
|
|
|
unvalid: 0,
|
|
|
|
removed: 0
|
2019-08-07 14:40:58 +02:00
|
|
|
}
|
|
|
|
let buffer = {}
|
2019-08-19 16:14:55 +02:00
|
|
|
let unsorted = {}
|
2019-07-20 09:06:29 +02:00
|
|
|
|
2019-08-07 14:40:58 +02:00
|
|
|
async function main() {
|
2019-08-08 02:32:11 +02:00
|
|
|
|
2019-08-07 15:51:34 +02:00
|
|
|
console.log(`Parsing 'index.m3u'...`)
|
2019-08-07 14:40:58 +02:00
|
|
|
const playlist = util.parsePlaylist('index.m3u')
|
2019-09-22 15:47:49 +02:00
|
|
|
const countries = playlist.items
|
2019-08-19 16:14:55 +02:00
|
|
|
|
2019-07-20 09:06:29 +02:00
|
|
|
if(debug) {
|
2019-08-07 14:40:58 +02:00
|
|
|
console.log('Debug mode is turn on')
|
2019-07-20 09:06:29 +02:00
|
|
|
}
|
2019-04-30 15:52:38 +02:00
|
|
|
|
2019-08-19 16:14:55 +02:00
|
|
|
const unsortedPlaylist = util.parsePlaylist('channels/unsorted.m3u')
|
|
|
|
for(const item of unsortedPlaylist.items) {
|
2019-10-07 01:45:06 +02:00
|
|
|
unsorted[item.url] = util.createChannel(item)
|
2019-08-19 16:14:55 +02:00
|
|
|
}
|
|
|
|
|
2019-04-30 15:52:38 +02:00
|
|
|
for(let country of countries) {
|
2019-08-12 14:36:42 +02:00
|
|
|
|
|
|
|
if (util.skipPlaylist(country.url)) {
|
|
|
|
continue
|
|
|
|
}
|
2019-08-08 01:50:53 +02:00
|
|
|
|
2019-08-17 13:58:28 +02:00
|
|
|
if(verbose) {
|
2019-08-08 01:50:53 +02:00
|
|
|
console.log(`Clear cache...`)
|
|
|
|
}
|
2019-08-08 01:43:43 +02:00
|
|
|
util.clearCache()
|
|
|
|
|
2019-08-07 15:51:34 +02:00
|
|
|
console.log(`Parsing '${country.url}'...`)
|
2019-08-07 14:40:58 +02:00
|
|
|
const playlist = util.parsePlaylist(country.url)
|
|
|
|
|
2019-08-17 13:58:28 +02:00
|
|
|
if(verbose) {
|
2019-08-07 15:51:34 +02:00
|
|
|
console.log(`Creating channels list...`)
|
|
|
|
}
|
2019-08-07 14:40:58 +02:00
|
|
|
let channels = []
|
|
|
|
for(let item of playlist.items) {
|
2019-10-07 01:45:06 +02:00
|
|
|
let channel = util.createChannel(item)
|
2019-08-08 01:24:15 +02:00
|
|
|
|
2019-08-08 02:32:11 +02:00
|
|
|
if(util.checkCache(channel.url)) {
|
|
|
|
stats.duplicates++
|
|
|
|
} else if(!util.validateUrl(channel.url)) {
|
|
|
|
stats.unvalid++
|
|
|
|
} else {
|
2019-08-08 01:24:15 +02:00
|
|
|
channels.push(channel)
|
|
|
|
util.addToCache(channel.url)
|
|
|
|
}
|
2019-08-19 16:14:55 +02:00
|
|
|
|
|
|
|
if(unsorted[channel.url]) {
|
|
|
|
if(verbose) {
|
|
|
|
console.log(`Removed '${channel.url}' from 'channels/unsorted.m3u'...`)
|
|
|
|
}
|
|
|
|
delete unsorted[channel.url]
|
|
|
|
stats.removed++
|
2019-08-22 16:52:06 +02:00
|
|
|
stats.duplicates++
|
2019-08-19 16:14:55 +02:00
|
|
|
}
|
2019-08-07 14:40:58 +02:00
|
|
|
}
|
2019-04-30 15:52:38 +02:00
|
|
|
|
2019-10-07 03:15:27 +02:00
|
|
|
const epgUrl = playlist.header.attrs['x-tvg-url']
|
2019-08-11 23:28:51 +02:00
|
|
|
if(epgUrl && !buffer[epgUrl] && parseEpg) {
|
2019-08-07 15:51:34 +02:00
|
|
|
console.log(`Loading '${epgUrl}'...`)
|
2019-08-07 14:40:58 +02:00
|
|
|
const epg = await util.loadEPG(epgUrl)
|
2019-08-07 15:51:34 +02:00
|
|
|
console.log(`Adding '${epgUrl}' to buffer...`)
|
2019-08-07 14:40:58 +02:00
|
|
|
buffer[epgUrl] = epg
|
2019-04-30 15:52:38 +02:00
|
|
|
}
|
|
|
|
|
2019-10-23 12:15:46 +02:00
|
|
|
if(buffer[epgUrl]) {
|
|
|
|
console.log('Add missing tvg-id from EPG by channel title...')
|
|
|
|
for(let channel of channels) {
|
|
|
|
for(let channelId in buffer[epgUrl].channels) {
|
|
|
|
let c = buffer[epgUrl].channels[channelId]
|
|
|
|
for(let epgName of c.names) {
|
|
|
|
let regexp = new RegExp(`^${epgName}`, 'i')
|
|
|
|
if(regexp.test(channel.title)) {
|
|
|
|
if(!channel.id) {
|
|
|
|
channel.id = c.id
|
2019-10-23 12:32:36 +02:00
|
|
|
continue
|
2019-10-23 12:15:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-07 15:51:34 +02:00
|
|
|
if(buffer[epgUrl]) {
|
|
|
|
console.log(`Fills in missing channel's data...`)
|
|
|
|
for(let channel of channels) {
|
|
|
|
let channelId = channel.id
|
|
|
|
if(!channelId) continue
|
|
|
|
let c = buffer[epgUrl].channels[channelId]
|
|
|
|
if(!c) continue
|
|
|
|
let updated = false
|
|
|
|
|
|
|
|
if(!channel.name && c.names[0]) {
|
|
|
|
channel.name = c.names[0]
|
|
|
|
updated = true
|
2019-08-17 13:58:28 +02:00
|
|
|
if(verbose) {
|
2019-08-07 15:51:34 +02:00
|
|
|
console.log(`Added name '${c.names[0]}' to '${channel.id}'`)
|
|
|
|
}
|
2019-08-07 14:40:58 +02:00
|
|
|
}
|
|
|
|
|
2019-08-07 15:51:34 +02:00
|
|
|
if(!channel.logo && c.icon) {
|
2019-08-17 13:58:28 +02:00
|
|
|
const icon = c.icon.split('|')[0]
|
|
|
|
channel.logo = icon
|
2019-08-07 15:51:34 +02:00
|
|
|
updated = true
|
2019-08-17 13:58:28 +02:00
|
|
|
if(verbose) {
|
|
|
|
console.log(`Added logo '${icon}' to '${channel.id}'`)
|
2019-08-07 15:51:34 +02:00
|
|
|
}
|
2019-08-07 14:40:58 +02:00
|
|
|
}
|
|
|
|
|
2019-08-07 15:51:34 +02:00
|
|
|
if(updated) {
|
|
|
|
stats.updated++
|
|
|
|
}
|
2019-08-07 14:40:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-17 13:58:28 +02:00
|
|
|
if(verbose) {
|
2019-08-07 15:51:34 +02:00
|
|
|
console.log(`Sorting channels...`)
|
|
|
|
}
|
2019-09-07 23:52:37 +02:00
|
|
|
channels = util.sortByTitleAndUrl(channels)
|
2019-04-30 15:52:38 +02:00
|
|
|
|
2019-08-19 16:14:55 +02:00
|
|
|
if(!debug) {
|
|
|
|
console.log(`Updating '${country.url}'...`)
|
|
|
|
util.createFile(country.url, playlist.getHeader())
|
|
|
|
channels.forEach(channel => {
|
|
|
|
util.appendToFile(country.url, channel.toString())
|
|
|
|
})
|
|
|
|
}
|
2019-04-30 15:52:38 +02:00
|
|
|
|
2019-08-08 02:32:11 +02:00
|
|
|
stats.total += channels.length
|
2019-04-30 15:52:38 +02:00
|
|
|
}
|
|
|
|
|
2019-08-19 16:14:55 +02:00
|
|
|
if(!debug & stats.removed > 0) {
|
|
|
|
console.log(`Updating 'channels/unsorted.m3u'...`)
|
|
|
|
util.createFile('channels/unsorted.m3u', playlist.getHeader())
|
|
|
|
Object.values(unsorted).forEach(channel => {
|
|
|
|
util.appendToFile('channels/unsorted.m3u', channel.toString())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-08-09 23:58:11 +02:00
|
|
|
console.log(`Total: ${stats.total}. Duplicates: ${stats.duplicates}. Unvalid: ${stats.unvalid}. Updated: ${stats.updated}.`)
|
2019-08-07 14:40:58 +02:00
|
|
|
}
|
2019-04-30 15:52:38 +02:00
|
|
|
|
2019-08-07 14:40:58 +02:00
|
|
|
main()
|