From 2a8176d65a1c48f543da283bd5cc9a2638c9d4e6 Mon Sep 17 00:00:00 2001 From: freearhey Date: Thu, 8 Aug 2019 12:52:29 +0300 Subject: [PATCH] Update generate.js Removed duplicate counter --- helpers/generate.js | 42 ++++++++++++++++-------------------------- 1 file changed, 16 insertions(+), 26 deletions(-) diff --git a/helpers/generate.js b/helpers/generate.js index 82721ddfb8..fd984090ef 100644 --- a/helpers/generate.js +++ b/helpers/generate.js @@ -4,8 +4,7 @@ const debug = false const types = ['full', 'country', 'content', 'sport'] let stats = { countries: 0, - channels: 0, - duplicates: 0 + channels: 0 } function main() { @@ -49,34 +48,25 @@ function main() { title: item.inf.title }) - if(util.checkCache(channel.url)) { - - stats.duplicates++ - - } else { + let category = channel.group - let category = channel.group + for(const type of types) { + if(type === 'full') { + channel.group = [ c.name, channel.group ].filter(i => i).join(';') + } else if(type === 'country') { + channel.group = c.name + } else { + channel.group = category + } - for(const type of types) { - if(type === 'full') { - channel.group = [ c.name, channel.group ].filter(i => i).join(';') - } else if(type === 'country') { - channel.group = c.name - } else { - channel.group = category - } - - const filename = `index.${type}.m3u` - if(type === 'sport') { - if(channel.group === 'Sport') { - util.appendToFile(filename, channel.toString()) - } - } else { + const filename = `index.${type}.m3u` + if(type === 'sport') { + if(channel.group === 'Sport') { util.appendToFile(filename, channel.toString()) } + } else { + util.appendToFile(filename, channel.toString()) } - - util.addToCache(channel.url) } stats.channels++ @@ -88,4 +78,4 @@ function main() { main() -console.log(`Countries: ${stats.countries}. Channels: ${stats.channels}. Unique: ${stats.channels - stats.duplicates}. Duplicates: ${stats.duplicates}.`) +console.log(`Countries: ${stats.countries}. Channels: ${stats.channels}.`)