23 lines
620 B
JavaScript
23 lines
620 B
JavaScript
const api = require('../core/api')
|
|
const _ = require('lodash')
|
|
|
|
module.exports = async function (streams = []) {
|
|
streams = _.filter(streams, s => !s.channel || s.channel.is_nsfw === false)
|
|
let items = []
|
|
streams.forEach(stream => {
|
|
if (!stream.categories.length) return items.push(stream)
|
|
|
|
stream.categories.forEach(category => {
|
|
const item = _.cloneDeep(stream)
|
|
item.group_title = category.name
|
|
items.push(item)
|
|
})
|
|
})
|
|
items = _.sortBy(items, i => {
|
|
if (i.group_title === 'Undefined') return '_'
|
|
return i.group_title
|
|
})
|
|
|
|
return { filepath: 'index.category.m3u', items }
|
|
}
|