iptv/scripts/format.js

56 lines
1.5 KiB
JavaScript
Raw Normal View History

2021-08-01 19:52:47 +03:00
const parser = require('./helpers/parser')
const utils = require('./helpers/utils')
2021-08-02 21:12:27 +03:00
const file = require('./helpers/file')
2021-08-01 19:52:47 +03:00
const log = require('./helpers/log')
2019-07-20 10:06:29 +03:00
2019-11-03 16:03:35 +03:00
async function main() {
2021-08-01 08:25:39 +03:00
log.start()
2021-05-07 12:51:57 +03:00
2021-08-01 08:25:39 +03:00
log.print(`Parsing 'index.m3u'...`)
let playlists = parser.parseIndex().filter(i => i.url !== 'channels/unsorted.m3u')
2021-01-30 02:26:20 +03:00
for (const playlist of playlists) {
2021-08-01 08:25:39 +03:00
log.print(`\nProcessing '${playlist.url}'...`)
2021-08-01 19:52:47 +03:00
await parser
.parsePlaylist(playlist.url)
2021-08-02 21:55:58 +03:00
.then(formatPlaylist)
2021-08-02 21:12:27 +03:00
.then(playlist => {
if (file.read(playlist.url) !== playlist.toString()) {
log.print('updated')
playlist.updated = true
}
playlist.save()
})
2019-11-03 16:03:35 +03:00
}
2021-08-01 19:52:47 +03:00
log.print('\n')
2021-08-01 08:25:39 +03:00
log.finish()
}
2021-08-02 21:55:58 +03:00
async function formatPlaylist(playlist) {
2021-08-02 21:12:27 +03:00
for (const channel of playlist.channels) {
const code = file.getBasename(playlist.url)
2021-08-02 21:55:58 +03:00
// add missing tvg-name
2021-08-02 21:12:27 +03:00
if (!channel.tvg.name && code !== 'unsorted' && channel.name) {
channel.tvg.name = channel.name.replace(/\"/gi, '')
}
2021-08-02 21:55:58 +03:00
// add missing tvg-id
2021-08-02 21:12:27 +03:00
if (!channel.tvg.id && code !== 'unsorted' && channel.tvg.name) {
const id = utils.name2id(channel.tvg.name)
channel.tvg.id = id ? `${id}.${code}` : ''
}
2021-08-02 21:55:58 +03:00
// add missing country
2021-08-02 21:12:27 +03:00
if (!channel.countries.length) {
const name = utils.code2name(code)
channel.countries = name ? [{ code, name }] : []
channel.tvg.country = channel.countries.map(c => c.code.toUpperCase()).join(';')
}
2021-08-02 21:55:58 +03:00
// update group-title
channel.group.title = channel.category
2021-08-02 21:12:27 +03:00
}
return playlist
}
2019-11-03 10:56:54 +03:00
main()