mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 08:30:06 -04:00
60 lines
1.5 KiB
JavaScript
60 lines
1.5 KiB
JavaScript
const dayjs = require('dayjs')
|
|
|
|
module.exports = {
|
|
site: 'maxtv.hrvatskitelekom.hr',
|
|
days: 2,
|
|
url: 'https://player.maxtvtogo.tportal.hr:8082/OTT4Proxy/proxy/epg/shows',
|
|
request: {
|
|
method: 'POST',
|
|
data: function ({ channel, date }) {
|
|
return {
|
|
channelList: [channel.site_id],
|
|
startDate: date.unix(),
|
|
endDate: date.add(1, 'd').unix()
|
|
}
|
|
}
|
|
},
|
|
parser: function ({ content, channel }) {
|
|
const programs = []
|
|
const items = parseItems(content, channel)
|
|
items.forEach(item => {
|
|
if (item.showId == -1) return
|
|
programs.push({
|
|
title: item.title,
|
|
category: item.category,
|
|
start: dayjs.unix(item.startTime),
|
|
stop: dayjs.unix(item.endTime)
|
|
})
|
|
})
|
|
|
|
return programs
|
|
},
|
|
async channels() {
|
|
const axios = require('axios')
|
|
const data = await axios
|
|
.get('https://player.maxtvtogo.tportal.hr:8082/OTT4Proxy/proxy/epg/channels')
|
|
.then(r => r.data)
|
|
.catch(console.log)
|
|
|
|
return data.data.channels.map(item => {
|
|
return {
|
|
lang: 'hr',
|
|
site_id: item.channelId,
|
|
name: item.title
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
function parseContent(content, channel) {
|
|
const json = JSON.parse(content)
|
|
if (!Array.isArray(json.data)) return null
|
|
|
|
return json.data.find(i => i.channelId == channel.site_id)
|
|
}
|
|
|
|
function parseItems(content, channel) {
|
|
const data = parseContent(content, channel)
|
|
|
|
return data && Array.isArray(data.shows) ? data.shows : []
|
|
}
|