aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/pcs/icalendar.c
blob: 1dcbadc8174b3561f3f84d9a121fc8d89018ea53 (plain) (blame)
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
/*
 * icalendar server for gnomecal
 * 
 * This module interfaces between libical and the gnomecal internal
 * representation
 *
 * Copyright (C) 1999 The Free Software Foundation
 * Authors:
 *   Russell Steinthal (rms39@columbia.edu)
 * 
 */

#include <config.h>
#include <unistd.h>
#include <sys/stat.h>
#include "icalendar.h"

static time_t icaltime_to_timet (struct icaltimetype* i);
static CalendarAlarm* parse_alarm (icalproperty *prop);
static iCalPerson* parse_person (icalproperty *prop, gchar *value);
static iCalRelation* parse_related (icalproperty *prop);

/* Duplicate a string without memory leaks */
static gchar* copy_str (gchar** store, gchar* src)
{
    if (*store)
        g_free (*store);
    return (*store = g_strdup (src));
}

static GList* 
copy_to_list (GList** store, gchar* src)
{
    *store = g_list_prepend (*store, g_strdup (src));
    return *store;
}

    
iCalObject *
ical_object_create_from_icalcomponent (icalcomponent* comp)
{
    iCalObject    *ical = NULL;
    iCalPerson    *person;
    icalcomponent *subcomp;
    icalproperty  *prop;
    icalparameter *param;
    struct icaltimetype ictime;
    time_t *pt; 
    CalendarAlarm *alarm = NULL;
    icalcomponent_kind compType;
    struct icalgeotype geo;
    struct icalperiodtype period; 

    gboolean root = FALSE;
    gboolean attachment = FALSE;

    char *tmpStr;       /* this is a library-owned string */

    ical  = g_new0 (iCalObject, 1);

    compType = icalcomponent_isa (comp);
    
    switch (compType) {
    case ICAL_XROOT_COMPONENT:
         root = TRUE;
         break;
    case ICAL_XATTACH_COMPONENT:
         attachment = TRUE;
         break;
    case ICAL_VEVENT_COMPONENT:
         ical->type = ICAL_EVENT;
         break;
    case ICAL_VTODO_COMPONENT:
         ical->type = ICAL_TODO;
         break;
    case ICAL_VJOURNAL_COMPONENT:
         ical->type = ICAL_JOURNAL;
         break;
    case ICAL_VCALENDAR_COMPONENT:
         /* FIXME: what does this mean? */
         break;
    case ICAL_VFREEBUSY_COMPONENT:
         ical->type = ICAL_FBREQUEST;
         /* NOTE: This is not conclusive- you need to analyze
        properties to determine whether this is an
        FBREQUEST or an FBREPLY */
         break;
    case ICAL_VTIMEZONE_COMPONENT:
         ical->type = ICAL_TIMEZONE;
         break;
    case ICAL_VALARM_COMPONENT:
    case ICAL_XAUDIOALARM_COMPONENT:
    case ICAL_XDISPLAYALARM_COMPONENT:
    case ICAL_XEMAILALARM_COMPONENT:
    case ICAL_XPROCEDUREALARM_COMPONENT:
         /* this should not be reached, since this loop should
        only be processing first level components */
         break;
    case ICAL_XSTANDARD_COMPONENT:
         /* FIXME: what does this mean? */
         break;
    case ICAL_XDAYLIGHT_COMPONENT:
         /* FIXME: what does this mean? */
         break;
    case ICAL_X_COMPONENT:
         /* FIXME: what does this mean? */
         break;
    case ICAL_VSCHEDULE_COMPONENT:
         /* FIXME: what does this mean? */
         break;
    case ICAL_XLICINVALID_COMPONENT:
         /* FIXME: what does this mean? */
         break;
    case ICAL_NO_COMPONENT:
    case ICAL_ANY_COMPONENT:
         /* should not occur */
         break;
    case ICAL_VQUERY_COMPONENT:
    case ICAL_VCAR_COMPONENT:
    case ICAL_VCOMMAND_COMPONENT:
         /* FIXME: what does this mean? */
         break;
    }
    
    prop = icalcomponent_get_first_property (comp, ICAL_ANY_PROPERTY);
    while (prop) {
        switch (icalproperty_isa (prop)) {
        case ICAL_CALSCALE_PROPERTY:
            if (g_strcasecmp (icalproperty_get_calscale (prop),
                      "GREGORIAN"))
                g_warning ("Unknown calendar format.");
            break;
        case ICAL_METHOD_PROPERTY:
            /* FIXME: implement something here */
            break;
        case ICAL_ATTACH_PROPERTY:
            /* FIXME: not yet implemented */
            break;
        case ICAL_CATEGORIES_PROPERTY:
            copy_to_list (&ical->categories,
                      icalproperty_get_categories (prop));
            break;
        case ICAL_CLASS_PROPERTY:
            copy_str (&ical->class, icalproperty_get_class (prop));
            break;
        case ICAL_COMMENT_PROPERTY:
            /*tmpStr = icalproperty_get_comment (prop);*/
            tmpStr = g_strconcat (icalproperty_get_comment (prop),
                          ical->comment,
                          NULL);
            if (ical->comment)
                g_free (ical->comment);
            ical->comment = tmpStr;
            break;
        case ICAL_DESCRIPTION_PROPERTY:
            copy_str (&ical->desc, 
                  icalproperty_get_description (prop));
            break;
        case ICAL_GEO_PROPERTY:
            geo = icalproperty_get_geo (prop);
            ical->geo.latitude = geo.lat;
            ical->geo.longitude = geo.lon;
            ical->geo.valid = TRUE;
            break;
        case ICAL_LOCATION_PROPERTY:
            copy_str (&ical->location,
                  icalproperty_get_location (prop));
            break;
        case ICAL_PERCENTCOMPLETE_PROPERTY:
            ical->percent = icalproperty_get_percentcomplete (prop);
            break;
        case ICAL_PRIORITY_PROPERTY:
            ical->priority = icalproperty_get_priority (prop);
            if (ical->priority < 0 || ical->priority > 9)
                g_warning ("Priority out-of-range (see RFC2445)");
            break;
        case ICAL_RESOURCES_PROPERTY:
            copy_to_list (&ical->resources,
                      icalproperty_get_resources (prop));
            break;
        case ICAL_STATUS_PROPERTY:
            copy_str (&ical->status,
                  icalproperty_get_status (prop));
            break;
        case ICAL_SUMMARY_PROPERTY:
            copy_str (&ical->summary,
                  icalproperty_get_summary (prop));
            break;
        case ICAL_COMPLETED_PROPERTY:
            ictime = icalproperty_get_completed (prop);
            ical->completed = icaltime_to_timet (&ictime);
            break;
        case ICAL_DTEND_PROPERTY:
            ictime = icalproperty_get_dtend (prop);
            ical->dtend = icaltime_to_timet (&ictime);
            param = icalproperty_get_first_parameter (prop,
                                  ICAL_VALUE_PARAMETER);
            ical->date_only = (icalparameter_get_value (param) == 
                       ICAL_VALUE_DATE);
            /* FIXME: We should handle timezone specifiers */
            break;
        case ICAL_DUE_PROPERTY:
            ictime = icalproperty_get_due (prop);
            ical->dtend = icaltime_to_timet (&ictime);
            param = icalproperty_get_first_parameter (prop,
                                  ICAL_VALUE_PARAMETER);
            ical->date_only = (icalparameter_get_value (param) == 
                       ICAL_VALUE_DATE);
            /* FIXME: We should handle timezone specifiers */
            break;
        case ICAL_DTSTART_PROPERTY:
            ictime = icalproperty_get_dtstart (prop);
            ical->dtstart = icaltime_to_timet (&ictime);
            param = icalproperty_get_first_parameter (prop,
                                  ICAL_VALUE_PARAMETER);
            ical->date_only = (icalparameter_get_value (param) == 
                       ICAL_VALUE_DATE);
            /* FIXME: We should handle timezone specifiers */
            break;
        case ICAL_DURATION_PROPERTY:
            /* FIXME: I don't see the necessary libical function */
            break;
        case ICAL_FREEBUSY_PROPERTY:
            period = icalproperty_get_freebusy (prop);
            ical->dtstart = icaltime_to_timet (&(period.start));
            /* FIXME: period.end is specified as being relative to start, so 
this may not be correct */
            ical->dtend   = icaltime_to_timet (&(period.end));
            break;
        case ICAL_TRANSP_PROPERTY:
            tmpStr = icalproperty_get_transp (prop);
            /* do not i18n the following string constant! */
            if (!g_strcasecmp (tmpStr, "TRANSPARENT"))
                ical->transp = ICAL_TRANSPARENT;
            else
                ical->transp = ICAL_OPAQUE;
            break;
        case ICAL_TZID_PROPERTY:
        case ICAL_TZNAME_PROPERTY:
        case ICAL_TZOFFSETFROM_PROPERTY:
        case ICAL_TZOFFSETTO_PROPERTY:
        case ICAL_TZURL_PROPERTY:
            /* no implementation for now */
            break;
        case ICAL_ATTENDEE_PROPERTY:
            tmpStr = icalproperty_get_attendee (prop);
            person  = parse_person (prop, tmpStr);
            ical->attendee = g_list_prepend (ical->attendee, 
                             person);
            break;
        case ICAL_CONTACT_PROPERTY:
            tmpStr = icalproperty_get_contact (prop);
            person  = parse_person (prop, tmpStr);
            ical->contact = g_list_prepend (ical->contact, person);
            break;
        case ICAL_ORGANIZER_PROPERTY:
            tmpStr = icalproperty_get_organizer (prop);
            person  = parse_person (prop, tmpStr);
            if (ical->organizer)
                g_free (ical->organizer);
            ical->organizer = person;
            break;
        case ICAL_RECURRENCEID_PROPERTY:
            ictime = icalproperty_get_recurrenceid (prop);
            ical->recurid = icaltime_to_timet (&ictime);
            /* FIXME: Range parameter not implemented */
            break;
        case ICAL_RELATEDTO_PROPERTY:
            ical->related = g_list_prepend (ical->related,
                            parse_related (prop));
            break;
        case ICAL_URL_PROPERTY:
            copy_str (&ical->url, 
                  icalproperty_get_url (prop));
            break;
        case ICAL_UID_PROPERTY:
            copy_str (&ical->uid,
                  icalproperty_get_uid (prop));
            break;
        case ICAL_EXDATE_PROPERTY:
            /* FIXME: This does not appear to parse
                           multiple exdate values in one property, as
                           allowed by the RFC; needs a libical fix */
            ictime = icalproperty_get_exdate (prop);
            pt = g_new0 (time_t, 1);
            *pt = icaltime_to_timet (&ictime);
            ical->exdate = g_list_prepend (ical->exdate, pt);
            break;
        case ICAL_EXRULE_PROPERTY:
        case ICAL_RDATE_PROPERTY:
        case ICAL_RRULE_PROPERTY:
            /* FIXME: need recursion processing */
            break;
        case ICAL_ACTION_PROPERTY:
        case ICAL_REPEAT_PROPERTY:
        case ICAL_TRIGGER_PROPERTY:
            /* should only occur in VALARM's, handled below */
            g_assert_not_reached();
            break;
        case ICAL_CREATED_PROPERTY:
            ictime = icalproperty_get_created (prop);
            ical->created = icaltime_to_timet (&ictime);
            break;
        case ICAL_DTSTAMP_PROPERTY:
            ictime = icalproperty_get_dtstamp (prop);
            ical->dtstamp = icaltime_to_timet (&ictime);
            break;
        case ICAL_LASTMODIFIED_PROPERTY:
            ictime = icalproperty_get_lastmodified (prop);
            ical->last_mod = icaltime_to_timet (&ictime);
            break;
        case ICAL_SEQUENCE_PROPERTY:
            ical->seq = icalproperty_get_sequence (prop);
            break;
        case ICAL_REQUESTSTATUS_PROPERTY:
            copy_str (&ical->rstatus,
                  icalproperty_get_requeststatus (prop));
            break;
        case ICAL_X_PROPERTY:
            g_warning ("Unsupported X-property: %s",
                   icalproperty_as_ical_string (prop));
            break;
        case ICAL_XLICERROR_PROPERTY:
            g_warning ("Unsupported property: %s",
                   icalproperty_get_xlicerror (prop));
            break;
        case ICAL_PRODID_PROPERTY:
        case ICAL_VERSION_PROPERTY:
            /* nothing to do for this property */
            break;
        default:
            g_warning ("Unsupported property: %s", icalproperty_as_ical_string 
(prop));
            break;
            
        }
        
        prop = icalcomponent_get_next_property (comp,
                            ICAL_ANY_PROPERTY);
    }
    
    /* now parse subcomponents --- should only be VALARM's */
    subcomp = icalcomponent_get_first_component (comp,
                             ICAL_ANY_COMPONENT);
    while (subcomp) {
        compType = icalcomponent_isa (subcomp);
        switch (compType) {
        case ICAL_VALARM_COMPONENT:
            alarm = parse_alarm (subcomp);
            if (alarm)
                ical->alarms = g_list_prepend (ical->alarms,
                                   alarm);
            break;
        default:
            g_warning ("Only nested VALARM components are supported.");
        }

        subcomp = icalcomponent_get_next_component (comp,
                                ICAL_ANY_COMPONENT);
    }

    return ical;
}


