mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 09:00:07 -04:00
Create mediaklikk.hu.config.js
This commit is contained in:
parent
4b92cd7ce4
commit
2cfc380979
1 changed files with 81 additions and 0 deletions
81
sites/mediaklikk.hu/mediaklikk.hu.config.js
Normal file
81
sites/mediaklikk.hu/mediaklikk.hu.config.js
Normal file
|
@ -0,0 +1,81 @@
|
||||||
|
const cheerio = require('cheerio')
|
||||||
|
const dayjs = require('dayjs')
|
||||||
|
const utc = require('dayjs/plugin/utc')
|
||||||
|
const timezone = require('dayjs/plugin/timezone')
|
||||||
|
const customParseFormat = require('dayjs/plugin/customParseFormat')
|
||||||
|
|
||||||
|
dayjs.extend(utc)
|
||||||
|
dayjs.extend(timezone)
|
||||||
|
dayjs.extend(customParseFormat)
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
site: 'mediaklikk.hu',
|
||||||
|
url: 'https://mediaklikk.hu/wp-content/plugins/hms-global-widgets/widgets/programGuide/programGuideInterface.php',
|
||||||
|
request: {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/x-www-form-urlencoded'
|
||||||
|
},
|
||||||
|
data: function ({ date, channel }) {
|
||||||
|
const params = new URLSearchParams()
|
||||||
|
params.append('ChannelIds', `${channel.site_id},`)
|
||||||
|
params.append('Date', date.format('YYYY-MM-DD'))
|
||||||
|
|
||||||
|
return params
|
||||||
|
}
|
||||||
|
},
|
||||||
|
parser: function ({ content }) {
|
||||||
|
const programs = []
|
||||||
|
const items = parseItems(content)
|
||||||
|
items.forEach(item => {
|
||||||
|
const $item = cheerio.load(item)
|
||||||
|
const start = parseStart($item)
|
||||||
|
let stop = parseStop($item)
|
||||||
|
if (!stop) stop = start.add(30, 'm')
|
||||||
|
programs.push({
|
||||||
|
title: parseTitle($item),
|
||||||
|
description: parseDescription($item),
|
||||||
|
icon: parseIcon($item),
|
||||||
|
start,
|
||||||
|
stop
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
return programs
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseStart($item) {
|
||||||
|
const timeString = $item('*').data('from')
|
||||||
|
|
||||||
|
return dayjs.tz(timeString, 'YYYY-MM-DD HH:mm:ss', 'Europe/Budapest')
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseStop($item) {
|
||||||
|
const timeString = $item('*').data('till')
|
||||||
|
if (!timeString) return null
|
||||||
|
|
||||||
|
return dayjs.tz(timeString, 'YYYY-MM-DD HH:mm:ss', 'Europe/Budapest')
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseTitle($item) {
|
||||||
|
return $item('.program_info > h1').text().trim()
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseDescription($item) {
|
||||||
|
return $item('.program_about > .program_description > p').text().trim()
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseIcon($item) {
|
||||||
|
const backgroundImage = $item('.program_about > .program_photo').css('background-image')
|
||||||
|
if (!backgroundImage) return null
|
||||||
|
const [_, icon] = backgroundImage.match(/url\(\'(.*)'\)/) || [null, null]
|
||||||
|
|
||||||
|
return icon
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseItems(content) {
|
||||||
|
const $ = cheerio.load(content)
|
||||||
|
|
||||||
|
return $('li.program_body').toArray()
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue