Update update.js

This commit is contained in:
Aleksandr Statciuk 2022-10-26 04:41:30 +03:00
parent dc36f53a75
commit e56df2c966

View file

@ -2,36 +2,23 @@ const { file, parser, logger } = require('../../core')
const { program } = require('commander') const { program } = require('commander')
const _ = require('lodash') const _ = require('lodash')
const CHANNELS_PATH = process.env.CHANNELS_PATH || 'sites/**/*.channels.xml' const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs'
const OUTPUT_DIR = process.env.OUTPUT_DIR || '.api' const OUTPUT_DIR = process.env.OUTPUT_DIR || '.api'
async function main() { async function main() {
let guides = [] let guides = []
const files = await file.list(CHANNELS_PATH).catch(console.error) const logPath = `${LOGS_DIR}/guides/update.log`
for (const filepath of files) { const results = await parser.parseLogs(logPath)
try {
const { site, channels } = await parser.parseChannels(filepath)
const dir = file.dirname(filepath)
const config = require(file.resolve(`${dir}/${site}.config.js`))
if (config.ignore) continue
const filename = file.basename(filepath) for (const result of results) {
const [__, suffix] = filename.match(/\_(.*)\.channels\.xml$/) || [null, null]
for (const channel of channels) {
guides.push({ guides.push({
channel: channel.id, channel: result.channel,
site: channel.site, site: result.site,
lang: channel.lang, lang: result.lang,
url: `https://iptv-org.github.io/epg/guides/${suffix}/${site}.epg.xml.gz` url: `https://iptv-org.github.io/epg/guides/${result.filename}.xml.gz`
}) })
} }
} catch (err) {
console.error(err)
continue
}
}
guides = _.sortBy(guides, 'channel') guides = _.sortBy(guides, 'channel')