mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 16:40:07 -04:00
100 lines
2.3 KiB
JavaScript
100 lines
2.3 KiB
JavaScript
const cheerio = require('cheerio')
|
|
const dayjs = require('dayjs')
|
|
|
|
module.exports = {
|
|
site: 'tvprofil.com',
|
|
skip: true, // NOTE: server is not stable
|
|
url: function ({ channel, date }) {
|
|
const parts = channel.site_id.split('#')
|
|
const query = buildQuery(parts[1], date)
|
|
|
|
return `https://tvprofil.com/${parts[0]}/program/?${query}`
|
|
},
|
|
request: {
|
|
headers: {
|
|
'x-requested-with': 'XMLHttpRequest'
|
|
}
|
|
},
|
|
parser: function ({ content, channel, date }) {
|
|
let programs = []
|
|
const result = parseContent(content)
|
|
if (!result) return programs
|
|
const items = parseItems(result.data.program)
|
|
items.forEach(item => {
|
|
const $item = cheerio.load(item)
|
|
const title = parseTitle($item)
|
|
const category = parseCategory($item)
|
|
const start = parseStart($item)
|
|
const duration = parseDuration($item)
|
|
const stop = start.add(duration, 's')
|
|
const icon = parseIcon($item)
|
|
|
|
programs.push({ title, category, start, stop, icon })
|
|
})
|
|
|
|
return programs
|
|
}
|
|
}
|
|
|
|
function parseIcon($item) {
|
|
return $item(':root').data('image')
|
|
}
|
|
|
|
function parseDuration($item) {
|
|
return $item(':root').data('len')
|
|
}
|
|
|
|
function parseStart($item) {
|
|
const timestamp = $item(':root').data('ts')
|
|
|
|
return dayjs.unix(timestamp)
|
|
}
|
|
|
|
function parseCategory($item) {
|
|
return $item('.col:nth-child(2) > small').text() || null
|
|
}
|
|
|
|
function parseTitle($item) {
|
|
let title = $item('.col:nth-child(2) > a').text()
|
|
title += $item('.col:nth-child(2)').clone().children().remove().end().text()
|
|
|
|
return title.replace('®', '').trim().replace(/,$/, '')
|
|
}
|
|
|
|
function parseItems(program) {
|
|
const $ = cheerio.load(program)
|
|
|
|
return $('.row').toArray()
|
|
}
|
|
|
|
function parseContent(content) {
|
|
let data = (content.match(/cb\((.*)\)/) || [null, null])[1]
|
|
|
|
return JSON.parse(data)
|
|
}
|
|
|
|
function buildQuery(site_id, date) {
|
|
const query = {
|
|
datum: date.format('YYYY-MM-DD'),
|
|
kanal: site_id,
|
|
callback: `cb`
|
|
}
|
|
|
|
const a = query.datum + query.kanal
|
|
const ua = query.kanal + query.datum
|
|
|
|
let i = a.length,
|
|
b = 2,
|
|
c = 2
|
|
|
|
for (var j = 0; j < ua.length; j++) c += ua.charCodeAt(j)
|
|
while (i--) {
|
|
b += (a.charCodeAt(i) + c * 2) * i
|
|
}
|
|
|
|
const key = 'b' + b.toString().charCodeAt(2)
|
|
|
|
query[key] = b
|
|
|
|
return new URLSearchParams(query).toString()
|
|
}
|