mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 08:30:06 -04:00
84 lines
2.2 KiB
JavaScript
84 lines
2.2 KiB
JavaScript
const cheerio = require('cheerio')
|
|
const iconv = require('iconv-lite')
|
|
const { DateTime } = require('luxon')
|
|
|
|
module.exports = {
|
|
site: 'm.tv.sms.cz',
|
|
days: 2,
|
|
url: function ({ date, channel }) {
|
|
return `https://m.tv.sms.cz/index.php?stanice=${channel.site_id}&cas=0&den=${date.format(
|
|
'YYYY-MM-DD'
|
|
)}`
|
|
},
|
|
parser: function ({ buffer, date }) {
|
|
const programs = []
|
|
const items = parseItems(buffer)
|
|
items.forEach(item => {
|
|
const prev = programs[programs.length - 1]
|
|
const $item = cheerio.load(item)
|
|
let start = parseStart($item, date)
|
|
if (prev) {
|
|
if (start < prev.start) {
|
|
start = start.plus({ days: 1 })
|
|
date = date.add(1, 'd')
|
|
}
|
|
prev.stop = start
|
|
}
|
|
const stop = start.plus({ hours: 1 })
|
|
programs.push({
|
|
title: parseTitle($item),
|
|
description: parseDescription($item),
|
|
start,
|
|
stop
|
|
})
|
|
})
|
|
|
|
return programs
|
|
},
|
|
async channels() {
|
|
const axios = require('axios')
|
|
const data = await axios
|
|
.get('https://m.tv.sms.cz/?zmen_stanice=true')
|
|
.then(r => r.data)
|
|
.catch(console.log)
|
|
|
|
let channels = []
|
|
const $ = cheerio.load(data)
|
|
$('.stanice').each((i, el) => {
|
|
const name = $(el).attr('title')
|
|
const site_id = $(el).find('input').attr('value').replace(/\|/g, '')
|
|
|
|
if (!name) return
|
|
|
|
channels.push({
|
|
lang: 'cs',
|
|
site_id,
|
|
name
|
|
})
|
|
})
|
|
|
|
return channels
|
|
}
|
|
}
|
|
|
|
function parseStart($item, date) {
|
|
const timeString = $item('div > span').text().trim()
|
|
const dateString = `${date.format('MM/DD/YYYY')} ${timeString}`
|
|
|
|
return DateTime.fromFormat(dateString, 'MM/dd/yyyy HH.mm', { zone: 'Europe/Prague' }).toUTC()
|
|
}
|
|
|
|
function parseDescription($item) {
|
|
return $item('a.nazev > div.detail').text().trim()
|
|
}
|
|
|
|
function parseTitle($item) {
|
|
return $item('a.nazev > div:nth-child(1)').text().trim()
|
|
}
|
|
|
|
function parseItems(buffer) {
|
|
const string = iconv.decode(buffer, 'win1250')
|
|
const $ = cheerio.load(string)
|
|
|
|
return $('#obsah > div > div.porady > div.porad').toArray()
|
|
}
|