2021-08-01 18:50:33 +02:00
|
|
|
const blacklist = require('./helpers/blacklist.json')
|
|
|
|
const parser = require('./helpers/parser')
|
|
|
|
const log = require('./helpers/log')
|
2021-07-13 17:14:49 +02:00
|
|
|
|
|
|
|
async function main() {
|
2021-08-01 06:55:18 +02:00
|
|
|
log.start()
|
|
|
|
|
|
|
|
log.print(`Parsing 'index.m3u'...`)
|
|
|
|
const playlists = parser.parseIndex()
|
2021-07-13 17:14:49 +02:00
|
|
|
for (const playlist of playlists) {
|
2021-08-01 06:55:18 +02:00
|
|
|
log.print(`\nProcessing '${playlist.url}'...`)
|
2021-08-02 20:18:59 +02:00
|
|
|
await parser
|
|
|
|
.parsePlaylist(playlist.url)
|
|
|
|
.then(removeBlacklisted)
|
|
|
|
.then(p => p.save())
|
2021-07-13 17:14:49 +02:00
|
|
|
}
|
|
|
|
|
2021-08-01 18:50:33 +02:00
|
|
|
log.print('\n')
|
2021-08-01 06:55:18 +02:00
|
|
|
log.finish()
|
2021-07-13 17:14:49 +02:00
|
|
|
}
|
|
|
|
|
2021-08-22 15:02:18 +02:00
|
|
|
function removeBlacklisted(playlist) {
|
2021-08-01 06:55:18 +02:00
|
|
|
const channels = playlist.channels.filter(channel => {
|
2021-08-22 15:02:18 +02:00
|
|
|
const channelName = normalizeName(channel.name)
|
2021-08-02 20:18:59 +02:00
|
|
|
return !blacklist.find(item => {
|
|
|
|
const hasSameName =
|
2021-08-22 15:02:18 +02:00
|
|
|
normalizeName(item.name) === channelName ||
|
|
|
|
item.aliases.map(alias => normalizeName(alias)).includes(channelName)
|
|
|
|
const fromSameCountry = playlist.country.code === item.country
|
2021-08-02 20:18:59 +02:00
|
|
|
|
|
|
|
return hasSameName && fromSameCountry
|
2021-07-13 18:10:31 +02:00
|
|
|
})
|
2021-07-13 17:14:49 +02:00
|
|
|
})
|
|
|
|
|
2021-08-01 06:55:18 +02:00
|
|
|
if (playlist.channels.length !== channels.length) {
|
|
|
|
log.print(`updated`)
|
2021-08-01 19:46:26 +02:00
|
|
|
playlist.channels = channels
|
2021-08-02 20:18:59 +02:00
|
|
|
playlist.updated = true
|
2021-07-13 17:14:49 +02:00
|
|
|
}
|
|
|
|
|
2021-08-01 06:55:18 +02:00
|
|
|
return playlist
|
2021-07-13 17:14:49 +02:00
|
|
|
}
|
|
|
|
|
2021-08-22 15:02:18 +02:00
|
|
|
function normalizeName(str) {
|
|
|
|
return str.replace(/[^a-zA-Z0-9 ]/gi, '').toLowerCase()
|
|
|
|
}
|
|
|
|
|
2021-07-13 17:14:49 +02:00
|
|
|
main()
|