mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 16:40:07 -04:00
77 lines
2.1 KiB
JavaScript
77 lines
2.1 KiB
JavaScript
const jsdom = require('jsdom')
|
|
const { JSDOM } = jsdom
|
|
const dayjs = require('dayjs')
|
|
const utc = require('dayjs/plugin/utc')
|
|
const timezone = require('dayjs/plugin/timezone')
|
|
const customParseFormat = require('dayjs/plugin/customParseFormat')
|
|
|
|
dayjs.extend(utc)
|
|
dayjs.extend(timezone)
|
|
dayjs.extend(customParseFormat)
|
|
|
|
module.exports = {
|
|
site: 'comteco.com.bo',
|
|
request: {
|
|
method: 'POST',
|
|
data: function ({ date }) {
|
|
const params = new URLSearchParams()
|
|
params.append('_method', 'POST')
|
|
params.append('fechaini', date.format('D/M/YYYY'))
|
|
params.append('fechafin', date.format('D/M/YYYY'))
|
|
|
|
return params
|
|
},
|
|
headers: {
|
|
'Content-Type': 'application/x-www-form-urlencoded'
|
|
},
|
|
timeout: 10000
|
|
},
|
|
url: function ({ channel }) {
|
|
return `https://comteco.com.bo/pages/canales-y-programacion-tv/paquete-oro/${channel.site_id}`
|
|
},
|
|
logo: function ({ content }) {
|
|
const dom = new JSDOM(content)
|
|
const img = dom.window.document.querySelector(
|
|
'#myform > div.row > div:nth-child(1) > div.col-xs-5.col-sm-7 > img'
|
|
)
|
|
|
|
return img ? `https://comteco.com.bo${img.src}` : null
|
|
},
|
|
parser: function ({ content, date }) {
|
|
const programs = []
|
|
const items = parseItems(content)
|
|
items.forEach(item => {
|
|
const title = parseTitle(item)
|
|
let start = parseStart(item, date)
|
|
const stop = start.add(30, 'm')
|
|
if (programs.length) {
|
|
programs[programs.length - 1].stop = start
|
|
}
|
|
|
|
programs.push({ title, start, stop })
|
|
})
|
|
|
|
return programs
|
|
}
|
|
}
|
|
|
|
function parseStart(item, date) {
|
|
let time = (
|
|
item.querySelector('div > div.col-xs-11 > p > span') || { textContent: '' }
|
|
).textContent.trim()
|
|
time = `${date.format('MM/DD/YYYY')} ${time}`
|
|
|
|
return dayjs.tz(time, 'MM/DD/YYYY HH:mm:ss', 'America/La_Paz')
|
|
}
|
|
|
|
function parseTitle(item) {
|
|
return (
|
|
item.querySelector('div > div.col-xs-11 > p > strong') || { textContent: '' }
|
|
).textContent.trim()
|
|
}
|
|
|
|
function parseItems(content) {
|
|
const dom = new JSDOM(content)
|
|
|
|
return dom.window.document.querySelectorAll('#datosasociados > div > .list-group-item')
|
|
}
|