mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 00:50:09 -04:00
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
const dayjs = require('dayjs')
|
|
|
|
module.exports = {
|
|
site: 'sky.de',
|
|
ignore: true, // server returns error 403 (https://github.com/iptv-org/epg/runs/5435899744?check_suite_focus=true)
|
|
url: `https://www.sky.de/sgtvg/service/getBroadcastsForGrid`,
|
|
request: {
|
|
method: 'POST',
|
|
data: function ({ channel, date }) {
|
|
return {
|
|
cil: [channel.site_id],
|
|
d: date.valueOf()
|
|
}
|
|
}
|
|
},
|
|
parser: function ({ content, channel }) {
|
|
const programs = []
|
|
const items = parseItems(content, channel)
|
|
items.forEach(item => {
|
|
programs.push({
|
|
title: item.et,
|
|
description: item.epit,
|
|
category: item.ec,
|
|
start: dayjs(item.bsdt),
|
|
stop: dayjs(item.bedt),
|
|
season: item.sn,
|
|
episode: item.en,
|
|
icon: item.pu ? `http://sky.de${item.pu}` : null
|
|
})
|
|
})
|
|
|
|
return programs
|
|
}
|
|
}
|
|
|
|
function parseContent(content, channel) {
|
|
const json = JSON.parse(content)
|
|
if (!Array.isArray(json.cl)) return null
|
|
return json.cl.find(i => i.ci == channel.site_id)
|
|
}
|
|
|
|
function parseItems(content, channel) {
|
|
const data = parseContent(content, channel)
|
|
return data && Array.isArray(data.el) ? data.el : []
|
|
}
|