mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 08:30:06 -04:00
101 lines
2.7 KiB
JavaScript
101 lines
2.7 KiB
JavaScript
const axios = require('axios')
|
|
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)
|
|
|
|
const API_ENDPOINT = 'https://www.dstv.com/umbraco/api/TvGuide'
|
|
|
|
module.exports = {
|
|
site: 'dstv.com',
|
|
days: 2,
|
|
request: {
|
|
cache: {
|
|
ttl: 3 * 60 * 60 * 1000, // 3h
|
|
interpretHeader: false
|
|
}
|
|
},
|
|
url: function ({ channel, date }) {
|
|
const [region] = channel.site_id.split('#')
|
|
const packageName = region === 'nga' ? '&package=DStv%20Premium' : ''
|
|
|
|
return `${API_ENDPOINT}/GetProgrammes?d=${date.format(
|
|
'YYYY-MM-DD'
|
|
)}${packageName}&country=${region}`
|
|
},
|
|
async parser({ content, channel }) {
|
|
let programs = []
|
|
const items = parseItems(content, channel)
|
|
for (const item of items) {
|
|
const details = await loadProgramDetails(item)
|
|
programs.push({
|
|
title: item.Title,
|
|
description: parseDescription(details),
|
|
icon: parseIcon(details),
|
|
category: parseCategory(details),
|
|
start: parseTime(item.StartTime, channel),
|
|
stop: parseTime(item.EndTime, channel)
|
|
})
|
|
}
|
|
|
|
return programs
|
|
},
|
|
async channels({ country }) {
|
|
const data = await axios
|
|
.get(`${API_ENDPOINT}/GetProgrammes?d=2022-03-10&package=DStv%20Premium&country=${country}`)
|
|
.then(r => r.data)
|
|
.catch(console.log)
|
|
|
|
return data.Channels.map(item => {
|
|
return {
|
|
site_id: `${country}#${item.Number}`,
|
|
name: item.Name
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
function parseTime(time, channel) {
|
|
const [region] = channel.site_id.split('#')
|
|
const tz = {
|
|
zaf: 'Africa/Johannesburg',
|
|
nga: 'Africa/Lagos'
|
|
}
|
|
|
|
return dayjs.tz(time, 'YYYY-MM-DDTHH:mm:ss', tz[region])
|
|
}
|
|
|
|
function parseDescription(details) {
|
|
return details ? details.Synopsis : null
|
|
}
|
|
|
|
function parseIcon(details) {
|
|
return details ? details.ThumbnailUri : null
|
|
}
|
|
|
|
function parseCategory(details) {
|
|
return details ? details.SubGenres : null
|
|
}
|
|
|
|
async function loadProgramDetails(item) {
|
|
const url = `${API_ENDPOINT}/GetProgramme?id=${item.Id}`
|
|
|
|
return axios
|
|
.get(url)
|
|
.then(r => r.data)
|
|
.catch(console.error)
|
|
}
|
|
|
|
function parseItems(content, channel) {
|
|
const [, channelId] = channel.site_id.split('#')
|
|
const data = JSON.parse(content)
|
|
if (!data || !Array.isArray(data.Channels)) return []
|
|
const channelData = data.Channels.find(c => c.Number === channelId)
|
|
if (!channelData || !Array.isArray(channelData.Programmes)) return []
|
|
|
|
return channelData.Programmes
|
|
}
|