2019-10-25 21:11:21 +03:00
|
|
|
process.env['NODE_TLS_REJECT_UNAUTHORIZED'] = 0
|
|
|
|
|
2019-11-02 14:10:57 +03:00
|
|
|
const helper = require('./helper')
|
2020-05-26 15:23:22 +03:00
|
|
|
const iptvChecker = require('iptv-checker-module')
|
2018-11-16 02:41:15 +03:00
|
|
|
|
2019-07-20 10:33:16 +03:00
|
|
|
const config = {
|
2019-11-03 20:21:35 +03:00
|
|
|
debug: process.env.npm_config_debug || false,
|
|
|
|
country: process.env.npm_config_country,
|
|
|
|
exclude: process.env.npm_config_exclude,
|
2020-05-27 20:14:06 +03:00
|
|
|
timeout: 10000
|
2019-07-20 10:33:16 +03:00
|
|
|
}
|
2018-11-16 02:41:15 +03:00
|
|
|
|
2019-07-20 10:33:16 +03:00
|
|
|
let stats = {
|
2019-11-03 20:21:35 +03:00
|
|
|
playlists: 0,
|
2019-07-20 10:33:16 +03:00
|
|
|
channels: 0,
|
|
|
|
failures: 0
|
|
|
|
}
|
2018-11-16 02:41:15 +03:00
|
|
|
|
2019-07-20 10:33:16 +03:00
|
|
|
async function test() {
|
2019-11-02 12:45:09 +03:00
|
|
|
const playlist = helper.parsePlaylist('index.m3u')
|
2018-11-16 02:41:15 +03:00
|
|
|
|
2020-04-11 03:54:32 +03:00
|
|
|
const countries = helper.filterPlaylists(playlist.items, config.country, config.exclude)
|
2018-11-16 02:41:15 +03:00
|
|
|
|
2020-04-11 03:54:32 +03:00
|
|
|
for (let country of countries) {
|
2019-11-03 20:21:35 +03:00
|
|
|
stats.playlists++
|
2019-05-09 20:04:18 +03:00
|
|
|
|
2019-11-03 20:21:35 +03:00
|
|
|
console.log(`Processing '${country.url}'...`)
|
2019-08-07 23:59:44 +03:00
|
|
|
|
2020-05-26 15:23:22 +03:00
|
|
|
const options = {
|
|
|
|
timeout: config.timeout,
|
|
|
|
userAgent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)',
|
|
|
|
debug: config.debug,
|
|
|
|
omitMetadata: true,
|
|
|
|
parallel: 1,
|
|
|
|
itemCallback: item => {
|
2020-09-16 16:05:25 +03:00
|
|
|
stats.channels++
|
2020-09-17 16:51:03 +03:00
|
|
|
if (
|
|
|
|
!item.status.ok &&
|
|
|
|
item.status.reason !== 'Timed out' &&
|
|
|
|
item.status.reason !== 'Duplicate'
|
|
|
|
) {
|
2020-05-26 15:23:22 +03:00
|
|
|
stats.failures++
|
2018-12-22 22:07:47 +03:00
|
|
|
|
2020-05-26 15:23:22 +03:00
|
|
|
helper.writeToLog(country.url, item.status.reason, item.url)
|
2018-11-16 02:41:15 +03:00
|
|
|
|
2020-05-26 15:23:22 +03:00
|
|
|
console.log(`${item.status.reason} '${item.url}'`)
|
|
|
|
}
|
2020-04-11 03:54:32 +03:00
|
|
|
}
|
2018-11-16 02:41:15 +03:00
|
|
|
}
|
2020-05-26 15:23:22 +03:00
|
|
|
|
|
|
|
await iptvChecker(country.url, options)
|
2018-12-22 22:07:47 +03:00
|
|
|
}
|
2018-11-16 02:41:15 +03:00
|
|
|
|
2020-04-11 03:54:32 +03:00
|
|
|
if (stats.failures === 0) {
|
2019-11-03 20:21:35 +03:00
|
|
|
console.log(`OK (${stats.playlists} playlists, ${stats.channels} channels)`)
|
2018-12-22 22:07:47 +03:00
|
|
|
} else {
|
2020-04-11 03:54:32 +03:00
|
|
|
console.log(
|
|
|
|
`FAILURES! (${stats.playlists} playlists, ${stats.channels} channels, ${stats.failures} failures)`
|
|
|
|
)
|
2018-11-16 02:41:15 +03:00
|
|
|
|
2019-09-07 18:24:59 +03:00
|
|
|
process.exit(1)
|
2018-12-22 22:07:47 +03:00
|
|
|
}
|
2018-11-16 02:41:15 +03:00
|
|
|
}
|
|
|
|
|
2018-12-26 22:41:17 +03:00
|
|
|
console.log('Test is running...')
|
|
|
|
|
2019-07-20 10:33:16 +03:00
|
|
|
test()
|