mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-11 01:20:08 -04:00
68 lines
1.6 KiB
JavaScript
68 lines
1.6 KiB
JavaScript
const dayjs = require('dayjs')
|
|
const cheerio = require('cheerio')
|
|
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: 'tivu.tv',
|
|
request: {
|
|
cache: {
|
|
ttl: 60 * 60 * 1000 // 1 hour
|
|
}
|
|
},
|
|
url({ date }) {
|
|
const diff = date.diff(dayjs.utc().startOf('d'), 'd')
|
|
|
|
return `https://www.tivu.tv/epg_ajax_sat.aspx?d=${diff}`
|
|
},
|
|
parser: function ({ content, channel, date }) {
|
|
let programs = []
|
|
const items = parseItems(content, channel, date)
|
|
items.forEach(item => {
|
|
const $item = cheerio.load(item)
|
|
const prev = programs[programs.length - 1]
|
|
let start = parseStart($item, date)
|
|
if (!start) return
|
|
if (prev) {
|
|
if (start.isBefore(prev.start)) {
|
|
start = start.add(1, 'd')
|
|
date = date.add(1, 'd')
|
|
}
|
|
prev.stop = start
|
|
}
|
|
const stop = start.add(30, 'm')
|
|
programs.push({
|
|
title: parseTitle($item),
|
|
start,
|
|
stop
|
|
})
|
|
})
|
|
|
|
return programs
|
|
}
|
|
}
|
|
|
|
function parseTitle($item) {
|
|
const [title, _, __] = $item('a').html().split('<br>')
|
|
|
|
return title
|
|
}
|
|
|
|
function parseStart($item, date) {
|
|
const [_, __, time] = $item('a').html().split('<br>')
|
|
if (!time) return null
|
|
|
|
return dayjs.tz(`${date.format('YYYY-MM-DD')} ${time}`, 'YYYY-MM-DD HH:mm', 'Europe/Rome')
|
|
}
|
|
|
|
function parseItems(content, channel, date) {
|
|
if (!content) return []
|
|
const $ = cheerio.load(content)
|
|
|
|
return $(`.q[id="${channel.site_id}"] > .p`).toArray()
|
|
}
|