ics_parse 0.0.1

RFC 5545 iCal / iCalendar event parser (.ics files)


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

ics_parse

Parser for .ics files (ical format)

Only supports parsing VEVENT right now. (no VTODO, VJOURNAL, VFREEBUSY, VTIMEZONE, iana components, custom X-components)

  • Does not support non-UTC timezones (timezones are not exposed, but could be and should be by implementing a custom SysTime timezone that's used)
  • Does not support VALARM parsing (should be easy to add)

Standards: https://datatracker.ietf.org/doc/html/rfc5545

History:

  • May 2022 - added support for date/datetime value type (DTSTART;VALUE=DATE:20220503) parsing
  • June 2019 - initial version

Example

import ics_parse;

auto cal = parseCalendar(`
BEGIN:VCALENDAR
PRODID:TestKalender
VERSION:2.0
CALSCALE:GREGORIAN
BEGIN:VEVENT
DTSTAMP:20181212T212342Z
UID:[email protected]
DTSTART:20181207T070000Z
DTEND:20181207T083000Z
SUMMARY:Prüfung: test
 
LOCATION:Raum1\, Raum2
END:VEVENT
BEGIN:VEVENT
DTSTAMP:20220501T145021Z
UID:[email protected]
DTSTART;VALUE=DATE:20220503
DTEND;VALUE=DATE:20220503
SUMMARY:Full day event
 
END:VEVENT
END:VCALENDAR
`.splitLines.join("\r\n") /* must be CRLF separated lines */, (ref partial, error) {
	// you get parsing errors which you can choose to ignore, log or abort the program
	// (or do anything else in an event of parsing issue)

	// you can assume partial or full values to be missing, basically completely breaking
	// the event if the property in question is important to you.
	assert(false, error.to!string ~ "\n\nPartial result: " ~ partial.to!string);
});

assert(cal.productId == "TestKalender");
assert(cal.specVersion == "2.0");
assert(cal.scale == "GREGORIAN");
assert(cal.entries.length == 2);

auto event0 = cal.entries[0].tryMatch!((VEvent v) => v);
assert(event0.dtStamp == SysTime(DateTime(2018, 12, 12, 21, 23, 42), UTC()));
assert(event0.uid == "[email protected]");
assert(event0.dtStart.tryMatch!((SysTime v) => v) == SysTime(DateTime(2018, 12, 7, 7, 0, 0), UTC()));
assert(event0.dtEnd.tryMatch!((SysTime v) => v) == SysTime(DateTime(2018, 12, 7, 8, 30, 0), UTC()));
assert(event0.summary == "Prüfung: test");
assert(event0.location == "Raum1, Raum2");

cal.entries[1].tryMatch!((VEvent event) {
	assert(event.dtStamp == SysTime(DateTime(2022, 5, 1, 14, 50, 21), UTC()));
	assert(event.uid == "[email protected]");
	assert(event.dtStart.tryMatch!((Date v) => v) == Date(2022, 5, 3));
	assert(event.dtEnd.tryMatch!((Date v) => v) == Date(2022, 5, 3));
	assert(event.summary == "Full day event");
});
Authors:
  • Jan Jurzitza
Dependencies:
none
Versions:
0.0.1 2022-May-03
~master 2022-May-03
Show all 2 versions
Download Stats:
  • 0 downloads today

  • 0 downloads this week

  • 0 downloads this month

  • 9 downloads total

Score:
0.7
Short URL:
ics_parse.dub.pm