mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-13 02:20:03 -04:00
Move all functions to scripts folder
This commit is contained in:
parent
36f94d807a
commit
97f6a68df8
6 changed files with 176 additions and 175 deletions
164
scripts/generate.js
Normal file
164
scripts/generate.js
Normal file
|
@ -0,0 +1,164 @@
|
|||
const helper = require('./helper')
|
||||
|
||||
let list = {
|
||||
all: [],
|
||||
countries: {},
|
||||
languages: {},
|
||||
categories: {}
|
||||
}
|
||||
|
||||
function main() {
|
||||
console.log(`Parsing index...`)
|
||||
parseIndex()
|
||||
console.log('Generating index.country.m3u...')
|
||||
generateCountryIndex()
|
||||
console.log('Generating index.language.m3u...')
|
||||
generateLanguageIndex()
|
||||
console.log('Generating index.content.m3u...')
|
||||
generateContentIndex()
|
||||
console.log('Generating index.full.m3u...')
|
||||
generateFullIndex()
|
||||
console.log('Generating /categories...')
|
||||
generateCategories()
|
||||
console.log('Generating /languages...')
|
||||
generateLanguages()
|
||||
console.log('Done.\n')
|
||||
|
||||
console.log(`Countries: ${Object.values(list.countries).length}. Languages: ${Object.values(list.languages).length}. Categories: ${Object.values(list.categories).length}. Channels: ${list.all.length}.`)
|
||||
}
|
||||
|
||||
function parseIndex() {
|
||||
const root = helper.parsePlaylist('index.m3u')
|
||||
|
||||
let countries = {}
|
||||
let languages = {}
|
||||
let categories = {}
|
||||
|
||||
for(let rootItem of root.items) {
|
||||
const playlist = helper.parsePlaylist(rootItem.url)
|
||||
const countryCode = helper.getBasename(rootItem.url).toLowerCase()
|
||||
const countryName = rootItem.name
|
||||
|
||||
for(let item of playlist.items) {
|
||||
const channel = helper.createChannel(item)
|
||||
channel.countryCode = countryCode
|
||||
channel.countryName = countryName
|
||||
|
||||
// all
|
||||
list.all.push(channel)
|
||||
|
||||
// country
|
||||
if(!countries[countryCode]) {
|
||||
countries[countryCode] = []
|
||||
}
|
||||
countries[countryCode].push(channel)
|
||||
|
||||
// language
|
||||
const languageCode = helper.getISO6391Code(channel.language) || 'undefined'
|
||||
if(!languages[languageCode]) {
|
||||
languages[languageCode] = []
|
||||
}
|
||||
languages[languageCode].push(channel)
|
||||
|
||||
// category
|
||||
const categoryCode = channel.group.toLowerCase() || 'other'
|
||||
if(!categories[categoryCode]) {
|
||||
categories[categoryCode] = []
|
||||
}
|
||||
categories[categoryCode].push(channel)
|
||||
}
|
||||
}
|
||||
|
||||
list.countries = countries
|
||||
list.languages = languages
|
||||
list.categories = categories
|
||||
}
|
||||
|
||||
function generateCountryIndex() {
|
||||
const filename = `index.country.m3u`
|
||||
helper.createFile(filename, '#EXTM3U\n')
|
||||
|
||||
for(let channel of list.all) {
|
||||
const group = channel.group
|
||||
channel.group = channel.countryName
|
||||
helper.appendToFile(filename, channel.toString())
|
||||
channel.group = group
|
||||
}
|
||||
}
|
||||
|
||||
function generateLanguageIndex() {
|
||||
const filename = `index.language.m3u`
|
||||
helper.createFile(filename, '#EXTM3U\n')
|
||||
|
||||
const channels = list.all.sort((a, b) => {
|
||||
if(a.language < b.language) { return -1 }
|
||||
if(a.language > b.language) { return 1 }
|
||||
return 0
|
||||
})
|
||||
|
||||
for(let channel of channels) {
|
||||
const group = channel.group
|
||||
channel.group = channel.language
|
||||
helper.appendToFile(filename, channel.toString())
|
||||
channel.group = group
|
||||
}
|
||||
}
|
||||
|
||||
function generateContentIndex() {
|
||||
const filename = `index.content.m3u`
|
||||
helper.createFile(filename, '#EXTM3U\n')
|
||||
|
||||
const channels = list.all.sort((a, b) => {
|
||||
if(a.group < b.group) { return -1 }
|
||||
if(a.group > b.group) { return 1 }
|
||||
return 0
|
||||
})
|
||||
|
||||
for(let channel of channels) {
|
||||
helper.appendToFile(filename, channel.toString())
|
||||
}
|
||||
}
|
||||
|
||||
function generateFullIndex() {
|
||||
const filename = `index.full.m3u`
|
||||
helper.createFile(filename, '#EXTM3U\n')
|
||||
|
||||
const channels = list.all.sort((a, b) => {
|
||||
if(a.countryName < b.countryName) { return -1 }
|
||||
if(a.countryName > b.countryName) { return 1 }
|
||||
if(a.group < b.group) { return -1 }
|
||||
if(a.group > b.group) { return 1 }
|
||||
return 0
|
||||
})
|
||||
|
||||
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 generateCategories() {
|
||||
for(let cid in list.categories) {
|
||||
let category = list.categories[cid]
|
||||
const filename = `categories/${cid}.m3u`
|
||||
helper.createFile(filename, '#EXTM3U\n')
|
||||
for(let channel of category) {
|
||||
helper.appendToFile(filename, channel.toString())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function generateLanguages() {
|
||||
for(let lid in list.languages) {
|
||||
let language = list.languages[lid]
|
||||
const filename = `languages/${lid}.m3u`
|
||||
helper.createFile(filename, '#EXTM3U\n')
|
||||
for(let channel of language) {
|
||||
helper.appendToFile(filename, channel.toString())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
main()
|
Loading…
Add table
Add a link
Reference in a new issue