(rl => { const templateId = 'MailMessageView'; addEventListener('rl-view-model.create', e => { if (templateId === e.detail.viewModelTemplateID) { const template = document.getElementById(templateId), view = e.detail, attachmentsPlace = template.content.querySelector('.attachmentsPlace'), dateRegEx = /(TZID=(?[^:]+):)?(?[0-9]{4})(?[0-9]{2})(?[0-9]{2})T(?[0-9]{2})(?[0-9]{2})(?[0-9]{2})(?Z?)/; attachmentsPlace.after(Element.fromHTML(`
Organizer
Start
End
`)); view.viewICS = ko.observable(null); /** * TODO */ view.message.subscribe(msg => { view.viewICS(null); if (msg) { // let ics = msg.attachments.find(attachment => 'application/ics' == attachment.mimeType); let ics = msg.attachments.find(attachment => 'text/calendar' == attachment.mimeType); if (ics && ics.download) { // fetch it and parse the VEVENT rl.fetch(ics.linkDownload()) .then(response => (response.status < 400) ? response.text() : Promise.reject(new Error({ response }))) .then(text => { let VEVENT, VALARM, multiple = ['ATTACH','ATTENDEE','CATEGORIES','COMMENT','CONTACT','EXDATE', 'EXRULE','RSTATUS','RELATED','RESOURCES','RDATE','RRULE'], lines = text.split(/\r?\n/), i = lines.length; while (i--) { let line = lines[i]; if (VEVENT) { while (line.startsWith(' ') && i--) { line = lines[i] + line.slice(1); } if (line.startsWith('END:VALARM')) { VALARM = {}; continue; } else if (line.startsWith('BEGIN:VALARM')) { VEVENT.VALARM || (VEVENT.VALARM = []); VEVENT.VALARM.push(VALARM); VALARM = null; continue; } else if (line.startsWith('BEGIN:VEVENT')) { break; } line = line.match(/^([^:;]+)[:;](.+)$/); if (line) { if (VALARM) { VALARM[line[1]] = line[2]; } else if (multiple.includes(line[1]) || 'X-' == line[1].slice(0,2)) { VEVENT[line[1]] || (VEVENT[line[1]] = []); VEVENT[line[1]].push(line[2]); } else { if ('DTSTART' === line[1] || 'DTEND' === line[1]) { let parts = dateRegEx.exec(line[2])?.groups, options = {dateStyle: 'long', timeStyle: 'short'}; parts.tz && (options.timeZone = parts.tz); line[2] = new Date( parseInt(parts.year, 10), parseInt(parts.month, 10) - 1, parseInt(parts.day, 10), parseInt(parts.hour, 10), parseInt(parts.minute, 10), parseInt(parts.second, 10) ).format(options); } VEVENT[line[1]] = line[2]; } } } else if (line.startsWith('END:VEVENT')) { VEVENT = {}; } } // METHOD:REPLY || METHOD:REQUEST // console.dir({VEVENT:VEVENT}); if (VEVENT) { VEVENT.rawText = text; VEVENT.isCancelled = () => VEVENT.STATUS?.includes('CANCELLED'); VEVENT.isConfirmed = () => VEVENT.STATUS?.includes('CONFIRMED'); VEVENT.shouldReply = () => VEVENT.METHOD?.includes('REPLY'); console.dir({ isCancelled: VEVENT.isCancelled(), shouldReply: VEVENT.shouldReply() }); view.viewICS(VEVENT); } }); } } }); } }); })(window.rl);