mirror of
https://github.com/iptv-org/epg
synced 2025-12-17 10:56:57 -05:00
Update save-results.js
This commit is contained in:
@@ -4,6 +4,8 @@ const _ = require('lodash')
|
||||
const LOGS_DIR = process.env.LOGS_DIR || 'scripts/logs'
|
||||
|
||||
async function main() {
|
||||
await db.channels.load()
|
||||
|
||||
await db.programs.load()
|
||||
await db.programs.reset()
|
||||
const files = await file.list(`${LOGS_DIR}/load-cluster/cluster_*.log`)
|
||||
@@ -11,6 +13,8 @@ async function main() {
|
||||
logger.info(`Parsing "${filepath}"...`)
|
||||
const results = await parser.parseLogs(filepath)
|
||||
for (const result of results) {
|
||||
await db.channels.update({ _id: result._id }, { $set: { logo: result.logo } })
|
||||
|
||||
const programs = result.programs.map(program => {
|
||||
program.site = result.site
|
||||
program.country = result.country
|
||||
@@ -22,6 +26,8 @@ async function main() {
|
||||
await db.programs.insert(programs)
|
||||
}
|
||||
}
|
||||
|
||||
await db.channels.compact()
|
||||
}
|
||||
|
||||
main()
|
||||
|
||||
Reference in New Issue
Block a user