mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-11 01:20:08 -04:00
78 lines
1.8 KiB
JavaScript
78 lines
1.8 KiB
JavaScript
const cheerio = require('cheerio')
|
|
const dayjs = require('dayjs')
|
|
|
|
module.exports = {
|
|
site: 'tvheute.at',
|
|
url({ channel, date }) {
|
|
return `https://tvheute.at/part/channel-shows/partial/${channel.site_id}/${date.format(
|
|
'DD-MM-YYYY'
|
|
)}`
|
|
},
|
|
logo({ content }) {
|
|
const $ = cheerio.load(content)
|
|
const imgSrc = $(`.station-info .logo`).attr('src')
|
|
|
|
return imgSrc ? `https://tvheute.at${imgSrc}` : null
|
|
},
|
|
parser: function ({ content, channel, date }) {
|
|
let programs = []
|
|
const items = parseItems(content)
|
|
items.forEach(item => {
|
|
programs.push({
|
|
title: parseTitle(item),
|
|
description: parseDescription(item),
|
|
icon: parseIcon(item),
|
|
category: parseCategory(item),
|
|
start: parseStart(item).toJSON(),
|
|
stop: parseStop(item).toJSON()
|
|
})
|
|
})
|
|
|
|
return programs
|
|
}
|
|
}
|
|
|
|
function parseTitle(item) {
|
|
const $ = cheerio.load(item)
|
|
|
|
return $('.title-col strong').text()
|
|
}
|
|
|
|
function parseDescription(item) {
|
|
const $ = cheerio.load(item)
|
|
|
|
return $('.title-col .description').text()
|
|
}
|
|
|
|
function parseCategory(item) {
|
|
const $ = cheerio.load(item)
|
|
|
|
return $('.station-col > .type').text()
|
|
}
|
|
|
|
function parseIcon(item) {
|
|
const $ = cheerio.load(item)
|
|
const imgSrc = $('.title-col .image img').data('src-desktop')
|
|
|
|
return imgSrc ? `https://tvheute.at${imgSrc}` : null
|
|
}
|
|
|
|
function parseStart(item) {
|
|
const $ = cheerio.load(item)
|
|
const time = $('.end-col > .duration-wrapper').data('start')
|
|
|
|
return dayjs(time)
|
|
}
|
|
|
|
function parseStop(item) {
|
|
const $ = cheerio.load(item)
|
|
const time = $('.end-col > .duration-wrapper').data('stop')
|
|
|
|
return dayjs(time)
|
|
}
|
|
|
|
function parseItems(content) {
|
|
const $ = cheerio.load(content)
|
|
|
|
return $('#showListContainer > table > tbody > tr').toArray()
|
|
}
|