mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 00:50:09 -04:00
Create tv.yettel.hu.config.js
This commit is contained in:
parent
5da761e7d9
commit
8632cc2ae1
1 changed files with 68 additions and 0 deletions
68
sites/tv.yettel.hu/tv.yettel.hu.config.js
Normal file
68
sites/tv.yettel.hu/tv.yettel.hu.config.js
Normal file
|
@ -0,0 +1,68 @@
|
|||
const axios = require('axios')
|
||||
const dayjs = require('dayjs')
|
||||
|
||||
module.exports = {
|
||||
site: 'tv.yettel.hu',
|
||||
url: function ({ channel, date }) {
|
||||
return `https://dev.mytvback.com/api/19/default/hu-HU/schedules?livechannelpids=${
|
||||
channel.site_id
|
||||
}&includeImages=cover%3A100%3A144&filterAvailability=false&startTime=${date.unix()}&endTime=${date
|
||||
.add(1, 'd')
|
||||
.unix()}`
|
||||
},
|
||||
parser: function ({ content }) {
|
||||
let programs = []
|
||||
const items = parseItems(content)
|
||||
items.forEach(item => {
|
||||
programs.push({
|
||||
title: item.Title,
|
||||
description: item.ShortDescription,
|
||||
icon: parseIcon(item),
|
||||
start: parseStart(item),
|
||||
stop: parseStop(item)
|
||||
})
|
||||
})
|
||||
|
||||
return programs
|
||||
},
|
||||
async channels() {
|
||||
const data = await axios
|
||||
.get(`https://dev.mytvback.com/api/19/default/hu-HU/content/CHA_LIVE_MYTV2_HU/children`)
|
||||
.then(r => r.data)
|
||||
.catch(console.log)
|
||||
|
||||
const channels = []
|
||||
for (let item of data.Content.List) {
|
||||
channels.push({
|
||||
lang: 'hu',
|
||||
site_id: item.Pid,
|
||||
name: item.CallLetter
|
||||
})
|
||||
}
|
||||
|
||||
return channels
|
||||
}
|
||||
}
|
||||
|
||||
function parseIcon(item) {
|
||||
if (Array.isArray(item.Images.Cover) && item.Images.Cover.length) {
|
||||
return item.Images.Cover[0].Url
|
||||
}
|
||||
|
||||
return null
|
||||
}
|
||||
|
||||
function parseStart(item) {
|
||||
return dayjs.unix(item.Start)
|
||||
}
|
||||
|
||||
function parseStop(item) {
|
||||
return dayjs.unix(item.End)
|
||||
}
|
||||
|
||||
function parseItems(content) {
|
||||
const data = JSON.parse(content)
|
||||
if (!data || !Array.isArray(data.Content)) return []
|
||||
|
||||
return data.Content
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue