iptv/helpers/util.js

259 lines
5.8 KiB
JavaScript
Raw Normal View History

2019-07-20 09:03:31 +02:00
const fs = require("fs")
const path = require('path')
2019-10-06 04:12:18 +02:00
const parser = require('iptv-playlist-parser')
const axios = require('axios')
const zlib = require("zlib")
2019-10-30 16:44:26 +01:00
const epgParser = require('epg-parser')
const urlParser = require('url')
2019-11-01 15:15:33 +01:00
const ISO6391 = require('iso-639-1')
2019-09-14 02:08:20 +02:00
const supportedCategories = [ 'Auto','Business', 'Classic','Comedy','Documentary','Education','Entertainment', 'Family','Fashion','Food', 'General', 'Health', 'History', 'Hobby', 'Kids', 'Legislative','Lifestyle','Local', 'Movies', 'Music', 'News', 'Quiz', 'Religious','Sci-Fi', 'Shop', 'Sport', 'Travel', 'Weather', 'XXX' ]
const blacklist = [
'80.80.160.168', // repeats on a loop
'63.237.48.3', // not a live stream
'189.216.247.113', // not working streams
]
let cache = {}
class Playlist {
constructor(data) {
this.header = data.header
this.items = data.items
2019-07-20 09:03:31 +02:00
}
getHeader() {
let parts = ['#EXTM3U']
for(let key in this.header.attrs) {
let value = this.header.attrs[key]
2019-10-07 01:45:06 +02:00
if(value) {
parts.push(`${key}="${value}"`)
}
}
2019-07-20 09:03:31 +02:00
return `${parts.join(' ')}\n`
2019-07-20 09:03:31 +02:00
}
}
2019-07-20 09:03:31 +02:00
class Channel {
constructor(data) {
2019-10-07 01:45:06 +02:00
this.id = data.tvg.id
this.name = data.tvg.name
2019-11-01 15:15:33 +01:00
this.language = this._filterLanguage(data.tvg.language)
2019-10-07 01:45:06 +02:00
this.logo = data.tvg.logo
2019-11-01 15:11:31 +01:00
this.group = this._filterGroup(data.group.title)
this.url = data.url
2019-10-07 01:45:06 +02:00
this.title = data.name
2019-07-20 09:03:31 +02:00
}
2019-11-01 15:11:31 +01:00
_filterGroup(groupTitle) {
if(!groupTitle) return ''
2019-09-14 02:08:20 +02:00
const groupIndex = supportedCategories.map(g => g.toLowerCase()).indexOf(groupTitle.toLowerCase())
2019-07-20 09:03:31 +02:00
if(groupIndex === -1) {
groupTitle = ''
} else {
2019-09-14 02:08:20 +02:00
groupTitle = supportedCategories[groupIndex]
2019-07-20 09:03:31 +02:00
}
return groupTitle
}
2019-11-01 15:15:33 +01:00
_filterLanguage(languageName) {
if(ISO6391.getCode(languageName) !== '') {
return languageName
}
return ''
}
toString() {
const info = `-1 tvg-id="${this.id}" tvg-name="${this.name}" tvg-language="${this.language}" tvg-logo="${this.logo}" group-title="${this.group}",${this.title}`
return '#EXTINF:' + info + '\n' + this.url + '\n'
2019-07-20 09:03:31 +02:00
}
}
2019-08-07 15:51:34 +02:00
function parsePlaylist(filename) {
const content = readFile(filename)
2019-10-06 04:12:18 +02:00
const result = parser.parse(content)
2019-08-07 15:51:34 +02:00
2019-10-07 01:45:06 +02:00
return new Playlist(result)
2019-07-20 09:03:31 +02:00
}
2019-08-07 15:51:34 +02:00
function createChannel(data) {
2019-10-07 01:45:06 +02:00
return new Channel(data)
}
async function loadEPG(url) {
2019-10-30 16:44:26 +01:00
const content = await getEPGFile(url)
const result = epgParser.parse(content)
const channels = {}
for(let channel of result.channels) {
channels[channel.id] = channel
}
return Promise.resolve({
url,
2019-10-30 16:44:26 +01:00
channels
})
}
2019-10-30 16:44:26 +01:00
function getEPGFile(url) {
2019-08-07 15:51:34 +02:00
return new Promise((resolve, reject) => {
var buffer = []
axios({
method: 'get',
url: url,
responseType:'stream'
}).then(res => {
let stream
2019-10-30 16:44:26 +01:00
if(/\.gz$/i.test(url)) {
let gunzip = zlib.createGunzip()
res.data.pipe(gunzip)
stream = gunzip
} else {
stream = res.data
}
stream.on('data', function(data) {
2019-08-07 15:51:34 +02:00
buffer.push(data.toString())
}).on("end", function() {
resolve(buffer.join(""))
}).on("error", function(e) {
reject(e)
})
}).catch(e => {
2019-08-07 15:51:34 +02:00
reject(e)
})
})
2019-07-20 09:03:31 +02:00
}
2019-09-07 23:51:06 +02:00
function byTitleAndUrl(a, b) {
var titleA = a.title.toLowerCase()
var titleB = b.title.toLowerCase()
var urlA = a.url.toLowerCase()
var urlB = b.url.toLowerCase()
if(titleA < titleB) return -1
if(titleA > titleB) return 1
if(urlA < urlB) return -1
if(urlA > urlB) return 1
2019-07-20 09:03:31 +02:00
return 0
}
2019-09-07 23:51:06 +02:00
function sortByTitleAndUrl(arr) {
return arr.sort(byTitleAndUrl)
2019-07-20 09:03:31 +02:00
}
2019-08-07 15:51:34 +02:00
function readFile(filename) {
return fs.readFileSync(path.resolve(__dirname) + `/../${filename}`, { encoding: "utf8" })
}
function appendToFile(filename, data) {
2019-07-20 09:32:57 +02:00
fs.appendFileSync(path.resolve(__dirname) + '/../' + filename, data)
2019-07-20 09:03:31 +02:00
}
2019-07-20 09:32:57 +02:00
function createFile(filename, data) {
fs.writeFileSync(path.resolve(__dirname) + '/../' + filename, data)
2019-07-20 09:03:31 +02:00
}
function getBasename(filename) {
return path.basename(filename, path.extname(filename))
}
function addToCache(url) {
let id = getUrlPath(url)
cache[id] = true
}
function checkCache(url) {
let id = getUrlPath(url)
return cache.hasOwnProperty(id)
}
2019-08-08 01:41:54 +02:00
function clearCache() {
cache = {}
}
function getUrlPath(u) {
let parsed = urlParser.parse(u)
let searchQuery = parsed.search || ''
2019-09-07 23:51:06 +02:00
let path = parsed.host + parsed.pathname + searchQuery
2019-09-07 23:51:06 +02:00
return path.toLowerCase()
}
function validateUrl(channelUrl) {
const url = new URL(channelUrl)
const host = url.hostname
return blacklist.indexOf(host) === -1
}
2019-09-09 03:02:21 +02:00
function skipPlaylist(filename) {
let testCountry = process.env.npm_config_country
let excludeList = process.env.npm_config_exclude
let excludeCountries = excludeList ? excludeList.split(',') : []
if (testCountry && filename !== 'channels/' + testCountry + '.m3u') return true
for(const countryCode of excludeCountries) {
if (filename === 'channels/' + countryCode + '.m3u') return true
}
return false
}
2019-10-09 04:33:52 +02:00
function generateTable(data, options) {
2019-10-23 08:38:32 +02:00
let output = '<table>'
output += '<thead><tr>'
for (let column of options.columns) {
output += `<th align="${column.align}">${column.name}</th>`
}
output += '</tr></thead>'
output += '<tbody>'
for (let item of data) {
output += '<tr>'
let i = 0
for (let prop in item) {
const column = options.columns[i]
let nowrap = column.nowrap
let align = column.align
output += `<td align="${align}"${nowrap ? ' nowrap' : ''}>${item[prop]}</td>`
i++
}
output += '</tr>'
}
output += '</tbody>'
output += '</table>'
return output
2019-10-09 04:33:52 +02:00
}
2019-07-20 09:03:31 +02:00
module.exports = {
parsePlaylist,
2019-09-07 23:51:06 +02:00
sortByTitleAndUrl,
appendToFile,
2019-07-20 09:03:31 +02:00
createFile,
readFile,
loadEPG,
createChannel,
getBasename,
addToCache,
2019-08-08 01:41:54 +02:00
checkCache,
clearCache,
2019-09-09 03:02:21 +02:00
validateUrl,
2019-09-14 02:08:20 +02:00
skipPlaylist,
2019-10-09 04:33:52 +02:00
supportedCategories,
generateTable
2019-07-20 09:03:31 +02:00
}