1
0
Fork 0
radiomanifest.js/calendar.js
2022-01-30 02:24:21 +01:00

117 lines
2.5 KiB
JavaScript

const ICAL = require('ical.js')
const shows = require('./shows.js')
class RadioSchedule {
constructor (calendar, radio) {
this.calendar = calendar // ICAL.Calendar
this.radio = radio // radiomanifest.Radio
}
getEvents() {
return this.calendar.getAllSubcomponents('vevent');
}
getNowEvent(now) {
var ev_now = this.getEvents().filter(function(vevent) {
const ev = new ICAL.Event(vevent)
return isNow(ev, now)
})
if(ev_now.length === 0)
return null
if(ev_now.length > 1)
console.log("More than one event right now?!")
return ev_now[0]
}
getNowShow(now) {
var ev = this.getNowEvent(now)
if (ev === null) return null
if (this.radio !== undefined) {
const showid = RadioSchedule.veventGetShowID(ev)
var show = this.radio.getShowByName(showid)
if (show === null || show === undefined) {
return new shows.RadioShow(RadioSchedule.veventGetSummary(ev))
}
return show;
}
return new shows.RadioShow(RadioSchedule.veventGetSummary(ev))
}
getNextEvent(now) {
// XXX
}
getNextShow(now) {
// XXX
}
static veventGetSummary(vevent) {
return vevent.getFirstProperty('summary').getFirstValue()
}
static veventGetShowID(vevent) {
return RadioSchedule.veventGetSummary(vevent) // XXX: X-Show-ID
}
}
function isNow(vEvent, now) {
if (now === undefined) {
now = ICAL.Time.now()
}
if (vEvent.isRecurring()) {
return isNowRecurring(vEvent, now)
}
return (now < vEvent.endDate) && (now > event.startDate);
}
function isNowRecurring(vEvent, now) {
var expand = vEvent.iterator(vEvent.startDate)
var next, next_end;
while ((next = expand.next())) {
next_end = next.clone()
next_end.addDuration(vEvent.duration)
if (next_end > now) {
break;
}
}
return (now < next_end && now > next);
}
async function get(manifest) {
if (manifest.scheduleURL) {
let resp = null
try {
resp = await fetch(manifest.scheduleURL)
} catch (e) {
true
}
if (resp !== null) {
try {
text = await resp.text()
return parse(text)
} catch (e) {
console.error('Error while parsing schedule', e)
throw e
}
}
}
}
function parse(text) {
var jcalData = ICAL.parse(text);
var vcalendar = new ICAL.Component(jcalData);
return new RadioSchedule(vcalendar)
}
module.exports = {
get: get,
parse: parse,
RadioSchedule: RadioSchedule,
}