static time_t icaltime_to_timet (struct icaltimetype* i)
{
    struct tm t;
    time_t ret;

    t.tm_year = i->year - 1900;
    t.tm_mon  = i->month - 1;
    t.tm_mday = i->day;
    if (!i->is_date) {
        t.tm_hour = i->hour;
        t.tm_min  = i->minute;
        t.tm_sec  = i->second;
    } else {
        t.tm_hour = 0;
        t.tm_min  = 0;
        t.tm_sec  = 0;
    }

    ret = mktime(&t);

    if (i->is_utc) {
#ifdef HAVE_TIMEZONE
        extern long timezone;
        ret -= timezone;
#else
        struct tm *tmp;
        time_t tod = time(NULL);
        tmp = localtime (&tod);
        ret += tmp->tm_gmtoff;
#endif
    } 

    return ret;
}
    
static iCalPerson*
parse_person (icalproperty* prop, gchar* value)
{
    icalparameter* param;
    icalparameter_role role;
    icalparameter_partstat partstat;
    icalparameter_cutype cutype;

    iCalPerson* ret;
    
    ret = g_new0 (iCalPerson, 1);

    ret->addr = g_strdup (value);

    param = icalproperty_get_first_parameter (prop,
                          ICAL_CN_PARAMETER);
    ret->name = g_strdup (icalparameter_get_cn (param));
    
    param = icalproperty_get_first_parameter (prop,
                          ICAL_ROLE_PARAMETER);
    if (param) {
        role  = icalparameter_get_role (param);
        switch (role) {
        case ICAL_ROLE_CHAIR:
            ret->role = g_strdup ("CHAIR");
            break;
        case ICAL_ROLE_REQPARTICIPANT:
            ret->role = g_strdup ("REQPARTICIPANT");
            break;
        case ICAL_ROLE_OPTPARTICIPANT:
            ret->role = g_strdup ("OPTPARTICIPANT");
            break;
        case ICAL_ROLE_NONPARTICIPANT:
            ret->role = g_strdup ("NONPARTICIPANT");
            break;
        case ICAL_ROLE_XNAME:
        default:
            ret->role = g_strdup ("UNKNOWN");
            break;
        }
    } else
        ret->role = g_strdup ("REQPARTICIPANT");
    
    param = icalproperty_get_first_parameter (prop, ICAL_PARTSTAT_PARAMETER);
    if (param) {
        partstat = icalparameter_get_partstat (param);
        switch (partstat) {
        case ICAL_PARTSTAT_NEEDSACTION:
            ret->partstat = g_strdup ("NEEDSACTION");
            break;
        case ICAL_PARTSTAT_ACCEPTED:
            ret->partstat = g_strdup ("ACCEPTED");
            break;
        case ICAL_PARTSTAT_DECLINED:
            ret->partstat = g_strdup ("DECLINED");
            break;
        case ICAL_PARTSTAT_TENTATIVE:
            ret->partstat = g_strdup ("TENTATIVE");
            break;
        case ICAL_PARTSTAT_DELEGATED:
            ret->partstat = g_strdup ("DELEGATED");
            break;
        case ICAL_PARTSTAT_COMPLETED:
            ret->partstat = g_strdup ("COMPLETED");
            break;
        case ICAL_PARTSTAT_INPROCESS:
            ret->partstat = g_strdup ("INPROCESS");
            break;
        case ICAL_PARTSTAT_XNAME:
            ret->partstat = g_strdup (icalparameter_get_xvalue (param));
            break;
        default:
            ret->partstat = g_strdup ("UNKNOWN");
            break;
        }
    } else
        ret->partstat = g_strdup ("NEEDSACTION");

    param = icalproperty_get_first_parameter (prop, ICAL_RSVP_PARAMETER);
    if (param)
        ret->rsvp = icalparameter_get_rsvp (param);
    else
        ret->rsvp = FALSE;

    param = icalproperty_get_first_parameter (prop, ICAL_CUTYPE_PARAMETER
);
    if (param) {
        cutype = icalparameter_get_cutype (param);
        switch (cutype) {
        case ICAL_CUTYPE_INDIVIDUAL:
            ret->cutype = g_strdup ("INDIVIDUAL");
            break;
        case ICAL_CUTYPE_GROUP:
            ret->cutype = g_strdup ("GROUP");
            break;
        case ICAL_CUTYPE_RESOURCE:
            ret->cutype = g_strdup ("RESOURCE");
            break;
        case ICAL_CUTYPE_ROOM:
            ret->cutype = g_strdup ("ROOM");
            break;
        case ICAL_CUTYPE_UNKNOWN:
        case ICAL_CUTYPE_XNAME:
        default:
            ret->cutype = g_strdup ("UNKNOWN");
            break;
        }
    } else 
        ret->cutype = g_strdup ("INDIVIDUAL");
    
    param = icalproperty_get_first_parameter (prop, ICAL_MEMBER_PARAMETER
);
    while (param) {
        copy_to_list (&ret->member, icalparameter_get_member (param));
        param = icalproperty_get_next_parameter (prop, 
                             ICAL_MEMBER_PARAMETER);
    }
    
    param = icalproperty_get_first_parameter (prop, ICAL_DELEGATEDTO_PARAMETER);
    while (param) {
        copy_to_list (&ret->deleg_to, 
                  icalparameter_get_delegatedto (param));
        param = icalproperty_get_next_parameter (prop,
                             ICAL_DELEGATEDTO_PARAMETER);
    }

    param = icalproperty_get_first_parameter (prop, ICAL_DELEGATEDFROM_PARAMETER);
    while (param) {
        copy_to_list (&ret->deleg_from, 
                  icalparameter_get_delegatedfrom (param));
        param = icalproperty_get_next_parameter (prop,
                             ICAL_DELEGATEDFROM_PARAMETER);
    }

    param = icalproperty_get_first_parameter (prop, ICAL_SENTBY_PARAMETER
);
    copy_str (&ret->sent_by, 
          icalparameter_get_sentby (param));

    param = icalproperty_get_first_parameter (prop, ICAL_DIR_PARAMETER);
    while (param) {
        copy_to_list (&ret->deleg_to, 
                  icalparameter_get_delegatedto (param));
        param = icalproperty_get_next_parameter (prop,
                             ICAL_DIR_PARAMETER);
    }

    return ret;
}

