This commit is contained in:
thomraider12
2026-03-22 14:02:43 +00:00
parent 1cf608ae4b
commit c329525035
3 changed files with 0 additions and 99 deletions
-33
View File
@@ -1,41 +1,8 @@
const dayjs = require('dayjs')
const cheerio = require('cheerio')
const fs = require('fs')
const path = require('path')
let EPGGrabber
async function getEPGGrabber() {
if (!EPGGrabber) {
EPGGrabber = (await import('epg-grabber')).EPGGrabber
}
return EPGGrabber
}
module.exports = {
site: 'sporttv.pt',
channels: async () => {
const channelsPath = path.resolve(__dirname, 'sporttv.pt.channels.xml')
if (!fs.existsSync(channelsPath)) {
console.warn(`Channels file not found: ${channelsPath}. Returning empty list.`)
return []
}
const xml = fs.readFileSync(channelsPath, 'utf8')
const grabber = await getEPGGrabber()
const parsed = grabber.parseChannelsXML(xml)
return parsed.map(channel => ({
xmltv_id: channel.xmltv_id,
name: channel.name,
site_id: channel.site_id,
lang: channel.lang,
logo: channel.logo,
url: channel.url,
lcn: channel.lcn
}))
},
days: 2,
url: 'https://www.sporttv.pt/guia',