iptv/scripts/generators/regions.js

24 lines
840 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 23:11:47 +01:00
streams = _.filter(streams, stream => !stream.channel || stream.channel.is_nsfw === false)
2022-02-06 23:22:20 +01:00
for (const region of regions) {
2022-02-07 23:11:47 +01:00
const areaCodes = region.countries.map(code => `c/${code}`)
areaCodes.push(`r/${region.code}`)
let items = _.filter(
streams,
stream => stream.channel && _.intersection(stream.channel.broadcast_area, areaCodes).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
}
2022-02-07 23:11:47 +01:00
let items = _.filter(streams, stream => !stream.channel || !stream.channel.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
}