static iCalRelation* 
parse_related (icalproperty* prop)
{
    iCalRelation* rel;
    icalparameter* param;
    icalparameter_reltype type;

    rel = g_new0 (iCalRelation, 1);
    rel->uid = g_strdup (icalproperty_get_relatedto (prop));
    
    param = icalproperty_get_first_parameter (prop, 
                          ICAL_RELTYPE_PARAMETER);
    if (param) {
        type = icalparameter_get_reltype (param);
        switch (type) {
        case ICAL_RELTYPE_PARENT:
            rel->reltype = g_strdup ("PARENT");
            break;
        case ICAL_RELTYPE_CHILD:
            rel->reltype = g_strdup ("CHILD");
            break;
        case ICAL_RELTYPE_SIBLING:
            rel->reltype = g_strdup ("SIBLING");
            break;
        case ICAL_RELTYPE_XNAME:
            rel->reltype = g_strdup (icalparameter_get_xvalue (param));
            break;
        default:
            rel->reltype = g_strdup ("UNKNOWN");
            break;
        }
    } else
        rel->reltype = g_strdup ("PARENT");

    return rel;
}
    
#ifdef TEST

int main(int argc, char* argv[])
{
    icalcomponent* comp;
    comp = icalendar_parse_file (argv[1]);
    printf ("%s\n", icalcomponent_as_ical_string (comp));
    return 0;
}

