mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 09:00:07 -04:00
Create magentatv.de.config.js
This commit is contained in:
parent
1f42ba5558
commit
fe83cde1d5
1 changed files with 122 additions and 0 deletions
122
sites/magentatv.de/magentatv.de.config.js
Normal file
122
sites/magentatv.de/magentatv.de.config.js
Normal file
|
@ -0,0 +1,122 @@
|
|||
const axios = require('axios')
|
||||
const dayjs = require('dayjs')
|
||||
|
||||
const X_CSRFTOKEN = 'e0a032d1c9df6c3fb8c8352399d32c40ddb17ccceb5142fe'
|
||||
const COOKIE =
|
||||
'JSESSIONID=93892A98DBCCEBD83EDC4C23EBEB23B6; CSESSIONID=4A36799EF09D80539BBA8E8211FA80D3; CSRFSESSION=e0a032d1c9df6c3fb8c8352399d32c40ddb17ccceb5142fe; JSESSIONID=93892A98DBCCEBD83EDC4C23EBEB23B6'
|
||||
|
||||
module.exports = {
|
||||
site: 'magentatv.de',
|
||||
url: `https://api.prod.sngtv.magentatv.de/EPG/JSON/PlayBillList`,
|
||||
request: {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
X_CSRFToken: X_CSRFTOKEN,
|
||||
'Content-Type': 'application/json',
|
||||
Cookie: COOKIE
|
||||
},
|
||||
data({ channel, date }) {
|
||||
return {
|
||||
count: -1,
|
||||
isFillProgram: 1,
|
||||
offset: 0,
|
||||
properties: [
|
||||
{
|
||||
include: 'endtime,genres,id,name,starttime,channelid,pictures,introduce',
|
||||
name: 'playbill'
|
||||
}
|
||||
],
|
||||
type: 2,
|
||||
begintime: date.format('YYYYMMDD000000'),
|
||||
channelid: channel.site_id,
|
||||
endtime: date.add(1, 'd').format('YYYYMMDD000000')
|
||||
}
|
||||
}
|
||||
},
|
||||
parser: function ({ content }) {
|
||||
let programs = []
|
||||
const items = parseItems(content)
|
||||
items.forEach(item => {
|
||||
programs.push({
|
||||
title: item.name,
|
||||
description: item.introduce,
|
||||
icon: parseIcon(item),
|
||||
category: parseCategory(item),
|
||||
start: parseStart(item),
|
||||
stop: parseStop(item)
|
||||
})
|
||||
})
|
||||
|
||||
return programs
|
||||
},
|
||||
async channels() {
|
||||
const data = await axios
|
||||
.post(
|
||||
`https://api.prod.sngtv.magentatv.de/EPG/JSON/AllChannel`,
|
||||
{
|
||||
channelNamespace: 2,
|
||||
filterlist: [
|
||||
{
|
||||
key: 'IsHide',
|
||||
value: '-1'
|
||||
}
|
||||
],
|
||||
metaDataVer: 'Channel/1.1',
|
||||
properties: [
|
||||
{
|
||||
include: '/channellist/logicalChannel/contentId,/channellist/logicalChannel/name',
|
||||
name: 'logicalChannel'
|
||||
}
|
||||
],
|
||||
returnSatChannel: 0
|
||||
},
|
||||
{
|
||||
headers: {
|
||||
X_CSRFToken: X_CSRFTOKEN,
|
||||
'Content-Type': 'application/json',
|
||||
Cookie: COOKIE
|
||||
}
|
||||
}
|
||||
)
|
||||
.then(r => r.data)
|
||||
.catch(console.log)
|
||||
|
||||
return data.channellist.map(item => {
|
||||
return {
|
||||
lang: 'de',
|
||||
site_id: item.contentId,
|
||||
name: item.name
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
function parseCategory(item) {
|
||||
return item.genres
|
||||
? item.genres
|
||||
.replace('und', ',')
|
||||
.split(',')
|
||||
.map(i => i.trim())
|
||||
: []
|
||||
}
|
||||
|
||||
function parseIcon(item) {
|
||||
if (!Array.isArray(item.pictures) || !item.pictures.length) return null
|
||||
|
||||
return item.pictures[0].href
|
||||
}
|
||||
|
||||
function parseStart(item) {
|
||||
return dayjs(item.starttime)
|
||||
}
|
||||
|
||||
function parseStop(item) {
|
||||
return dayjs(item.endtime)
|
||||
}
|
||||
|
||||
function parseItems(content) {
|
||||
const data = JSON.parse(content)
|
||||
if (!data || !Array.isArray(data.playbilllist)) return []
|
||||
|
||||
return data.playbilllist
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue