mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 00:50:09 -04:00
85 lines
2.3 KiB
JavaScript
85 lines
2.3 KiB
JavaScript
const cheerio = require('cheerio')
|
|
const dayjs = require('dayjs')
|
|
const utc = require('dayjs/plugin/utc')
|
|
const customParseFormat = require('dayjs/plugin/customParseFormat')
|
|
const axios = require('axios')
|
|
|
|
dayjs.extend(utc)
|
|
dayjs.extend(customParseFormat)
|
|
|
|
module.exports = {
|
|
site: 'dstv.com',
|
|
request: {
|
|
timeout: 15000
|
|
},
|
|
url({ channel, date }) {
|
|
const [bouquetId] = channel.site_id.split('#')
|
|
|
|
return `https://guide.dstv.com/api/gridview/page?bouquetId=${bouquetId}&genre=all&date=${date.format(
|
|
'YYYY-MM-DD'
|
|
)}`
|
|
},
|
|
async logo({ channel }) {
|
|
const [bouquetId, channelId] = channel.site_id.split('#')
|
|
const url = `https://guide.dstv.com/api/channel/fetchChannelsByGenresInBouquet?bouquetId=${bouquetId}&genre=all`
|
|
const result = await axios
|
|
.get(url)
|
|
.then(r => r.data)
|
|
.catch(console.log)
|
|
if (!result) return null
|
|
const items = result.items || []
|
|
const elem = items.find(i => i.channelTag === channelId) || {
|
|
channelLogoPaths: { XLARGE: null }
|
|
}
|
|
|
|
return elem.channelLogoPaths.XLARGE
|
|
},
|
|
parser({ content, date, channel }) {
|
|
let PM = false
|
|
const programs = []
|
|
const items = parseItems(content, date, channel)
|
|
items.forEach(item => {
|
|
const title = item.title
|
|
let start = parseStart(item, date)
|
|
if (start.hour() > 18 && !PM) return
|
|
if (start.hour() > 11 && start.hour() < 18) PM = true
|
|
if (start.hour() < 12 && PM) start = start.add(1, 'd')
|
|
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) {
|
|
time = `${date.format('MM/DD/YYYY')} ${item.time}`
|
|
|
|
return dayjs.utc(time, 'MM/DD/YYYY HH:mm')
|
|
}
|
|
|
|
function parseItems(content, date, channel) {
|
|
const [_, channelTag] = channel.site_id.split('#')
|
|
const json = JSON.parse(content)
|
|
const html = json[channelTag]
|
|
if (!html) return []
|
|
const $ = cheerio.load(html)
|
|
|
|
return $('li')
|
|
.map((i, el) => {
|
|
return {
|
|
time: $(el).find('.event-time').text().trim(),
|
|
title: $(el).find('.event-title').text().trim()
|
|
}
|
|
})
|
|
.toArray()
|
|
.filter(i => i.time && i.title)
|
|
}
|