iptv/scripts/core/parser.js

31 lines
724 B
JavaScript
Raw Normal View History

2021-12-12 05:10:18 +01:00
const ipp = require('iptv-playlist-parser')
const logger = require('./logger')
const file = require('./file')
const parser = {}
parser.parsePlaylist = async function (filepath) {
const content = await file.read(filepath)
2022-03-11 16:01:45 +01:00
return ipp.parse(content)
2021-12-12 05:10:18 +01:00
}
parser.parseLogs = async function (filepath) {
const content = await file.read(filepath)
if (!content) return []
const lines = content.split('\n')
return lines.map(line => (line ? JSON.parse(line) : null)).filter(l => l)
}
parser.parseNumber = function (string) {
const parsed = parseInt(string)
if (isNaN(parsed)) {
2021-12-12 07:05:55 +01:00
throw new Error('scripts/core/parser.js:parseNumber() Input value is not a number')
2021-12-12 05:10:18 +01:00
}
return parsed
}
module.exports = parser