mirror of
https://github.com/iptv-org/epg
synced 2025-12-18 11:27:06 -05:00
Update create-database.js
This commit is contained in:
@@ -34,15 +34,12 @@ async function loadChannels() {
|
|||||||
for (const filepath of files) {
|
for (const filepath of files) {
|
||||||
const dir = file.dirname(filepath)
|
const dir = file.dirname(filepath)
|
||||||
const filename = file.basename(filepath)
|
const filename = file.basename(filepath)
|
||||||
const [_, code] = filename.match(/_(.*).channels.xml/i) || ['', '']
|
|
||||||
const [country, __] = code.split('-') || [null, null]
|
|
||||||
const items = await parser.parseChannels(filepath)
|
const items = await parser.parseChannels(filepath)
|
||||||
for (const item of items) {
|
for (const item of items) {
|
||||||
// const countryCode = item.xmltv_id.split('.')[1]
|
const countryCode = item.xmltv_id.split('.')[1]
|
||||||
// item.country = countryCode ? countryCode.toUpperCase() : null
|
item.country = countryCode ? countryCode.toUpperCase() : null
|
||||||
item.channelsPath = filepath
|
item.channelsPath = filepath
|
||||||
item.configPath = `${dir}/${item.site}.config.js`
|
item.configPath = `${dir}/${item.site}.config.js`
|
||||||
item.country = country.toUpperCase()
|
|
||||||
channels.push(item)
|
channels.push(item)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user