iptv/scripts/generators/regions.js

21 lines
707 B
JavaScript
Raw Normal View History

2022-02-06 23:22:20 +01:00
const api = require('../core/api')
const _ = require('lodash')
module.exports = async function (streams = []) {
const output = []
await api.regions.load()
const regions = await api.regions.all()
2022-02-07 01:05:43 +01:00
streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false)
2022-02-06 23:22:20 +01:00
for (const region of regions) {
const areaCodes = region.countries
areaCodes.push(region.code)
let items = _.filter(streams, s => _.intersection(areaCodes, s.broadcast_area).length)
2022-02-07 00:27:15 +01:00
output.push({ filepath: `regions/${region.code.toLowerCase()}.m3u`, items })
2022-02-06 23:22:20 +01:00
}
let items = _.filter(streams, s => !s.broadcast_area.length)
2022-02-07 00:27:15 +01:00
output.push({ filepath: 'regions/undefined.m3u', items })
2022-02-06 23:22:20 +01:00
return output
}