#endif
    
    
static CalendarAlarm*
parse_alarm (icalcomponent* comp)
{
    CalendarAlarm *alarm;
    icalproperty  *prop;
    char          *tmpStr;
    struct icaldurationtype dur;
    struct icalattachtype attach;

    g_return_val_if_fail (comp != NULL, NULL);
    
    alarm = g_new0 (CalendarAlarm, 1);
    
    prop = icalcomponent_get_first_property (comp, ICAL_ANY_PROPERTY);
    while (prop) {
        switch (icalproperty_isa (prop)) {
        case ICAL_ACTION_PROPERTY:
            tmpStr = icalproperty_get_action (prop);
            if (!g_strcasecmp (tmpStr, "AUDIO"))
                alarm->type = ALARM_AUDIO;
            else if (!g_strcasecmp (tmpStr, "DISPLAY"))
                alarm->type = ALARM_DISPLAY;
            else if (!g_strcasecmp (tmpStr, "EMAIL"))
                alarm->type = ALARM_MAIL;
            else if (!g_strcasecmp (tmpStr, "PROCEDURE"))
                alarm->type = ALARM_PROGRAM;
            else
                g_warning ("Unsupported alarm type!");
            break;
        case ICAL_TRIGGER_PROPERTY:
            /* FIXME: waiting on proper libical support */
            break;
        case ICAL_REPEAT_PROPERTY:
            alarm->snooze_repeat = icalproperty_get_repeat (prop);
            break;
        case ICAL_DURATION_PROPERTY:
            dur = icalproperty_get_duration (prop);
            alarm->snooze_secs = icaldurationtype_as_timet (dur);
            break;
        case ICAL_ATTACH_PROPERTY:
            attach = icalproperty_get_attach (prop);
            copy_str (&alarm->attach,
                  icalattachtype_get_url (&attach));
            break;
        case ICAL_DESCRIPTION_PROPERTY:
            copy_str (&alarm->desc,
                  icalproperty_get_description (prop));
            break;
        case ICAL_SUMMARY_PROPERTY:
            copy_str (&alarm->summary,
                  icalproperty_get_summary (prop));
            break;
        case ICAL_ATTENDEE_PROPERTY:
            copy_str (&alarm->attendee,
                  icalproperty_get_attendee (prop));
            break;
        default:
            g_warning ("Unsupported alarm property: %s",
                   icalproperty_as_ical_string (prop));
            break;
        }
        
        prop = icalcomponent_get_next_property (comp, 
                            ICAL_ANY_PROPERTY);
    }

    return alarm;
}