iptv/helpers/filter.js
2019-07-22 17:57:53 +03:00

55 lines
959 B
JavaScript

const util = require('./util')
const debug = false
const blacklist = [
'80.80.160.168', // repeats on a loop
]
let stats = {
total: 0,
removed: 0
}
function init() {
let countries = util.parsePlaylist('index.m3u')
if(debug) {
countries = countries.slice(0, 2)
}
let channels = []
for(let country of countries) {
const playlist = util.parsePlaylist(country.file)
for(let item of playlist) {
const url = new URL(item.file)
const host = url.hostname
if(blacklist.indexOf(host) === -1) {
channels.push(item)
} else {
stats.removed += 1
}
}
util.createFile(country.file, '#EXTM3U\n')
channels.forEach(item => {
const data = '#EXTINF:' + item.title + '\n' + item.file + '\n'
util.writeToFile(country.file, data)
})
stats.total += channels.length
channels = []
}
}
init()
console.log(`Total: ${stats.total}. Removed: ${stats.removed}`)