mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 09:00:07 -04:00
31 lines
771 B
JavaScript
31 lines
771 B
JavaScript
const { Command } = require('commander')
|
|
const file = require('./file')
|
|
|
|
const program = new Command()
|
|
program
|
|
.option('--include <include>', 'List of files to include', parseList)
|
|
.option('--exclude <exclude>', 'List of files to exclude', parseList)
|
|
.parse(process.argv)
|
|
|
|
const options = program.opts()
|
|
|
|
file.list('sites/*/*.channels.xml', options.include, options.exclude).then(files => {
|
|
const matrix = {
|
|
guide: []
|
|
}
|
|
|
|
files.forEach(filename => {
|
|
const [_, site, country] = filename.match(/sites\/.*\/(.*)_(.*)\.channels\.xml/i)
|
|
|
|
matrix.guide.push({ site, country })
|
|
})
|
|
|
|
const output = `::set-output name=matrix::${JSON.stringify(matrix)}`
|
|
console.log(output)
|
|
})
|
|
|
|
function parseList(str) {
|
|
if (!str) return []
|
|
|
|
return str.split(',')
|
|
}
|