This commit is contained in:
Aleksandr Statciuk
2022-02-07 03:52:47 +03:00
parent 3d90020de2
commit 0fc1ded334
19 changed files with 91 additions and 40 deletions

View File

@@ -0,0 +1,22 @@
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 }
}