Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | 1x 1x 9x 9x 9x 9x 31x 9x 1x 4x 4x 2x 2x 2x 1039x 1045x 1045x 1045x 1014x 1045x 9x 9x 29x 9x 29x 21x 21x 3x 3x 21x 9x 9x 9x 1034x 1034x 1034x 1033x 1033x 1033x 1033x 1033x 1027x 1018x 2x 1016x 1016x 9x 12x 12x 9x 2x 1x 542x 542x 542x 542x 542x 542x 1x 1x | 'use strict'; const ICAL = require('ical.js'); // Copied from https://dxr.mozilla.org/comm-central/source/calendar/timezones/zones.json // And compiled using node compile-zones.js // See also https://github.com/mozilla-comm/ical.js/issues/195 const timezones = require('./zones-compiled.json'); class IcalExpander { constructor(opts) { this.maxIterations = opts.maxIterations != null ? opts.maxIterations : 1000; this.skipInvalidDates = opts.skipInvalidDates != null ? opts.skipInvalidDates : false; this.jCalData = ICAL.parse(opts.ics); this.component = new ICAL.Component(this.jCalData); this.events = this.component.getAllSubcomponents('vevent').map(vevent => new ICAL.Event(vevent)); if (this.skipInvalidDates) { this.events = this.events.filter((evt) => { try { evt.startDate.toJSDate(); evt.endDate.toJSDate(); return true; } catch (err) { // skipping events with invalid time return false; } }); } } between(after, before) { function isEventWithinRange(startTime, endTime) { return (!after || endTime >= after.getTime()) && (!before || startTime <= before.getTime()); } function getTimes(eventOrOccurrence) { const startTime = eventOrOccurrence.startDate.toJSDate().getTime(); let endTime = eventOrOccurrence.endDate.toJSDate().getTime(); // If it is an all day event, the end date is set to 00:00 of the next day // So we need to make it be 23:59:59 to compare correctly with the given range if (eventOrOccurrence.endDate.isDate && (endTime > startTime)) { endTime -= 1; } return { startTime, endTime }; } const exceptions = []; this.events.forEach((event) => { if (event.isRecurrenceException()) exceptions.push(event); }); const ret = { events: [], occurrences: [], }; this.events.filter(e => !e.isRecurrenceException()).forEach((event) => { const exdates = []; event.component.getAllProperties('exdate').forEach((exdateProp) => { const exdate = exdateProp.getFirstValue(); exdates.push(exdate.toJSDate().getTime()); }); // Recurring event is handled differently if (event.isRecurring()) { const iterator = event.iterator(); let next; let i = 0; do { i += 1; next = iterator.next(); if (next) { const occurrence = event.getOccurrenceDetails(next); const { startTime, endTime } = getTimes(occurrence); const isOccurrenceExcluded = exdates.indexOf(startTime) !== -1; // TODO check that within same day? const exception = exceptions.find(ex => ex.uid === event.uid && ex.recurrenceId.toJSDate().getTime() === occurrence.startDate.toJSDate().getTime()); // We have passed the max date, stop if (before && startTime > before.getTime()) break; // Check that we are within our range if (isEventWithinRange(startTime, endTime)) { if (exception) { ret.events.push(exception); } else Eif (!isOccurrenceExcluded) { ret.occurrences.push(occurrence); } } } } while (next && (!this.maxIterations || i < this.maxIterations)); return; } // Non-recurring event: const { startTime, endTime } = getTimes(event); if (isEventWithinRange(startTime, endTime)) ret.events.push(event); }); return ret; } before(before) { return this.between(undefined, before); } after(after) { return this.between(after); } all() { return this.between(); } } function registerTimezones() { Object.keys(timezones).forEach((key) => { const icsData = timezones[key]; const icsTimezone = `BEGIN:VTIMEZONE\r\nTZID:${key}\r\n${icsData}\r\nEND:VTIMEZONE`; const parsed = ICAL.parse(`BEGIN:VCALENDAR\nPRODID:-//tzurl.org//NONSGML Olson 2012h//EN\nVERSION:2.0\n${icsTimezone}\nEND:VCALENDAR`); const comp = new ICAL.Component(parsed); const vtimezone = comp.getFirstSubcomponent('vtimezone'); ICAL.TimezoneService.register(key, new ICAL.Timezone(vtimezone)); }); } registerTimezones(); module.exports = IcalExpander; |