43 lines
1023 B
JavaScript
43 lines
1023 B
JavaScript
const blacklist = require('./data/blacklist.json')
|
|
const parser = require('./helpers/parser')
|
|
const log = require('./helpers/log')
|
|
|
|
async function main() {
|
|
log.start()
|
|
|
|
log.print(`Parsing 'index.m3u'...`)
|
|
const playlists = parser.parseIndex()
|
|
for (const playlist of playlists) {
|
|
log.print(`\nProcessing '${playlist.url}'...`)
|
|
await parser
|
|
.parsePlaylist(playlist.url)
|
|
.then(removeBlacklisted)
|
|
.then(p => p.save())
|
|
}
|
|
|
|
log.print('\n')
|
|
log.finish()
|
|
}
|
|
|
|
function removeBlacklisted(playlist) {
|
|
const channels = playlist.channels.filter(channel => {
|
|
return !blacklist.find(item => {
|
|
const regexp = new RegExp(item.regex, 'i')
|
|
const hasSameName = regexp.test(channel.name)
|
|
const fromSameCountry = playlist.country.code === item.country
|
|
|
|
return hasSameName && fromSameCountry
|
|
})
|
|
})
|
|
|
|
if (playlist.channels.length !== channels.length) {
|
|
log.print(`updated`)
|
|
playlist.channels = channels
|
|
playlist.updated = true
|
|
}
|
|
|
|
return playlist
|
|
}
|
|
|
|
main()
|