mirror of
https://github.com/iptv-org/epg
synced 2026-05-11 11:57:04 -04:00
40 lines
972 B
JavaScript
40 lines
972 B
JavaScript
const parser = require('epg-parser')
|
|
|
|
module.exports = {
|
|
site: 'x1co.com.br',
|
|
days: 2,
|
|
url: 'https://x1co.com.br/epg/epg.xml',
|
|
parser: function ({ content, channel, date }) {
|
|
let programs = []
|
|
const items = parseItems(content, channel, date)
|
|
items.forEach(item => {
|
|
programs.push({
|
|
title: item.title?.[0]?.value,
|
|
subTitle: item.subTitle?.[0]?.value,
|
|
category: item.category?.[0]?.value,
|
|
description: item.desc?.[0]?.value,
|
|
start: item.start,
|
|
stop: item.stop
|
|
})
|
|
})
|
|
|
|
return programs
|
|
},
|
|
channels() {
|
|
return [
|
|
{
|
|
name: 'NickOnline',
|
|
site_id: 'nickonline.br',
|
|
xmltv_id: 'NickOnline.br',
|
|
lang: 'pt'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
function parseItems(content, channel, date) {
|
|
const { programs } = parser.parse(content)
|
|
|
|
return programs.filter(p => p.channel === channel.site_id && date.isSame(p.start, 'day'))
|
|
}
|