iptv/scripts/generators/index_category_m3u.js
Aleksandr Statciuk 3fd0006b31 wip
2022-02-07 03:52:47 +03:00

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 }
}