24 lines
753 B
JavaScript
24 lines
753 B
JavaScript
const api = require('../core/api')
|
|
const _ = require('lodash')
|
|
|
|
module.exports = async function (streams = []) {
|
|
streams = _.filter(streams, stream => stream.is_nsfw === false)
|
|
|
|
await api.regions.load()
|
|
const regions = await api.regions.all()
|
|
|
|
const output = []
|
|
for (const region of regions) {
|
|
const areaCodes = region.countries.map(code => `c/${code}`)
|
|
areaCodes.push(`r/${region.code}`)
|
|
|
|
let items = _.filter(streams, stream => _.intersection(stream.broadcast_area, areaCodes).length)
|
|
output.push({ filepath: `regions/${region.code.toLowerCase()}.m3u`, items })
|
|
}
|
|
|
|
let items = _.filter(streams, stream => !stream.broadcast_area.length)
|
|
output.push({ filepath: 'regions/undefined.m3u', items })
|
|
|
|
return output
|
|
}
|