- Programs shorter than 5 minutes will not appear in the TV Guide and will be treated the same way Flex time is treated normally. - The Web UI now has its own TV Guide viewer so that you don't have to rely on clients to preview your channels' line ups. - API: New endpoint to get what shows are being scheduled for a given time frame. - Fix bug where some bad luck could cause two different XMLTVs to get written at once, generating a corrupt xmltv file.
125 lines
3.8 KiB
JavaScript
125 lines
3.8 KiB
JavaScript
const XMLWriter = require('xml-writer')
|
|
const fs = require('fs')
|
|
const helperFuncs = require('./helperFuncs')
|
|
const constants = require('./constants')
|
|
|
|
module.exports = { WriteXMLTV: WriteXMLTV }
|
|
|
|
function WriteXMLTV(json, xmlSettings, throttle ) {
|
|
return new Promise((resolve, reject) => {
|
|
let ws = fs.createWriteStream(xmlSettings.file)
|
|
let xw = new XMLWriter(true, (str, enc) => ws.write(str, enc))
|
|
ws.on('close', () => { resolve() })
|
|
ws.on('error', (err) => { reject(err) })
|
|
_writeDocStart(xw)
|
|
async function middle() {
|
|
let channelNumbers = [];
|
|
Object.keys(json).forEach( (key, index) => channelNumbers.push(key) );
|
|
let channels = channelNumbers.map( (number) => json[number].channel );
|
|
_writeChannels( xw, channels );
|
|
for (let i = 0; i < channelNumbers.length; i++) {
|
|
let number = channelNumbers[i];
|
|
await _writePrograms(xw, json[number].channel, json[number].programs, throttle);
|
|
}
|
|
}
|
|
middle().then( () => {
|
|
_writeDocEnd(xw, ws)
|
|
}).catch( (err) => {
|
|
console.error("Error", err);
|
|
}).then( () => ws.end() );
|
|
})
|
|
}
|
|
|
|
function _writeDocStart(xw) {
|
|
xw.startDocument()
|
|
xw.startElement('tv')
|
|
xw.writeAttribute('generator-info-name', 'psuedotv-plex')
|
|
}
|
|
function _writeDocEnd(xw, ws) {
|
|
xw.endElement()
|
|
xw.endDocument()
|
|
}
|
|
|
|
function _writeChannels(xw, channels) {
|
|
for (let i = 0; i < channels.length; i++) {
|
|
xw.startElement('channel')
|
|
xw.writeAttribute('id', channels[i].number)
|
|
xw.startElement('display-name')
|
|
xw.writeAttribute('lang', 'en')
|
|
xw.text(channels[i].name)
|
|
xw.endElement()
|
|
if (channels[i].icon) {
|
|
xw.startElement('icon')
|
|
xw.writeAttribute('src', channels[i].icon)
|
|
xw.endElement()
|
|
}
|
|
xw.endElement()
|
|
}
|
|
}
|
|
|
|
async function _writePrograms(xw, channel, programs, throttle) {
|
|
for (let i = 0; i < programs.length; i++) {
|
|
await throttle();
|
|
await _writeProgramme(channel, programs[i], xw);
|
|
}
|
|
}
|
|
|
|
async function _writeProgramme(channel, program, xw) {
|
|
// Programme
|
|
xw.startElement('programme')
|
|
xw.writeAttribute('start', _createXMLTVDate(program.start))
|
|
xw.writeAttribute('stop', _createXMLTVDate(program.stop ))
|
|
xw.writeAttribute('channel', channel.number)
|
|
// Title
|
|
xw.startElement('title')
|
|
xw.writeAttribute('lang', 'en')
|
|
xw.text(program.title);
|
|
xw.endElement();
|
|
xw.writeRaw('\n <previously-shown/>')
|
|
|
|
//sub-title
|
|
if ( typeof(program.sub) !== 'undefined') {
|
|
xw.startElement('sub-title')
|
|
xw.writeAttribute('lang', 'en')
|
|
xw.text(program.sub.title)
|
|
xw.endElement()
|
|
|
|
xw.startElement('episode-num')
|
|
xw.writeAttribute('system', 'xmltv_ns')
|
|
xw.text((program.sub.season - 1) + ' . ' + (program.sub.episode - 1) + ' . 0/1')
|
|
xw.endElement()
|
|
}
|
|
// Icon
|
|
if (typeof program.icon !== 'undefined') {
|
|
xw.startElement('icon')
|
|
xw.writeAttribute('src', program.icon)
|
|
xw.endElement()
|
|
}
|
|
// Desc
|
|
xw.startElement('desc')
|
|
xw.writeAttribute('lang', 'en')
|
|
if ( (typeof(program.summary) !== 'undefined') && (program.summary.length > 0) ) {
|
|
xw.text(program.summary)
|
|
} else {
|
|
xw.text(channel.name)
|
|
}
|
|
xw.endElement()
|
|
// Rating
|
|
if (typeof program.rating !== 'undefined') {
|
|
xw.startElement('rating')
|
|
xw.writeAttribute('system', 'MPAA')
|
|
xw.writeElement('value', program.rating)
|
|
xw.endElement()
|
|
}
|
|
// End of Programme
|
|
xw.endElement()
|
|
}
|
|
function _createXMLTVDate(d) {
|
|
return d.substring(0,19).replace(/[-T:]/g,"") + " +0000";
|
|
}
|
|
function _throttle() {
|
|
return new Promise((resolve) => {
|
|
setTimeout(resolve, 0);
|
|
});
|
|
}
|