mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-13 02:20:03 -04:00
Moved skipPlaylist() function back
This commit is contained in:
parent
0c868ee187
commit
06982fe724
1 changed files with 16 additions and 1 deletions
|
@ -229,6 +229,20 @@ function validateUrl(channelUrl) {
|
||||||
return blacklist.indexOf(host) === -1
|
return blacklist.indexOf(host) === -1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
parsePlaylist,
|
parsePlaylist,
|
||||||
sortByTitleAndUrl,
|
sortByTitleAndUrl,
|
||||||
|
@ -241,5 +255,6 @@ module.exports = {
|
||||||
addToCache,
|
addToCache,
|
||||||
checkCache,
|
checkCache,
|
||||||
clearCache,
|
clearCache,
|
||||||
validateUrl
|
validateUrl,
|
||||||
|
skipPlaylist
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue