Removed generateFullIndex() function

This commit is contained in:
freearhey 2019-12-05 18:31:48 +03:00
parent 9f2dc11484
commit fbabf907d2
1 changed files with 0 additions and 15 deletions

View File

@ -24,8 +24,6 @@ function main() {
generateLanguageIndex() generateLanguageIndex()
console.log('Generating index.category.m3u...') console.log('Generating index.category.m3u...')
generateCategoryIndex() generateCategoryIndex()
console.log('Generating index.full.m3u...')
generateFullIndex()
console.log('Generating /countries...') console.log('Generating /countries...')
generateCountries() generateCountries()
console.log('Generating /categories...') console.log('Generating /categories...')
@ -139,19 +137,6 @@ function generateCategoryIndex() {
} }
} }
function generateFullIndex() {
const filename = `${ROOT_DIR}/index.full.m3u`
helper.createFile(filename, '#EXTM3U\n')
const channels = helper.sortBy(list.all, ['countryName', 'group', 'title', 'url'])
for(let channel of channels) {
const group = channel.group
channel.group = [ channel.countryName, channel.group ].filter(i => i).join(';')
helper.appendToFile(filename, channel.toString())
channel.group = group
}
}
function generateCountries() { function generateCountries() {
const outputDir = `${ROOT_DIR}/countries` const outputDir = `${ROOT_DIR}/countries`
helper.createDir(outputDir) helper.createDir(outputDir)