b335dc1d97b8b6a2031fd094e0b18af98ef185b1
[citadel.git] / citadel / modules / calendar / serv_calendar.c
1 /* 
2  * This module implements iCalendar object processing and the Calendar>
3  * room on a Citadel server.  It handles iCalendar objects using the
4  * iTIP protocol.  See RFCs 2445 and 2446.
5  *
6  * Copyright (c) 1987-2018 by the citadel.org team
7  *
8  * This program is open source software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 3.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  */
16
17 #define PRODID "-//Citadel//NONSGML Citadel Calendar//EN"
18
19 #include "ctdl_module.h"
20
21 #include <libical/ical.h>
22
23 #include "msgbase.h"
24 #include "internet_addressing.h"
25 #include "serv_calendar.h"
26 #include "room_ops.h"
27 #include "euidindex.h"
28 #include "ical_dezonify.h"
29 #include "config.h"
30
31
32
33 struct ical_respond_data {
34         char desired_partnum[SIZ];
35         icalcomponent *cal;
36 };
37
38
39 /*
40  * Utility function to create a new VCALENDAR component with some of the
41  * required fields already set the way we like them.
42  */
43 icalcomponent *icalcomponent_new_citadel_vcalendar(void) {
44         icalcomponent *encaps;
45
46         encaps = icalcomponent_new_vcalendar();
47         if (encaps == NULL) {
48                 syslog(LOG_CRIT, "ERROR: could not allocate component!\n");
49                 return NULL;
50         }
51
52         /* Set the Product ID */
53         icalcomponent_add_property(encaps, icalproperty_new_prodid(PRODID));
54
55         /* Set the Version Number */
56         icalcomponent_add_property(encaps, icalproperty_new_version("2.0"));
57
58         return(encaps);
59 }
60
61
62 /*
63  * Utility function to encapsulate a subcomponent into a full VCALENDAR
64  */
65 icalcomponent *ical_encapsulate_subcomponent(icalcomponent *subcomp) {
66         icalcomponent *encaps;
67
68         /* If we're already looking at a full VCALENDAR component,
69          * don't bother ... just return itself.
70          */
71         if (icalcomponent_isa(subcomp) == ICAL_VCALENDAR_COMPONENT) {
72                 return subcomp;
73         }
74
75         /* Encapsulate the VEVENT component into a complete VCALENDAR */
76         encaps = icalcomponent_new_citadel_vcalendar();
77         if (encaps == NULL) return NULL;
78
79         /* Encapsulate the subcomponent inside */
80         icalcomponent_add_component(encaps, subcomp);
81
82         /* Return the object we just created. */
83         return(encaps);
84 }
85
86
87
88
89 /*
90  * Write a calendar object into the specified user's calendar room.
91  * If the supplied user is NULL, this function writes the calendar object
92  * to the currently selected room.
93  */
94 void ical_write_to_cal(struct ctdluser *u, icalcomponent *cal) {
95         char *ser = NULL;
96         long serlen;
97         icalcomponent *encaps = NULL;
98         struct CtdlMessage *msg = NULL;
99         icalcomponent *tmp=NULL;
100
101         if (cal == NULL) return;
102
103         /* If the supplied object is a subcomponent, encapsulate it in
104          * a full VCALENDAR component, and save that instead.
105          */
106         if (icalcomponent_isa(cal) != ICAL_VCALENDAR_COMPONENT) {
107                 tmp = icalcomponent_new_clone(cal);
108                 encaps = ical_encapsulate_subcomponent(tmp);
109                 ical_write_to_cal(u, encaps);
110                 icalcomponent_free(tmp);
111                 icalcomponent_free(encaps);
112                 return;
113         }
114
115         ser = icalcomponent_as_ical_string_r(cal);
116         if (ser == NULL) return;
117
118         serlen = strlen(ser);
119
120         /* If the caller supplied a user, write to that user's default calendar room */
121         if (u) {
122                 /* This handy API function does all the work for us. */
123                 CtdlWriteObject(USERCALENDARROOM,       /* which room */
124                         "text/calendar",        /* MIME type */
125                         ser,                    /* data */
126                         serlen + 1,             /* length */
127                         u,                      /* which user */
128                         0,                      /* not binary */
129                         0,                      /* don't delete others of this type */
130                         0                       /* no flags */
131                 );
132         }
133
134         /* If the caller did not supply a user, write to the currently selected room */
135         if (!u) {
136                 struct CitContext *CCC = CC;
137                 StrBuf *MsgBody;
138
139                 msg = malloc(sizeof(struct CtdlMessage));
140                 memset(msg, 0, sizeof(struct CtdlMessage));
141                 msg->cm_magic = CTDLMESSAGE_MAGIC;
142                 msg->cm_anon_type = MES_NORMAL;
143                 msg->cm_format_type = 4;
144                 CM_SetField(msg, eAuthor, CCC->user.fullname, strlen(CCC->user.fullname));
145                 CM_SetField(msg, eOriginalRoom, CCC->room.QRname, strlen(CCC->room.QRname));
146                 CM_SetField(msg, eHumanNode, CtdlGetConfigStr("c_humannode"), strlen(CtdlGetConfigStr("c_humannode")));
147
148                 MsgBody = NewStrBufPlain(NULL, serlen + 100);
149                 StrBufAppendBufPlain(MsgBody, HKEY("Content-type: text/calendar\r\n\r\n"), 0);
150                 StrBufAppendBufPlain(MsgBody, ser, serlen, 0);
151
152                 CM_SetAsFieldSB(msg, eMesageText, &MsgBody);
153         
154                 /* Now write the data */
155                 CtdlSubmitMsg(msg, NULL, "", QP_EADDR);
156                 CM_Free(msg);
157         }
158
159         /* In either case, now we can free the serialized calendar object */
160         free(ser);
161 }
162
163
164 /*
165  * Send a reply to a meeting invitation.
166  *
167  * 'request' is the invitation to reply to.
168  * 'action' is the string "accept" or "decline" or "tentative".
169  *
170  */
171 void ical_send_a_reply(icalcomponent *request, char *action) {
172         icalcomponent *the_reply = NULL;
173         icalcomponent *vevent = NULL;
174         icalproperty *attendee = NULL;
175         char attendee_string[SIZ];
176         icalproperty *organizer = NULL;
177         char organizer_string[SIZ];
178         icalproperty *summary = NULL;
179         char summary_string[SIZ];
180         icalproperty *me_attend = NULL;
181         recptypes *recp = NULL;
182         icalparameter *partstat = NULL;
183         char *serialized_reply = NULL;
184         char *reply_message_text = NULL;
185         const char *ch;
186         struct CtdlMessage *msg = NULL;
187         recptypes *valid = NULL;
188
189         *organizer_string = '\0';
190         strcpy(summary_string, "Calendar item");
191
192         if (request == NULL) {
193                 syslog(LOG_ERR, "ERROR: trying to reply to NULL event?\n");
194                 return;
195         }
196
197         the_reply = icalcomponent_new_clone(request);
198         if (the_reply == NULL) {
199                 syslog(LOG_ERR, "ERROR: cannot clone request\n");
200                 return;
201         }
202
203         /* Change the method from REQUEST to REPLY */
204         icalcomponent_set_method(the_reply, ICAL_METHOD_REPLY);
205
206         vevent = icalcomponent_get_first_component(the_reply, ICAL_VEVENT_COMPONENT);
207         if (vevent != NULL) {
208                 /* Hunt for attendees, removing ones that aren't us.
209                  * (Actually, remove them all, cloning our own one so we can
210                  * re-insert it later)
211                  */
212                 while (attendee = icalcomponent_get_first_property(vevent,
213                     ICAL_ATTENDEE_PROPERTY), (attendee != NULL)
214                 ) {
215                         ch = icalproperty_get_attendee(attendee);
216                         if ((ch != NULL) && !strncasecmp(ch, "MAILTO:", 7)) {
217                                 safestrncpy(attendee_string, ch + 7, sizeof (attendee_string));
218                                 striplt(attendee_string);
219                                 recp = validate_recipients(attendee_string, NULL, 0);
220                                 if (recp != NULL) {
221                                         if (!strcasecmp(recp->recp_local, CC->user.fullname)) {
222                                                 if (me_attend) icalproperty_free(me_attend);
223                                                 me_attend = icalproperty_new_clone(attendee);
224                                         }
225                                         free_recipients(recp);
226                                 }
227                         }
228
229                         /* Remove it... */
230                         icalcomponent_remove_property(vevent, attendee);
231                         icalproperty_free(attendee);
232                 }
233
234                 /* We found our own address in the attendee list. */
235                 if (me_attend) {
236                         /* Change the partstat from NEEDS-ACTION to ACCEPT or DECLINE */
237                         icalproperty_remove_parameter(me_attend, ICAL_PARTSTAT_PARAMETER);
238
239                         if (!strcasecmp(action, "accept")) {
240                                 partstat = icalparameter_new_partstat(ICAL_PARTSTAT_ACCEPTED);
241                         }
242                         else if (!strcasecmp(action, "decline")) {
243                                 partstat = icalparameter_new_partstat(ICAL_PARTSTAT_DECLINED);
244                         }
245                         else if (!strcasecmp(action, "tentative")) {
246                                 partstat = icalparameter_new_partstat(ICAL_PARTSTAT_TENTATIVE);
247                         }
248
249                         if (partstat) icalproperty_add_parameter(me_attend, partstat);
250
251                         /* Now insert it back into the vevent. */
252                         icalcomponent_add_property(vevent, me_attend);
253                 }
254
255                 /* Figure out who to send this thing to */
256                 organizer = icalcomponent_get_first_property(vevent, ICAL_ORGANIZER_PROPERTY);
257                 if (organizer != NULL) {
258                         if (icalproperty_get_organizer(organizer)) {
259                                 strcpy(organizer_string,
260                                         icalproperty_get_organizer(organizer) );
261                         }
262                 }
263                 if (!strncasecmp(organizer_string, "MAILTO:", 7)) {
264                         strcpy(organizer_string, &organizer_string[7]);
265                         striplt(organizer_string);
266                 } else {
267                         strcpy(organizer_string, "");
268                 }
269
270                 /* Extract the summary string -- we'll use it as the
271                  * message subject for the reply
272                  */
273                 summary = icalcomponent_get_first_property(vevent, ICAL_SUMMARY_PROPERTY);
274                 if (summary != NULL) {
275                         if (icalproperty_get_summary(summary)) {
276                                 strcpy(summary_string,
277                                         icalproperty_get_summary(summary) );
278                         }
279                 }
280         }
281
282         /* Now generate the reply message and send it out. */
283         serialized_reply = icalcomponent_as_ical_string_r(the_reply);
284         icalcomponent_free(the_reply);  /* don't need this anymore */
285         if (serialized_reply == NULL) return;
286
287         reply_message_text = malloc(strlen(serialized_reply) + SIZ);
288         if (reply_message_text != NULL) {
289                 sprintf(reply_message_text,
290                         "Content-type: text/calendar; charset=\"utf-8\"\r\n\r\n%s\r\n",
291                         serialized_reply
292                 );
293
294                 msg = CtdlMakeMessage(&CC->user,
295                         organizer_string,       /* to */
296                         "",                     /* cc */
297                         CC->room.QRname, 0, FMT_RFC822,
298                         "",
299                         "",
300                         summary_string,         /* Use summary for subject */
301                         NULL,
302                         reply_message_text,
303                         NULL);
304         
305                 if (msg != NULL) {
306                         valid = validate_recipients(organizer_string, NULL, 0);
307                         CtdlSubmitMsg(msg, valid, "", QP_EADDR);
308                         CM_Free(msg);
309                         free_recipients(valid);
310                 }
311         }
312         free(serialized_reply);
313 }
314
315
316
317 /*
318  * Callback function for mime parser that hunts for calendar content types
319  * and turns them into calendar objects.  If something is found, it is placed
320  * in ird->cal, and the caller now owns that memory and is responsible for freeing it.
321  */
322 void ical_locate_part(char *name, char *filename, char *partnum, char *disp,
323                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
324                 char *cbid, void *cbuserdata) {
325
326         struct ical_respond_data *ird = NULL;
327
328         ird = (struct ical_respond_data *) cbuserdata;
329
330         /* desired_partnum can be set to "_HUNT_" to have it just look for
331          * the first part with a content type of text/calendar.  Otherwise
332          * we have to only process the right one.
333          */
334         if (strcasecmp(ird->desired_partnum, "_HUNT_")) {
335                 if (strcasecmp(partnum, ird->desired_partnum)) {
336                         return;
337                 }
338         }
339
340         if (  (strcasecmp(cbtype, "text/calendar"))
341            && (strcasecmp(cbtype, "application/ics")) ) {
342                 return;
343         }
344
345         if (ird->cal != NULL) {
346                 icalcomponent_free(ird->cal);
347                 ird->cal = NULL;
348         }
349
350         ird->cal = icalcomponent_new_from_string(content);
351 }
352
353
354 /*
355  * Respond to a meeting request.
356  */
357 void ical_respond(long msgnum, char *partnum, char *action) {
358         struct CtdlMessage *msg = NULL;
359         struct ical_respond_data ird;
360
361         if (
362            (strcasecmp(action, "accept"))
363            && (strcasecmp(action, "decline"))
364         ) {
365                 cprintf("%d Action must be 'accept' or 'decline'\n",
366                         ERROR + ILLEGAL_VALUE
367                 );
368                 return;
369         }
370
371         msg = CtdlFetchMessage(msgnum, 1, 1);
372         if (msg == NULL) {
373                 cprintf("%d Message %ld not found.\n",
374                         ERROR + ILLEGAL_VALUE,
375                         (long)msgnum
376                 );
377                 return;
378         }
379
380         memset(&ird, 0, sizeof ird);
381         strcpy(ird.desired_partnum, partnum);
382         mime_parser(CM_RANGE(msg, eMesageText),
383                     *ical_locate_part,          /* callback function */
384                     NULL, NULL,
385                     (void *) &ird,                      /* user data */
386                     0
387         );
388
389         /* We're done with the incoming message, because we now have a
390          * calendar object in memory.
391          */
392         CM_Free(msg);
393
394         /*
395          * Here is the real meat of this function.  Handle the event.
396          */
397         if (ird.cal != NULL) {
398                 /* Save this in the user's calendar if necessary */
399                 if (!strcasecmp(action, "accept")) {
400                         ical_write_to_cal(&CC->user, ird.cal);
401                 }
402
403                 /* Send a reply if necessary */
404                 if (icalcomponent_get_method(ird.cal) == ICAL_METHOD_REQUEST) {
405                         ical_send_a_reply(ird.cal, action);
406                 }
407
408                 /* We used to delete the invitation after handling it.
409                  * We don't do that anymore, but here is the code that handled it:
410                  * CtdlDeleteMessages(CC->room.QRname, &msgnum, 1, "");
411                  */
412
413                 /* Free the memory we allocated and return a response. */
414                 icalcomponent_free(ird.cal);
415                 ird.cal = NULL;
416                 cprintf("%d ok\n", CIT_OK);
417                 return;
418         }
419         else {
420                 cprintf("%d No calendar object found\n", ERROR + ROOM_NOT_FOUND);
421                 return;
422         }
423
424         /* should never get here */
425 }
426
427
428 /*
429  * Figure out the UID of the calendar event being referred to in a
430  * REPLY object.  This function is recursive.
431  */
432 void ical_learn_uid_of_reply(char *uidbuf, icalcomponent *cal) {
433         icalcomponent *subcomponent;
434         icalproperty *p;
435
436         /* If this object is a REPLY, then extract the UID. */
437         if (icalcomponent_isa(cal) == ICAL_VEVENT_COMPONENT) {
438                 p = icalcomponent_get_first_property(cal, ICAL_UID_PROPERTY);
439                 if (p != NULL) {
440                         strcpy(uidbuf, icalproperty_get_comment(p));
441                 }
442         }
443
444         /* Otherwise, recurse through any VEVENT subcomponents.  We do NOT want the
445          * UID of the reply; we want the UID of the invitation being replied to.
446          */
447         for (subcomponent = icalcomponent_get_first_component(cal, ICAL_VEVENT_COMPONENT);
448             subcomponent != NULL;
449             subcomponent = icalcomponent_get_next_component(cal, ICAL_VEVENT_COMPONENT) ) {
450                 ical_learn_uid_of_reply(uidbuf, subcomponent);
451         }
452 }
453
454
455 /*
456  * ical_update_my_calendar_with_reply() refers to this callback function; when we
457  * locate the message containing the calendar event we're replying to, this function
458  * gets called.  It basically just sticks the message number in a supplied buffer.
459  */
460 void ical_hunt_for_event_to_update(long msgnum, void *data) {
461         long *msgnumptr;
462
463         msgnumptr = (long *) data;
464         *msgnumptr = msgnum;
465 }
466
467
468 struct original_event_container {
469         icalcomponent *c;
470 };
471
472 /*
473  * Callback function for mime parser that hunts for calendar content types
474  * and turns them into calendar objects (called by ical_update_my_calendar_with_reply()
475  * to fetch the object being updated)
476  */
477 void ical_locate_original_event(char *name, char *filename, char *partnum, char *disp,
478                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
479                 char *cbid, void *cbuserdata) {
480
481         struct original_event_container *oec = NULL;
482
483         if (  (strcasecmp(cbtype, "text/calendar"))
484            && (strcasecmp(cbtype, "application/ics")) ) {
485                 return;
486         }
487         oec = (struct original_event_container *) cbuserdata;
488         if (oec->c != NULL) {
489                 icalcomponent_free(oec->c);
490         }
491         oec->c = icalcomponent_new_from_string(content);
492 }
493
494
495 /*
496  * Merge updated attendee information from a REPLY into an existing event.
497  */
498 void ical_merge_attendee_reply(icalcomponent *event, icalcomponent *reply) {
499         icalcomponent *c;
500         icalproperty *e_attendee, *r_attendee;
501
502         /* First things first.  If we're not looking at a VEVENT component,
503          * recurse through subcomponents until we find one.
504          */
505         if (icalcomponent_isa(event) != ICAL_VEVENT_COMPONENT) {
506                 for (c = icalcomponent_get_first_component(event, ICAL_VEVENT_COMPONENT);
507                     c != NULL;
508                     c = icalcomponent_get_next_component(event, ICAL_VEVENT_COMPONENT) ) {
509                         ical_merge_attendee_reply(c, reply);
510                 }
511                 return;
512         }
513
514         /* Now do the same thing with the reply.
515          */
516         if (icalcomponent_isa(reply) != ICAL_VEVENT_COMPONENT) {
517                 for (c = icalcomponent_get_first_component(reply, ICAL_VEVENT_COMPONENT);
518                     c != NULL;
519                     c = icalcomponent_get_next_component(reply, ICAL_VEVENT_COMPONENT) ) {
520                         ical_merge_attendee_reply(event, c);
521                 }
522                 return;
523         }
524
525         /* Clone the reply, because we're going to rip its guts out. */
526         reply = icalcomponent_new_clone(reply);
527
528         /* At this point we're looking at the correct subcomponents.
529          * Iterate through the attendees looking for a match.
530          */
531 STARTOVER:
532         for (e_attendee = icalcomponent_get_first_property(event, ICAL_ATTENDEE_PROPERTY);
533             e_attendee != NULL;
534             e_attendee = icalcomponent_get_next_property(event, ICAL_ATTENDEE_PROPERTY)) {
535
536                 for (r_attendee = icalcomponent_get_first_property(reply, ICAL_ATTENDEE_PROPERTY);
537                     r_attendee != NULL;
538                     r_attendee = icalcomponent_get_next_property(reply, ICAL_ATTENDEE_PROPERTY)) {
539
540                         /* Check to see if these two attendees match...
541                          */
542                         const char *e, *r;
543                         e = icalproperty_get_attendee(e_attendee);
544                         r = icalproperty_get_attendee(r_attendee);
545
546                         if ((e != NULL) && 
547                             (r != NULL) && 
548                             !strcasecmp(e, r)) {
549                                 /* ...and if they do, remove the attendee from the event
550                                  * and replace it with the attendee from the reply.  (The
551                                  * reply's copy will have the same address, but an updated
552                                  * status.)
553                                  */
554                                 icalcomponent_remove_property(event, e_attendee);
555                                 icalproperty_free(e_attendee);
556                                 icalcomponent_remove_property(reply, r_attendee);
557                                 icalcomponent_add_property(event, r_attendee);
558
559                                 /* Since we diddled both sets of attendees, we have to start
560                                  * the iteration over again.  This will not create an infinite
561                                  * loop because we removed the attendee from the reply.  (That's
562                                  * why we cloned the reply, and that's what we mean by "ripping
563                                  * its guts out.")
564                                  */
565                                 goto STARTOVER;
566                         }
567         
568                 }
569         }
570
571         /* Free the *clone* of the reply. */
572         icalcomponent_free(reply);
573 }
574
575
576
577
578 /*
579  * Handle an incoming RSVP (object with method==ICAL_METHOD_REPLY) for a
580  * calendar event.  The object has already been deserialized for us; all
581  * we have to do here is hunt for the event in our calendar, merge in the
582  * updated attendee status, and save it again.
583  *
584  * This function returns 0 on success, 1 if the event was not found in the
585  * user's calendar, or 2 if an internal error occurred.
586  */
587 int ical_update_my_calendar_with_reply(icalcomponent *cal) {
588         char uid[SIZ];
589         char hold_rm[ROOMNAMELEN];
590         long msgnum_being_replaced = 0;
591         struct CtdlMessage *msg = NULL;
592         struct original_event_container oec;
593         icalcomponent *original_event;
594         char *serialized_event = NULL;
595         char roomname[ROOMNAMELEN];
596         char *message_text = NULL;
597
598         /* Figure out just what event it is we're dealing with */
599         strcpy(uid, "--==<< InVaLiD uId >>==--");
600         ical_learn_uid_of_reply(uid, cal);
601         syslog(LOG_DEBUG, "UID of event being replied to is <%s>\n", uid);
602
603         strcpy(hold_rm, CC->room.QRname);       /* save current room */
604
605         if (CtdlGetRoom(&CC->room, USERCALENDARROOM) != 0) {
606                 CtdlGetRoom(&CC->room, hold_rm);
607                 syslog(LOG_CRIT, "cannot get user calendar room\n");
608                 return(2);
609         }
610
611         /*
612          * Look in the EUID index for a message with
613          * the Citadel EUID set to the value we're looking for.  Since
614          * Citadel always sets the message EUID to the iCalendar UID of
615          * the event, this will work.
616          */
617         msgnum_being_replaced = CtdlLocateMessageByEuid(uid, &CC->room);
618
619         CtdlGetRoom(&CC->room, hold_rm);        /* return to saved room */
620
621         syslog(LOG_DEBUG, "msgnum_being_replaced == %ld\n", msgnum_being_replaced);
622         if (msgnum_being_replaced == 0) {
623                 return(1);                      /* no calendar event found */
624         }
625
626         /* Now we know the ID of the message containing the event being updated.
627          * We don't actually have to delete it; that'll get taken care of by the
628          * server when we save another event with the same UID.  This just gives
629          * us the ability to load the event into memory so we can diddle the
630          * attendees.
631          */
632         msg = CtdlFetchMessage(msgnum_being_replaced, 1, 1);
633         if (msg == NULL) {
634                 return(2);                      /* internal error */
635         }
636         oec.c = NULL;
637         mime_parser(CM_RANGE(msg, eMesageText),
638                     *ical_locate_original_event,        /* callback function */
639                     NULL, NULL,
640                     &oec,                               /* user data */
641                     0
642         );
643         CM_Free(msg);
644
645         original_event = oec.c;
646         if (original_event == NULL) {
647                 syslog(LOG_ERR, "ERROR: Original_component is NULL.\n");
648                 return(2);
649         }
650
651         /* Merge the attendee's updated status into the event */
652         ical_merge_attendee_reply(original_event, cal);
653
654         /* Serialize it */
655         serialized_event = icalcomponent_as_ical_string_r(original_event);
656         icalcomponent_free(original_event);     /* Don't need this anymore. */
657         if (serialized_event == NULL) return(2);
658
659         CtdlMailboxName(roomname, sizeof roomname, &CC->user, USERCALENDARROOM);
660
661         message_text = malloc(strlen(serialized_event) + SIZ);
662         if (message_text != NULL) {
663                 sprintf(message_text,
664                         "Content-type: text/calendar; charset=\"utf-8\"\r\n\r\n%s\r\n",
665                         serialized_event
666                 );
667
668                 msg = CtdlMakeMessage(&CC->user,
669                         "",                     /* No recipient */
670                         "",                     /* No recipient */
671                         roomname,
672                         0, FMT_RFC822,
673                         "",
674                         "",
675                         "",             /* no subject */
676                         NULL,
677                         message_text,
678                         NULL);
679         
680                 if (msg != NULL) {
681                         CIT_ICAL->avoid_sending_invitations = 1;
682                         CtdlSubmitMsg(msg, NULL, roomname, QP_EADDR);
683                         CM_Free(msg);
684                         CIT_ICAL->avoid_sending_invitations = 0;
685                 }
686         }
687         free(serialized_event);
688         return(0);
689 }
690
691
692 /*
693  * Handle an incoming RSVP for an event.  (This is the server subcommand part; it
694  * simply extracts the calendar object from the message, deserializes it, and
695  * passes it up to ical_update_my_calendar_with_reply() for processing.
696  */
697 void ical_handle_rsvp(long msgnum, char *partnum, char *action) {
698         struct CtdlMessage *msg = NULL;
699         struct ical_respond_data ird;
700         int ret;
701
702         if (
703            (strcasecmp(action, "update"))
704            && (strcasecmp(action, "ignore"))
705         ) {
706                 cprintf("%d Action must be 'update' or 'ignore'\n",
707                         ERROR + ILLEGAL_VALUE
708                 );
709                 return;
710         }
711
712         msg = CtdlFetchMessage(msgnum, 1, 1);
713         if (msg == NULL) {
714                 cprintf("%d Message %ld not found.\n",
715                         ERROR + ILLEGAL_VALUE,
716                         (long)msgnum
717                 );
718                 return;
719         }
720
721         memset(&ird, 0, sizeof ird);
722         strcpy(ird.desired_partnum, partnum);
723         mime_parser(CM_RANGE(msg, eMesageText),
724                     *ical_locate_part,          /* callback function */
725                     NULL, NULL,
726                     (void *) &ird,                      /* user data */
727                     0
728                 );
729
730         /* We're done with the incoming message, because we now have a
731          * calendar object in memory.
732          */
733         CM_Free(msg);
734
735         /*
736          * Here is the real meat of this function.  Handle the event.
737          */
738         if (ird.cal != NULL) {
739                 /* Update the user's calendar if necessary */
740                 if (!strcasecmp(action, "update")) {
741                         ret = ical_update_my_calendar_with_reply(ird.cal);
742                         if (ret == 0) {
743                                 cprintf("%d Your calendar has been updated with this reply.\n",
744                                         CIT_OK);
745                         }
746                         else if (ret == 1) {
747                                 cprintf("%d This event does not exist in your calendar.\n",
748                                         ERROR + FILE_NOT_FOUND);
749                         }
750                         else {
751                                 cprintf("%d An internal error occurred.\n",
752                                         ERROR + INTERNAL_ERROR);
753                         }
754                 }
755                 else {
756                         cprintf("%d This reply has been ignored.\n", CIT_OK);
757                 }
758
759                 /* Now that we've processed this message, we don't need it
760                  * anymore.  So delete it.  (Don't do this anymore.)
761                 CtdlDeleteMessages(CC->room.QRname, &msgnum, 1, "");
762                  */
763
764                 /* Free the memory we allocated and return a response. */
765                 icalcomponent_free(ird.cal);
766                 ird.cal = NULL;
767                 return;
768         }
769         else {
770                 cprintf("%d No calendar object found\n", ERROR + ROOM_NOT_FOUND);
771                 return;
772         }
773
774         /* should never get here */
775 }
776
777
778 /*
779  * Search for a property in both the top level and in a VEVENT subcomponent
780  */
781 icalproperty *ical_ctdl_get_subprop(
782                 icalcomponent *cal,
783                 icalproperty_kind which_prop
784 ) {
785         icalproperty *p;
786         icalcomponent *c;
787
788         p = icalcomponent_get_first_property(cal, which_prop);
789         if (p == NULL) {
790                 c = icalcomponent_get_first_component(cal,
791                                                         ICAL_VEVENT_COMPONENT);
792                 if (c != NULL) {
793                         p = icalcomponent_get_first_property(c, which_prop);
794                 }
795         }
796         return p;
797 }
798
799
800 /*
801  * Check to see if two events overlap.  Returns nonzero if they do.
802  * (This function is used in both Citadel and WebCit.  If you change it in
803  * one place, change it in the other.  Better yet, put it in a library.)
804  */
805 int ical_ctdl_is_overlap(
806                         struct icaltimetype t1start,
807                         struct icaltimetype t1end,
808                         struct icaltimetype t2start,
809                         struct icaltimetype t2end
810 ) {
811         if (icaltime_is_null_time(t1start)) return(0);
812         if (icaltime_is_null_time(t2start)) return(0);
813
814         /* if either event lacks end time, assume end = start */
815         if (icaltime_is_null_time(t1end))
816                 memcpy(&t1end, &t1start, sizeof(struct icaltimetype));
817         else {
818                 if (t1end.is_date && icaltime_compare(t1start, t1end)) {
819                         /*
820                          * the end date is non-inclusive so adjust it by one
821                          * day because our test is inclusive, note that a day is
822                          * not too much because we are talking about all day
823                          * events
824                          * if start = end we assume that nevertheless the whole
825                          * day is meant
826                          */
827                         icaltime_adjust(&t1end, -1, 0, 0, 0);   
828                 }
829         }
830
831         if (icaltime_is_null_time(t2end))
832                 memcpy(&t2end, &t2start, sizeof(struct icaltimetype));
833         else {
834                 if (t2end.is_date && icaltime_compare(t2start, t2end)) {
835                         icaltime_adjust(&t2end, -1, 0, 0, 0);   
836                 }
837         }
838
839         /* First, check for all-day events */
840         if (t1start.is_date || t2start.is_date) {
841                 /* If event 1 ends before event 2 starts, we're in the clear. */
842                 if (icaltime_compare_date_only(t1end, t2start) < 0) return(0);
843
844                 /* If event 2 ends before event 1 starts, we're also ok. */
845                 if (icaltime_compare_date_only(t2end, t1start) < 0) return(0);
846
847                 return(1);
848         }
849
850         /* syslog(LOG_DEBUG, "Comparing t1start %d:%d t1end %d:%d t2start %d:%d t2end %d:%d \n",
851                 t1start.hour, t1start.minute, t1end.hour, t1end.minute,
852                 t2start.hour, t2start.minute, t2end.hour, t2end.minute);
853         */
854
855         /* Now check for overlaps using date *and* time. */
856
857         /* If event 1 ends before event 2 starts, we're in the clear. */
858         if (icaltime_compare(t1end, t2start) <= 0) return(0);
859         /* syslog(LOG_DEBUG, "first passed\n"); */
860
861         /* If event 2 ends before event 1 starts, we're also ok. */
862         if (icaltime_compare(t2end, t1start) <= 0) return(0);
863         /* syslog(LOG_DEBUG, "second passed\n"); */
864
865         /* Otherwise, they overlap. */
866         return(1);
867 }
868
869 /* 
870  * Phase 6 of "hunt for conflicts"
871  * called by ical_conflicts_phase5()
872  *
873  * Now both the proposed and existing events have been boiled down to start and end times.
874  * Check for overlap and output any conflicts.
875  *
876  * Returns nonzero if a conflict was reported.  This allows the caller to stop iterating.
877  */
878 int ical_conflicts_phase6(struct icaltimetype t1start,
879                         struct icaltimetype t1end,
880                         struct icaltimetype t2start,
881                         struct icaltimetype t2end,
882                         long existing_msgnum,
883                         char *conflict_event_uid,
884                         char *conflict_event_summary,
885                         char *compare_uid)
886 {
887         int conflict_reported = 0;
888
889         /* debugging cruft *
890         time_t tt;
891         tt = icaltime_as_timet_with_zone(t1start, t1start.zone);
892         syslog(LOG_DEBUG, "PROPOSED START: %s", ctime(&tt));
893         tt = icaltime_as_timet_with_zone(t1end, t1end.zone);
894         syslog(LOG_DEBUG, "  PROPOSED END: %s", ctime(&tt));
895         tt = icaltime_as_timet_with_zone(t2start, t2start.zone);
896         syslog(LOG_DEBUG, "EXISTING START: %s", ctime(&tt));
897         tt = icaltime_as_timet_with_zone(t2end, t2end.zone);
898         syslog(LOG_DEBUG, "  EXISTING END: %s", ctime(&tt));
899         * debugging cruft */
900
901         /* compare and output */
902
903         if (ical_ctdl_is_overlap(t1start, t1end, t2start, t2end)) {
904                 cprintf("%ld||%s|%s|%d|\n",
905                         existing_msgnum,
906                         conflict_event_uid,
907                         conflict_event_summary,
908                         (       (!IsEmptyStr(compare_uid)
909                                 &&(!strcasecmp(compare_uid,
910                                 conflict_event_uid))) ? 1 : 0
911                                 )
912                         );
913                 conflict_reported = 1;
914         }
915
916         return(conflict_reported);
917 }
918
919
920
921 /*
922  * Phase 5 of "hunt for conflicts"
923  * Called by ical_conflicts_phase4()
924  *
925  * We have the proposed event boiled down to start and end times.
926  * Now check it against an existing event. 
927  */
928 void ical_conflicts_phase5(struct icaltimetype t1start,
929                         struct icaltimetype t1end,
930                         icalcomponent *existing_event,
931                         long existing_msgnum,
932                         char *compare_uid)
933 {
934         char conflict_event_uid[SIZ];
935         char conflict_event_summary[SIZ];
936         struct icaltimetype t2start, t2end;
937         icalproperty *p;
938
939         /* recur variables */
940         icalproperty *rrule = NULL;
941         struct icalrecurrencetype recur;
942         icalrecur_iterator *ritr = NULL;
943         struct icaldurationtype dur;
944         int num_recur = 0;
945
946         /* initialization */
947         strcpy(conflict_event_uid, "");
948         strcpy(conflict_event_summary, "");
949         t2start = icaltime_null_time();
950         t2end = icaltime_null_time();
951
952         /* existing event stuff */
953         p = ical_ctdl_get_subprop(existing_event, ICAL_DTSTART_PROPERTY);
954         if (p == NULL) return;
955         if (p != NULL) t2start = icalproperty_get_dtstart(p);
956         if (icaltime_is_utc(t2start)) {
957                 t2start.zone = icaltimezone_get_utc_timezone();
958         }
959         else {
960                 t2start.zone = icalcomponent_get_timezone(existing_event,
961                         icalparameter_get_tzid(
962                                 icalproperty_get_first_parameter(p, ICAL_TZID_PARAMETER)
963                         )
964                 );
965                 if (!t2start.zone) {
966                         t2start.zone = get_default_icaltimezone();
967                 }
968         }
969
970         p = ical_ctdl_get_subprop(existing_event, ICAL_DTEND_PROPERTY);
971         if (p != NULL) {
972                 t2end = icalproperty_get_dtend(p);
973
974                 if (icaltime_is_utc(t2end)) {
975                         t2end.zone = icaltimezone_get_utc_timezone();
976                 }
977                 else {
978                         t2end.zone = icalcomponent_get_timezone(existing_event,
979                                 icalparameter_get_tzid(
980                                         icalproperty_get_first_parameter(p, ICAL_TZID_PARAMETER)
981                                 )
982                         );
983                         if (!t2end.zone) {
984                                 t2end.zone = get_default_icaltimezone();
985                         }
986                 }
987                 dur = icaltime_subtract(t2end, t2start);
988         }
989         else {
990                 memset (&dur, 0, sizeof(struct icaldurationtype));
991         }
992
993         rrule = ical_ctdl_get_subprop(existing_event, ICAL_RRULE_PROPERTY);
994         if (rrule) {
995                 recur = icalproperty_get_rrule(rrule);
996                 ritr = icalrecur_iterator_new(recur, t2start);
997         }
998
999         do {
1000                 p = ical_ctdl_get_subprop(existing_event, ICAL_UID_PROPERTY);
1001                 if (p != NULL) {
1002                         strcpy(conflict_event_uid, icalproperty_get_comment(p));
1003                 }
1004         
1005                 p = ical_ctdl_get_subprop(existing_event, ICAL_SUMMARY_PROPERTY);
1006                 if (p != NULL) {
1007                         strcpy(conflict_event_summary, icalproperty_get_comment(p));
1008                 }
1009         
1010                 if (ical_conflicts_phase6(t1start, t1end, t2start, t2end,
1011                    existing_msgnum, conflict_event_uid, conflict_event_summary, compare_uid))
1012                 {
1013                         num_recur = MAX_RECUR + 1;      /* force it out of scope, no need to continue */
1014                 }
1015
1016                 if (rrule) {
1017                         t2start = icalrecur_iterator_next(ritr);
1018                         if (!icaltime_is_null_time(t2end)) {
1019                                 const icaltimezone *hold_zone = t2end.zone;
1020                                 t2end = icaltime_add(t2start, dur);
1021                                 t2end.zone = hold_zone;
1022                         }
1023                         ++num_recur;
1024                 }
1025
1026                 if (icaltime_compare(t2start, t1end) < 0) {
1027                         num_recur = MAX_RECUR + 1;      /* force it out of scope */
1028                 }
1029
1030         } while ( (rrule) && (!icaltime_is_null_time(t2start)) && (num_recur < MAX_RECUR) );
1031         icalrecur_iterator_free(ritr);
1032 }
1033
1034
1035
1036
1037 /*
1038  * Phase 4 of "hunt for conflicts"
1039  * Called by ical_hunt_for_conflicts_backend()
1040  *
1041  * At this point we've got it boiled down to two icalcomponent events in memory.
1042  * If they conflict, output something to the client.
1043  */
1044 void ical_conflicts_phase4(icalcomponent *proposed_event,
1045                 icalcomponent *existing_event,
1046                 long existing_msgnum)
1047 {
1048         struct icaltimetype t1start, t1end;
1049         icalproperty *p;
1050         char compare_uid[SIZ];
1051
1052         /* recur variables */
1053         icalproperty *rrule = NULL;
1054         struct icalrecurrencetype recur;
1055         icalrecur_iterator *ritr = NULL;
1056         struct icaldurationtype dur;
1057         int num_recur = 0;
1058
1059         /* initialization */
1060         t1end = icaltime_null_time();
1061         *compare_uid = '\0';
1062
1063         /* proposed event stuff */
1064
1065         p = ical_ctdl_get_subprop(proposed_event, ICAL_DTSTART_PROPERTY);
1066         if (p == NULL)
1067                 return;
1068         else
1069                 t1start = icalproperty_get_dtstart(p);
1070
1071         if (icaltime_is_utc(t1start)) {
1072                 t1start.zone = icaltimezone_get_utc_timezone();
1073         }
1074         else {
1075                 t1start.zone = icalcomponent_get_timezone(proposed_event,
1076                         icalparameter_get_tzid(
1077                                 icalproperty_get_first_parameter(p, ICAL_TZID_PARAMETER)
1078                         )
1079                 );
1080                 if (!t1start.zone) {
1081                         t1start.zone = get_default_icaltimezone();
1082                 }
1083         }
1084         
1085         p = ical_ctdl_get_subprop(proposed_event, ICAL_DTEND_PROPERTY);
1086         if (p != NULL) {
1087                 t1end = icalproperty_get_dtend(p);
1088
1089                 if (icaltime_is_utc(t1end)) {
1090                         t1end.zone = icaltimezone_get_utc_timezone();
1091                 }
1092                 else {
1093                         t1end.zone = icalcomponent_get_timezone(proposed_event,
1094                                 icalparameter_get_tzid(
1095                                         icalproperty_get_first_parameter(p, ICAL_TZID_PARAMETER)
1096                                 )
1097                         );
1098                         if (!t1end.zone) {
1099                                 t1end.zone = get_default_icaltimezone();
1100                         }
1101                 }
1102
1103                 dur = icaltime_subtract(t1end, t1start);
1104         }
1105         else {
1106                 memset (&dur, 0, sizeof(struct icaldurationtype));
1107         }
1108
1109         rrule = ical_ctdl_get_subprop(proposed_event, ICAL_RRULE_PROPERTY);
1110         if (rrule) {
1111                 recur = icalproperty_get_rrule(rrule);
1112                 ritr = icalrecur_iterator_new(recur, t1start);
1113         }
1114
1115         p = ical_ctdl_get_subprop(proposed_event, ICAL_UID_PROPERTY);
1116         if (p != NULL) {
1117                 strcpy(compare_uid, icalproperty_get_comment(p));
1118         }
1119
1120         do {
1121                 ical_conflicts_phase5(t1start, t1end, existing_event, existing_msgnum, compare_uid);
1122
1123                 if (rrule) {
1124                         t1start = icalrecur_iterator_next(ritr);
1125                         if (!icaltime_is_null_time(t1end)) {
1126                                 const icaltimezone *hold_zone = t1end.zone;
1127                                 t1end = icaltime_add(t1start, dur);
1128                                 t1end.zone = hold_zone;
1129                         }
1130                         ++num_recur;
1131                 }
1132
1133         } while ( (rrule) && (!icaltime_is_null_time(t1start)) && (num_recur < MAX_RECUR) );
1134         icalrecur_iterator_free(ritr);
1135 }
1136
1137
1138
1139 /*
1140  * Phase 3 of "hunt for conflicts"
1141  * Called by ical_hunt_for_conflicts()
1142  */
1143 void ical_hunt_for_conflicts_backend(long msgnum, void *data) {
1144         icalcomponent *proposed_event;
1145         struct CtdlMessage *msg = NULL;
1146         struct ical_respond_data ird;
1147
1148         proposed_event = (icalcomponent *)data;
1149
1150         msg = CtdlFetchMessage(msgnum, 1, 1);
1151         if (msg == NULL) return;
1152         memset(&ird, 0, sizeof ird);
1153         strcpy(ird.desired_partnum, "_HUNT_");
1154         mime_parser(CM_RANGE(msg, eMesageText),
1155                     *ical_locate_part,          /* callback function */
1156                     NULL, NULL,
1157                     (void *) &ird,                      /* user data */
1158                     0
1159         );
1160         CM_Free(msg);
1161
1162         if (ird.cal == NULL) return;
1163
1164         ical_conflicts_phase4(proposed_event, ird.cal, msgnum);
1165         icalcomponent_free(ird.cal);
1166 }
1167
1168
1169
1170 /* 
1171  * Phase 2 of "hunt for conflicts" operation.
1172  * At this point we have a calendar object which represents the VEVENT that
1173  * is proposed for addition to the calendar.  Now hunt through the user's
1174  * calendar room, and output zero or more existing VEVENTs which conflict
1175  * with this one.
1176  */
1177 void ical_hunt_for_conflicts(icalcomponent *cal) {
1178         char hold_rm[ROOMNAMELEN];
1179
1180         strcpy(hold_rm, CC->room.QRname);       /* save current room */
1181
1182         if (CtdlGetRoom(&CC->room, USERCALENDARROOM) != 0) {
1183                 CtdlGetRoom(&CC->room, hold_rm);
1184                 cprintf("%d You do not have a calendar.\n", ERROR + ROOM_NOT_FOUND);
1185                 return;
1186         }
1187
1188         cprintf("%d Conflicting events:\n", LISTING_FOLLOWS);
1189
1190         CtdlForEachMessage(MSGS_ALL, 0, NULL,
1191                 NULL,
1192                 NULL,
1193                 ical_hunt_for_conflicts_backend,
1194                 (void *) cal
1195         );
1196
1197         cprintf("000\n");
1198         CtdlGetRoom(&CC->room, hold_rm);        /* return to saved room */
1199
1200 }
1201
1202
1203
1204 /*
1205  * Hunt for conflicts (Phase 1 -- retrieve the object and call Phase 2)
1206  */
1207 void ical_conflicts(long msgnum, char *partnum) {
1208         struct CtdlMessage *msg = NULL;
1209         struct ical_respond_data ird;
1210
1211         msg = CtdlFetchMessage(msgnum, 1, 1);
1212         if (msg == NULL) {
1213                 cprintf("%d Message %ld not found\n",
1214                         ERROR + ILLEGAL_VALUE,
1215                         (long)msgnum
1216                 );
1217                 return;
1218         }
1219
1220         memset(&ird, 0, sizeof ird);
1221         strcpy(ird.desired_partnum, partnum);
1222         mime_parser(CM_RANGE(msg, eMesageText),
1223                     *ical_locate_part,          /* callback function */
1224                     NULL, NULL,
1225                     (void *) &ird,                      /* user data */
1226                     0
1227                 );
1228
1229         CM_Free(msg);
1230
1231         if (ird.cal != NULL) {
1232                 ical_hunt_for_conflicts(ird.cal);
1233                 icalcomponent_free(ird.cal);
1234                 return;
1235         }
1236
1237         cprintf("%d No calendar object found\n", ERROR + ROOM_NOT_FOUND);
1238 }
1239
1240
1241
1242 /*
1243  * Look for busy time in a VEVENT and add it to the supplied VFREEBUSY.
1244  *
1245  * fb                   The VFREEBUSY component to which we are appending
1246  * top_level_cal        The top-level VCALENDAR component which contains a VEVENT to be added
1247  */
1248 void ical_add_to_freebusy(icalcomponent *fb, icalcomponent *top_level_cal) {
1249         icalcomponent *cal;
1250         icalproperty *p;
1251         icalvalue *v;
1252         struct icalperiodtype this_event_period = icalperiodtype_null_period();
1253         icaltimetype dtstart;
1254         icaltimetype dtend;
1255
1256         /* recur variables */
1257         icalproperty *rrule = NULL;
1258         struct icalrecurrencetype recur;
1259         icalrecur_iterator *ritr = NULL;
1260         struct icaldurationtype dur;
1261         int num_recur = 0;
1262
1263         if (!top_level_cal) return;
1264
1265         /* Find the VEVENT component containing an event */
1266         cal = icalcomponent_get_first_component(top_level_cal, ICAL_VEVENT_COMPONENT);
1267         if (!cal) return;
1268
1269         /* If this event is not opaque, the user isn't publishing it as
1270          * busy time, so don't bother doing anything else.
1271          */
1272         p = icalcomponent_get_first_property(cal, ICAL_TRANSP_PROPERTY);
1273         if (p != NULL) {
1274                 v = icalproperty_get_value(p);
1275                 if (v != NULL) {
1276                         if (icalvalue_get_transp(v) != ICAL_TRANSP_OPAQUE) {
1277                                 return;
1278                         }
1279                 }
1280         }
1281
1282         /*
1283          * Now begin calculating the event start and end times.
1284          */
1285         p = icalcomponent_get_first_property(cal, ICAL_DTSTART_PROPERTY);
1286         if (!p) return;
1287         dtstart = icalproperty_get_dtstart(p);
1288
1289         if (icaltime_is_utc(dtstart)) {
1290                 dtstart.zone = icaltimezone_get_utc_timezone();
1291         }
1292         else {
1293                 dtstart.zone = icalcomponent_get_timezone(top_level_cal,
1294                         icalparameter_get_tzid(
1295                                 icalproperty_get_first_parameter(p, ICAL_TZID_PARAMETER)
1296                         )
1297                 );
1298                 if (!dtstart.zone) {
1299                         dtstart.zone = get_default_icaltimezone();
1300                 }
1301         }
1302
1303         dtend = icalcomponent_get_dtend(cal);
1304         if (!icaltime_is_null_time(dtend)) {
1305                 dur = icaltime_subtract(dtend, dtstart);
1306         }
1307         else {
1308                 memset (&dur, 0, sizeof(struct icaldurationtype));
1309         }
1310
1311         /* Is a recurrence specified?  If so, get ready to process it... */
1312         rrule = ical_ctdl_get_subprop(cal, ICAL_RRULE_PROPERTY);
1313         if (rrule) {
1314                 recur = icalproperty_get_rrule(rrule);
1315                 ritr = icalrecur_iterator_new(recur, dtstart);
1316         }
1317
1318         do {
1319                 /* Convert the DTSTART and DTEND properties to an icalperiod. */
1320                 this_event_period.start = dtstart;
1321         
1322                 if (!icaltime_is_null_time(dtend)) {
1323                         this_event_period.end = dtend;
1324                 }
1325
1326                 /* Convert the timestamps to UTC.  It's ok to do this because we've already expanded
1327                  * recurrences and this data is never going to get used again.
1328                  */
1329                 this_event_period.start = icaltime_convert_to_zone(
1330                         this_event_period.start,
1331                         icaltimezone_get_utc_timezone()
1332                 );
1333                 this_event_period.end = icaltime_convert_to_zone(
1334                         this_event_period.end,
1335                         icaltimezone_get_utc_timezone()
1336                 );
1337         
1338                 /* Now add it. */
1339                 icalcomponent_add_property(fb, icalproperty_new_freebusy(this_event_period));
1340
1341                 /* Make sure the DTSTART property of the freebusy *list* is set to
1342                  * the DTSTART property of the *earliest event*.
1343                  */
1344                 p = icalcomponent_get_first_property(fb, ICAL_DTSTART_PROPERTY);
1345                 if (p == NULL) {
1346                         icalcomponent_set_dtstart(fb, this_event_period.start);
1347                 }
1348                 else {
1349                         if (icaltime_compare(this_event_period.start, icalcomponent_get_dtstart(fb)) < 0) {
1350                                 icalcomponent_set_dtstart(fb, this_event_period.start);
1351                         }
1352                 }
1353         
1354                 /* Make sure the DTEND property of the freebusy *list* is set to
1355                  * the DTEND property of the *latest event*.
1356                  */
1357                 p = icalcomponent_get_first_property(fb, ICAL_DTEND_PROPERTY);
1358                 if (p == NULL) {
1359                         icalcomponent_set_dtend(fb, this_event_period.end);
1360                 }
1361                 else {
1362                         if (icaltime_compare(this_event_period.end, icalcomponent_get_dtend(fb)) > 0) {
1363                                 icalcomponent_set_dtend(fb, this_event_period.end);
1364                         }
1365                 }
1366
1367                 if (rrule) {
1368                         dtstart = icalrecur_iterator_next(ritr);
1369                         if (!icaltime_is_null_time(dtend)) {
1370                                 dtend = icaltime_add(dtstart, dur);
1371                                 dtend.zone = dtstart.zone;
1372                                 dtend.is_utc = dtstart.is_utc;
1373                         }
1374                         ++num_recur;
1375                 }
1376
1377         } while ( (rrule) && (!icaltime_is_null_time(dtstart)) && (num_recur < MAX_RECUR) ) ;
1378         icalrecur_iterator_free(ritr);
1379 }
1380
1381
1382
1383 /*
1384  * Backend for ical_freebusy()
1385  *
1386  * This function simply loads the messages in the user's calendar room,
1387  * which contain VEVENTs, then strips them of all non-freebusy data, and
1388  * adds them to the supplied VCALENDAR.
1389  *
1390  */
1391 void ical_freebusy_backend(long msgnum, void *data) {
1392         icalcomponent *fb;
1393         struct CtdlMessage *msg = NULL;
1394         struct ical_respond_data ird;
1395
1396         fb = (icalcomponent *)data;             /* User-supplied data will be the VFREEBUSY component */
1397
1398         msg = CtdlFetchMessage(msgnum, 1, 1);
1399         if (msg == NULL) return;
1400         memset(&ird, 0, sizeof ird);
1401         strcpy(ird.desired_partnum, "_HUNT_");
1402         mime_parser(CM_RANGE(msg, eMesageText),
1403                     *ical_locate_part,          /* callback function */
1404                     NULL, NULL,
1405                     (void *) &ird,                      /* user data */
1406                     0
1407                 );
1408         CM_Free(msg);
1409
1410         if (ird.cal) {
1411                 ical_add_to_freebusy(fb, ird.cal);              /* Add VEVENT times to VFREEBUSY */
1412                 icalcomponent_free(ird.cal);
1413         }
1414 }
1415
1416
1417
1418 /*
1419  * Grab another user's free/busy times
1420  */
1421 void ical_freebusy(char *who) {
1422         struct ctdluser usbuf;
1423         char calendar_room_name[ROOMNAMELEN];
1424         char hold_rm[ROOMNAMELEN];
1425         char *serialized_request = NULL;
1426         icalcomponent *encaps = NULL;
1427         icalcomponent *fb = NULL;
1428         int found_user = (-1);
1429         recptypes *recp = NULL;
1430         char buf[256];
1431         char host[256];
1432         char type[256];
1433         int i = 0;
1434         int config_lines = 0;
1435
1436         /* First try an exact match. */
1437         found_user = CtdlGetUser(&usbuf, who);
1438
1439         /* If not found, try it as an unqualified email address. */
1440         if (found_user != 0) {
1441                 strcpy(buf, who);
1442                 recp = validate_recipients(buf, NULL, 0);
1443                 syslog(LOG_DEBUG, "Trying <%s>\n", buf);
1444                 if (recp != NULL) {
1445                         if (recp->num_local == 1) {
1446                                 found_user = CtdlGetUser(&usbuf, recp->recp_local);
1447                         }
1448                         free_recipients(recp);
1449                 }
1450         }
1451
1452         /* If still not found, try it as an address qualified with the
1453          * primary FQDN of this Citadel node.
1454          */
1455         if (found_user != 0) {
1456                 snprintf(buf, sizeof buf, "%s@%s", who, CtdlGetConfigStr("c_fqdn"));
1457                 syslog(LOG_DEBUG, "Trying <%s>\n", buf);
1458                 recp = validate_recipients(buf, NULL, 0);
1459                 if (recp != NULL) {
1460                         if (recp->num_local == 1) {
1461                                 found_user = CtdlGetUser(&usbuf, recp->recp_local);
1462                         }
1463                         free_recipients(recp);
1464                 }
1465         }
1466
1467         /* Still not found?  Try qualifying it with every domain we
1468          * might have addresses in.
1469          */
1470         if (found_user != 0) {
1471                 config_lines = num_tokens(inetcfg, '\n');
1472                 for (i=0; ((i < config_lines) && (found_user != 0)); ++i) {
1473                         extract_token(buf, inetcfg, i, '\n', sizeof buf);
1474                         extract_token(host, buf, 0, '|', sizeof host);
1475                         extract_token(type, buf, 1, '|', sizeof type);
1476
1477                         if ( (!strcasecmp(type, "localhost"))
1478                            || (!strcasecmp(type, "directory")) ) {
1479                                 snprintf(buf, sizeof buf, "%s@%s", who, host);
1480                                 syslog(LOG_DEBUG, "Trying <%s>\n", buf);
1481                                 recp = validate_recipients(buf, NULL, 0);
1482                                 if (recp != NULL) {
1483                                         if (recp->num_local == 1) {
1484                                                 found_user = CtdlGetUser(&usbuf, recp->recp_local);
1485                                         }
1486                                         free_recipients(recp);
1487                                 }
1488                         }
1489                 }
1490         }
1491
1492         if (found_user != 0) {
1493                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1494                 return;
1495         }
1496
1497         CtdlMailboxName(calendar_room_name, sizeof calendar_room_name,
1498                 &usbuf, USERCALENDARROOM);
1499
1500         strcpy(hold_rm, CC->room.QRname);       /* save current room */
1501
1502         if (CtdlGetRoom(&CC->room, calendar_room_name) != 0) {
1503                 cprintf("%d Cannot open calendar\n", ERROR + ROOM_NOT_FOUND);
1504                 CtdlGetRoom(&CC->room, hold_rm);
1505                 return;
1506         }
1507
1508         /* Create a VFREEBUSY subcomponent */
1509         syslog(LOG_DEBUG, "Creating VFREEBUSY component\n");
1510         fb = icalcomponent_new_vfreebusy();
1511         if (fb == NULL) {
1512                 cprintf("%d Internal error: cannot allocate memory.\n",
1513                         ERROR + INTERNAL_ERROR);
1514                 CtdlGetRoom(&CC->room, hold_rm);
1515                 return;
1516         }
1517
1518         /* Set the method to PUBLISH */
1519         icalcomponent_set_method(fb, ICAL_METHOD_PUBLISH);
1520
1521         /* Set the DTSTAMP to right now. */
1522         icalcomponent_set_dtstamp(fb, icaltime_from_timet(time(NULL), 0));
1523
1524         /* Add the user's email address as ORGANIZER */
1525         sprintf(buf, "MAILTO:%s", who);
1526         if (strchr(buf, '@') == NULL) {
1527                 strcat(buf, "@");
1528                 strcat(buf, CtdlGetConfigStr("c_fqdn"));
1529         }
1530         for (i=0; buf[i]; ++i) {
1531                 if (buf[i]==' ') buf[i] = '_';
1532         }
1533         icalcomponent_add_property(fb, icalproperty_new_organizer(buf));
1534
1535         /* Add busy time from events */
1536         syslog(LOG_DEBUG, "Adding busy time from events\n");
1537         CtdlForEachMessage(MSGS_ALL, 0, NULL, NULL, NULL, ical_freebusy_backend, (void *)fb );
1538
1539         /* If values for DTSTART and DTEND are still not present, set them
1540          * to yesterday and tomorrow as default values.
1541          */
1542         if (icalcomponent_get_first_property(fb, ICAL_DTSTART_PROPERTY) == NULL) {
1543                 icalcomponent_set_dtstart(fb, icaltime_from_timet(time(NULL)-86400L, 0));
1544         }
1545         if (icalcomponent_get_first_property(fb, ICAL_DTEND_PROPERTY) == NULL) {
1546                 icalcomponent_set_dtend(fb, icaltime_from_timet(time(NULL)+86400L, 0));
1547         }
1548
1549         /* Put the freebusy component into the calendar component */
1550         syslog(LOG_DEBUG, "Encapsulating\n");
1551         encaps = ical_encapsulate_subcomponent(fb);
1552         if (encaps == NULL) {
1553                 icalcomponent_free(fb);
1554                 cprintf("%d Internal error: cannot allocate memory.\n",
1555                         ERROR + INTERNAL_ERROR);
1556                 CtdlGetRoom(&CC->room, hold_rm);
1557                 return;
1558         }
1559
1560         /* Set the method to PUBLISH */
1561         syslog(LOG_DEBUG, "Setting method\n");
1562         icalcomponent_set_method(encaps, ICAL_METHOD_PUBLISH);
1563
1564         /* Serialize it */
1565         syslog(LOG_DEBUG, "Serializing\n");
1566         serialized_request = icalcomponent_as_ical_string_r(encaps);
1567         icalcomponent_free(encaps);     /* Don't need this anymore. */
1568
1569         cprintf("%d Free/busy for %s\n", LISTING_FOLLOWS, usbuf.fullname);
1570         if (serialized_request != NULL) {
1571                 client_write(serialized_request, strlen(serialized_request));
1572                 free(serialized_request);
1573         }
1574         cprintf("\n000\n");
1575
1576         /* Go back to the room from which we came... */
1577         CtdlGetRoom(&CC->room, hold_rm);
1578 }
1579
1580
1581
1582 /*
1583  * Backend for ical_getics()
1584  * 
1585  * This is a ForEachMessage() callback function that searches the current room
1586  * for calendar events and adds them each into one big calendar component.
1587  */
1588 void ical_getics_backend(long msgnum, void *data) {
1589         icalcomponent *encaps, *c;
1590         struct CtdlMessage *msg = NULL;
1591         struct ical_respond_data ird;
1592
1593         encaps = (icalcomponent *)data;
1594         if (encaps == NULL) return;
1595
1596         /* Look for the calendar event... */
1597
1598         msg = CtdlFetchMessage(msgnum, 1, 1);
1599         if (msg == NULL) return;
1600         memset(&ird, 0, sizeof ird);
1601         strcpy(ird.desired_partnum, "_HUNT_");
1602         mime_parser(CM_RANGE(msg, eMesageText),
1603                     *ical_locate_part,          /* callback function */
1604                     NULL, NULL,
1605                     (void *) &ird,                      /* user data */
1606                     0
1607         );
1608         CM_Free(msg);
1609
1610         if (ird.cal == NULL) return;
1611
1612         /* Here we go: put the VEVENT into the VCALENDAR.  We now no longer
1613          * are responsible for "the_request"'s memory -- it will be freed
1614          * when we free "encaps".
1615          */
1616
1617         /* If the top-level component is *not* a VCALENDAR, we can drop it right
1618          * in.  This will almost never happen.
1619          */
1620         if (icalcomponent_isa(ird.cal) != ICAL_VCALENDAR_COMPONENT) {
1621                 icalcomponent_add_component(encaps, ird.cal);
1622         }
1623         /*
1624          * In the more likely event that we're looking at a VCALENDAR with the VEVENT
1625          * and other components encapsulated inside, we have to extract them.
1626          */
1627         else {
1628                 for (c = icalcomponent_get_first_component(ird.cal, ICAL_ANY_COMPONENT);
1629                     (c != NULL);
1630                     c = icalcomponent_get_next_component(ird.cal, ICAL_ANY_COMPONENT)) {
1631
1632                         /* For VTIMEZONE components, suppress duplicates of the same tzid */
1633
1634                         if (icalcomponent_isa(c) == ICAL_VTIMEZONE_COMPONENT) {
1635                                 icalproperty *p = icalcomponent_get_first_property(c, ICAL_TZID_PROPERTY);
1636                                 if (p) {
1637                                         const char *tzid = icalproperty_get_tzid(p);
1638                                         if (!icalcomponent_get_timezone(encaps, tzid)) {
1639                                                 icalcomponent_add_component(encaps,
1640                                                                         icalcomponent_new_clone(c));
1641                                         }
1642                                 }
1643                         }
1644
1645                         /* All other types of components can go in verbatim */
1646                         else {
1647                                 icalcomponent_add_component(encaps, icalcomponent_new_clone(c));
1648                         }
1649                 }
1650                 icalcomponent_free(ird.cal);
1651         }
1652 }
1653
1654
1655
1656 /*
1657  * Retrieve all of the calendar items in the current room, and output them
1658  * as a single icalendar object.
1659  */
1660 void ical_getics(void)
1661 {
1662         icalcomponent *encaps = NULL;
1663         char *ser = NULL;
1664
1665         if ( (CC->room.QRdefaultview != VIEW_CALENDAR)
1666            &&(CC->room.QRdefaultview != VIEW_TASKS) ) {
1667                 cprintf("%d Not a calendar room\n", ERROR+NOT_HERE);
1668                 return;         /* Not an iCalendar-centric room */
1669         }
1670
1671         encaps = icalcomponent_new_vcalendar();
1672         if (encaps == NULL) {
1673                 syslog(LOG_ALERT, "ERROR: could not allocate component!\n");
1674                 cprintf("%d Could not allocate memory\n", ERROR+INTERNAL_ERROR);
1675                 return;
1676         }
1677
1678         cprintf("%d one big calendar\n", LISTING_FOLLOWS);
1679
1680         /* Set the Product ID */
1681         icalcomponent_add_property(encaps, icalproperty_new_prodid(PRODID));
1682
1683         /* Set the Version Number */
1684         icalcomponent_add_property(encaps, icalproperty_new_version("2.0"));
1685
1686         /* Set the method to PUBLISH */
1687         icalcomponent_set_method(encaps, ICAL_METHOD_PUBLISH);
1688
1689         /* Now go through the room encapsulating all calendar items. */
1690         CtdlForEachMessage(MSGS_ALL, 0, NULL,
1691                 NULL,
1692                 NULL,
1693                 ical_getics_backend,
1694                 (void *) encaps
1695         );
1696
1697         ser = icalcomponent_as_ical_string_r(encaps);
1698         icalcomponent_free(encaps);                     /* Don't need this anymore. */
1699         client_write(ser, strlen(ser));
1700         free(ser);
1701         cprintf("\n000\n");
1702 }
1703
1704
1705 /*
1706  * Helper callback function for ical_putics() to discover which TZID's we need.
1707  * Simply put the tzid name string into a hash table.  After the callbacks are
1708  * done we'll go through them and attach the ones that we have.
1709  */
1710 void ical_putics_grabtzids(icalparameter *param, void *data)
1711 {
1712         const char *tzid = icalparameter_get_tzid(param);
1713         HashList *keys = (HashList *) data;
1714         
1715         if ( (keys) && (tzid) && (!IsEmptyStr(tzid)) ) {
1716                 Put(keys, tzid, strlen(tzid), strdup(tzid), NULL);
1717         }
1718 }
1719
1720
1721 /*
1722  * Delete all of the calendar items in the current room, and replace them
1723  * with calendar items from a client-supplied data stream.
1724  */
1725 void ical_putics(void)
1726 {
1727         char *calstream = NULL;
1728         icalcomponent *cal;
1729         icalcomponent *c;
1730         icalcomponent *encaps = NULL;
1731         HashList *tzidlist = NULL;
1732         HashPos *HashPos;
1733         void *Value;
1734         const char *Key;
1735         long len;
1736
1737         /* Only allow this operation if we're in a room containing a calendar or tasks view */
1738         if ( (CC->room.QRdefaultview != VIEW_CALENDAR)
1739            &&(CC->room.QRdefaultview != VIEW_TASKS) ) {
1740                 cprintf("%d Not a calendar room\n", ERROR+NOT_HERE);
1741                 return;
1742         }
1743
1744         /* Only allow this operation if we have permission to overwrite the existing calendar */
1745         if (!CtdlDoIHavePermissionToDeleteMessagesFromThisRoom()) {
1746                 cprintf("%d Permission denied.\n", ERROR+HIGHER_ACCESS_REQUIRED);
1747                 return;
1748         }
1749
1750         cprintf("%d Transmit data now\n", SEND_LISTING);
1751         calstream = CtdlReadMessageBody(HKEY("000"), CtdlGetConfigLong("c_maxmsglen"), NULL, 0);
1752         if (calstream == NULL) {
1753                 return;
1754         }
1755
1756         cal = icalcomponent_new_from_string(calstream);
1757         free(calstream);
1758
1759         /* We got our data stream -- now do something with it. */
1760
1761         /* Delete the existing messages in the room, because we are overwriting
1762          * the entire calendar with an entire new (or updated) calendar.
1763          * (Careful: this opens an S_ROOMS critical section!)
1764          */
1765         CtdlDeleteMessages(CC->room.QRname, NULL, 0, "");
1766
1767         /* If the top-level component is *not* a VCALENDAR, we can drop it right
1768          * in.  This will almost never happen.
1769          */
1770         if (icalcomponent_isa(cal) != ICAL_VCALENDAR_COMPONENT) {
1771                 ical_write_to_cal(NULL, cal);
1772         }
1773         /*
1774          * In the more likely event that we're looking at a VCALENDAR with the VEVENT
1775          * and other components encapsulated inside, we have to extract them.
1776          */
1777         else {
1778                 for (c = icalcomponent_get_first_component(cal, ICAL_ANY_COMPONENT);
1779                     (c != NULL);
1780                     c = icalcomponent_get_next_component(cal, ICAL_ANY_COMPONENT)) {
1781
1782                         /* Non-VTIMEZONE components each get written as individual messages.
1783                          * But we also need to attach the relevant VTIMEZONE components to them.
1784                          */
1785                         if ( (icalcomponent_isa(c) != ICAL_VTIMEZONE_COMPONENT)
1786                            && (encaps = icalcomponent_new_vcalendar()) ) {
1787                                 icalcomponent_add_property(encaps, icalproperty_new_prodid(PRODID));
1788                                 icalcomponent_add_property(encaps, icalproperty_new_version("2.0"));
1789                                 icalcomponent_set_method(encaps, ICAL_METHOD_PUBLISH);
1790
1791                                 /* Attach any needed timezones here */
1792                                 tzidlist = NewHash(1, NULL);
1793                                 if (tzidlist) {
1794                                         icalcomponent_foreach_tzid(c, ical_putics_grabtzids, tzidlist);
1795                                 }
1796                                 HashPos = GetNewHashPos(tzidlist, 0);
1797
1798                                 while (GetNextHashPos(tzidlist, HashPos, &len, &Key, &Value)) {
1799                                         syslog(LOG_DEBUG, "Attaching timezone '%s'\n", (char*) Value);
1800                                         icaltimezone *t = NULL;
1801
1802                                         /* First look for a timezone attached to the original calendar */
1803                                         t = icalcomponent_get_timezone(cal, Value);
1804
1805                                         /* Try built-in tzdata if the right one wasn't attached */
1806                                         if (!t) {
1807                                                 t = icaltimezone_get_builtin_timezone(Value);
1808                                         }
1809
1810                                         /* I've got a valid timezone to attach. */
1811                                         if (t) {
1812                                                 icalcomponent_add_component(encaps,
1813                                                         icalcomponent_new_clone(
1814                                                                 icaltimezone_get_component(t)
1815                                                         )
1816                                                 );
1817                                         }
1818
1819                                 }
1820                                 DeleteHashPos(&HashPos);
1821                                 DeleteHash(&tzidlist);
1822
1823                                 /* Now attach the component itself (usually a VEVENT or VTODO) */
1824                                 icalcomponent_add_component(encaps, icalcomponent_new_clone(c));
1825
1826                                 /* Write it to the message store */
1827                                 ical_write_to_cal(NULL, encaps);
1828                                 icalcomponent_free(encaps);
1829                         }
1830                 }
1831         }
1832
1833         icalcomponent_free(cal);
1834 }
1835
1836
1837 /*
1838  * All Citadel calendar commands from the client come through here.
1839  */
1840 void cmd_ical(char *argbuf)
1841 {
1842         char subcmd[64];
1843         long msgnum;
1844         char partnum[256];
1845         char action[256];
1846         char who[256];
1847
1848         extract_token(subcmd, argbuf, 0, '|', sizeof subcmd);
1849
1850         /* Allow "test" and "freebusy" subcommands without logging in. */
1851
1852         if (!strcasecmp(subcmd, "test")) {
1853                 cprintf("%d This server supports calendaring\n", CIT_OK);
1854                 return;
1855         }
1856
1857         if (!strcasecmp(subcmd, "freebusy")) {
1858                 extract_token(who, argbuf, 1, '|', sizeof who);
1859                 ical_freebusy(who);
1860                 return;
1861         }
1862
1863         if (!strcasecmp(subcmd, "sgi")) {
1864                 CIT_ICAL->server_generated_invitations =
1865                         (extract_int(argbuf, 1) ? 1 : 0) ;
1866                 cprintf("%d %d\n",
1867                         CIT_OK, CIT_ICAL->server_generated_invitations);
1868                 return;
1869         }
1870
1871         if (CtdlAccessCheck(ac_logged_in)) return;
1872
1873         if (!strcasecmp(subcmd, "respond")) {
1874                 msgnum = extract_long(argbuf, 1);
1875                 extract_token(partnum, argbuf, 2, '|', sizeof partnum);
1876                 extract_token(action, argbuf, 3, '|', sizeof action);
1877                 ical_respond(msgnum, partnum, action);
1878                 return;
1879         }
1880
1881         if (!strcasecmp(subcmd, "handle_rsvp")) {
1882                 msgnum = extract_long(argbuf, 1);
1883                 extract_token(partnum, argbuf, 2, '|', sizeof partnum);
1884                 extract_token(action, argbuf, 3, '|', sizeof action);
1885                 ical_handle_rsvp(msgnum, partnum, action);
1886                 return;
1887         }
1888
1889         if (!strcasecmp(subcmd, "conflicts")) {
1890                 msgnum = extract_long(argbuf, 1);
1891                 extract_token(partnum, argbuf, 2, '|', sizeof partnum);
1892                 ical_conflicts(msgnum, partnum);
1893                 return;
1894         }
1895
1896         if (!strcasecmp(subcmd, "getics")) {
1897                 ical_getics();
1898                 return;
1899         }
1900
1901         if (!strcasecmp(subcmd, "putics")) {
1902                 ical_putics();
1903                 return;
1904         }
1905
1906         cprintf("%d Invalid subcommand\n", ERROR + CMD_NOT_SUPPORTED);
1907 }
1908
1909
1910
1911 /*
1912  * We don't know if the calendar room exists so we just create it at login
1913  */
1914 void ical_CtdlCreateRoom(void)
1915 {
1916         struct ctdlroom qr;
1917         visit vbuf;
1918
1919         /* Create the calendar room if it doesn't already exist */
1920         CtdlCreateRoom(USERCALENDARROOM, 4, "", 0, 1, 0, VIEW_CALENDAR);
1921
1922         /* Set expiration policy to manual; otherwise objects will be lost! */
1923         if (CtdlGetRoomLock(&qr, USERCALENDARROOM)) {
1924                 syslog(LOG_CRIT, "Couldn't get the user calendar room!\n");
1925                 return;
1926         }
1927         qr.QRep.expire_mode = EXPIRE_MANUAL;
1928         qr.QRdefaultview = VIEW_CALENDAR;       /* 3 = calendar view */
1929         CtdlPutRoomLock(&qr);
1930
1931         /* Set the view to a calendar view */
1932         CtdlGetRelationship(&vbuf, &CC->user, &qr);
1933         vbuf.v_view = VIEW_CALENDAR;
1934         CtdlSetRelationship(&vbuf, &CC->user, &qr);
1935
1936         /* Create the tasks list room if it doesn't already exist */
1937         CtdlCreateRoom(USERTASKSROOM, 4, "", 0, 1, 0, VIEW_TASKS);
1938
1939         /* Set expiration policy to manual; otherwise objects will be lost! */
1940         if (CtdlGetRoomLock(&qr, USERTASKSROOM)) {
1941                 syslog(LOG_CRIT, "Couldn't get the user calendar room!\n");
1942                 return;
1943         }
1944         qr.QRep.expire_mode = EXPIRE_MANUAL;
1945         qr.QRdefaultview = VIEW_TASKS;
1946         CtdlPutRoomLock(&qr);
1947
1948         /* Set the view to a task list view */
1949         CtdlGetRelationship(&vbuf, &CC->user, &qr);
1950         vbuf.v_view = VIEW_TASKS;
1951         CtdlSetRelationship(&vbuf, &CC->user, &qr);
1952
1953         /* Create the notes room if it doesn't already exist */
1954         CtdlCreateRoom(USERNOTESROOM, 4, "", 0, 1, 0, VIEW_NOTES);
1955
1956         /* Set expiration policy to manual; otherwise objects will be lost! */
1957         if (CtdlGetRoomLock(&qr, USERNOTESROOM)) {
1958                 syslog(LOG_CRIT, "Couldn't get the user calendar room!\n");
1959                 return;
1960         }
1961         qr.QRep.expire_mode = EXPIRE_MANUAL;
1962         qr.QRdefaultview = VIEW_NOTES;
1963         CtdlPutRoomLock(&qr);
1964
1965         /* Set the view to a notes view */
1966         CtdlGetRelationship(&vbuf, &CC->user, &qr);
1967         vbuf.v_view = VIEW_NOTES;
1968         CtdlSetRelationship(&vbuf, &CC->user, &qr);
1969
1970         return;
1971 }
1972
1973
1974 /*
1975  * ical_send_out_invitations() is called by ical_saving_vevent() when it finds a VEVENT.
1976  *
1977  * top_level_cal is the highest available level calendar object.
1978  * cal is the subcomponent containing the VEVENT.
1979  *
1980  * Note: if you change the encapsulation code here, change it in WebCit's ical_encapsulate_subcomponent()
1981  */
1982 void ical_send_out_invitations(icalcomponent *top_level_cal, icalcomponent *cal) {
1983         icalcomponent *the_request = NULL;
1984         char *serialized_request = NULL;
1985         icalcomponent *encaps = NULL;
1986         char *request_message_text = NULL;
1987         struct CtdlMessage *msg = NULL;
1988         recptypes *valid = NULL;
1989         char attendees_string[SIZ];
1990         int num_attendees = 0;
1991         char this_attendee[256];
1992         icalproperty *attendee = NULL;
1993         char summary_string[SIZ];
1994         icalproperty *summary = NULL;
1995         size_t reqsize;
1996         icalproperty *p;
1997         struct icaltimetype t;
1998         const icaltimezone *attached_zones[5] = { NULL, NULL, NULL, NULL, NULL };
1999         int i;
2000         const icaltimezone *z;
2001         int num_zones_attached = 0;
2002         int zone_already_attached;
2003         icalparameter *tzidp = NULL;
2004         const char *tzidc = NULL;
2005
2006         if (cal == NULL) {
2007                 syslog(LOG_ERR, "ERROR: trying to reply to NULL event?\n");
2008                 return;
2009         }
2010
2011
2012         /* If this is a VCALENDAR component, look for a VEVENT subcomponent. */
2013         if (icalcomponent_isa(cal) == ICAL_VCALENDAR_COMPONENT) {
2014                 ical_send_out_invitations(top_level_cal,
2015                         icalcomponent_get_first_component(
2016                                 cal, ICAL_VEVENT_COMPONENT
2017                         )
2018                 );
2019                 return;
2020         }
2021
2022         /* Clone the event */
2023         the_request = icalcomponent_new_clone(cal);
2024         if (the_request == NULL) {
2025                 syslog(LOG_ERR, "ERROR: cannot clone calendar object\n");
2026                 return;
2027         }
2028
2029         /* Extract the summary string -- we'll use it as the
2030          * message subject for the request
2031          */
2032         strcpy(summary_string, "Meeting request");
2033         summary = icalcomponent_get_first_property(the_request, ICAL_SUMMARY_PROPERTY);
2034         if (summary != NULL) {
2035                 if (icalproperty_get_summary(summary)) {
2036                         strcpy(summary_string,
2037                                 icalproperty_get_summary(summary) );
2038                 }
2039         }
2040
2041         /* Determine who the recipients of this message are (the attendees) */
2042         strcpy(attendees_string, "");
2043         for (attendee = icalcomponent_get_first_property(the_request, ICAL_ATTENDEE_PROPERTY); attendee != NULL; attendee = icalcomponent_get_next_property(the_request, ICAL_ATTENDEE_PROPERTY)) {
2044                 const char *ch = icalproperty_get_attendee(attendee);
2045                 if ((ch != NULL) && !strncasecmp(ch, "MAILTO:", 7)) {
2046                         safestrncpy(this_attendee, ch + 7, sizeof(this_attendee));
2047                         
2048                         if (!CtdlIsMe(this_attendee, sizeof this_attendee)) {   /* don't send an invitation to myself! */
2049                                 snprintf(&attendees_string[strlen(attendees_string)],
2050                                          sizeof(attendees_string) - strlen(attendees_string),
2051                                          "%s, ",
2052                                          this_attendee
2053                                         );
2054                                 ++num_attendees;
2055                         }
2056                 }
2057         }
2058
2059         syslog(LOG_DEBUG, "<%d> attendees: <%s>\n", num_attendees, attendees_string);
2060
2061         /* If there are no attendees, there are no invitations to send, so...
2062          * don't bother putting one together!  Punch out, Maverick!
2063          */
2064         if (num_attendees == 0) {
2065                 icalcomponent_free(the_request);
2066                 return;
2067         }
2068
2069         /* Encapsulate the VEVENT component into a complete VCALENDAR */
2070         encaps = icalcomponent_new_vcalendar();
2071         if (encaps == NULL) {
2072                 syslog(LOG_ALERT, "ERROR: could not allocate component!\n");
2073                 icalcomponent_free(the_request);
2074                 return;
2075         }
2076
2077         /* Set the Product ID */
2078         icalcomponent_add_property(encaps, icalproperty_new_prodid(PRODID));
2079
2080         /* Set the Version Number */
2081         icalcomponent_add_property(encaps, icalproperty_new_version("2.0"));
2082
2083         /* Set the method to REQUEST */
2084         icalcomponent_set_method(encaps, ICAL_METHOD_REQUEST);
2085
2086         /* Look for properties containing timezone parameters, to see if we need to attach VTIMEZONEs */
2087         for (p = icalcomponent_get_first_property(the_request, ICAL_ANY_PROPERTY);
2088              p != NULL;
2089              p = icalcomponent_get_next_property(the_request, ICAL_ANY_PROPERTY))
2090         {
2091                 if ( (icalproperty_isa(p) == ICAL_COMPLETED_PROPERTY)
2092                   || (icalproperty_isa(p) == ICAL_CREATED_PROPERTY)
2093                   || (icalproperty_isa(p) == ICAL_DATEMAX_PROPERTY)
2094                   || (icalproperty_isa(p) == ICAL_DATEMIN_PROPERTY)
2095                   || (icalproperty_isa(p) == ICAL_DTEND_PROPERTY)
2096                   || (icalproperty_isa(p) == ICAL_DTSTAMP_PROPERTY)
2097                   || (icalproperty_isa(p) == ICAL_DTSTART_PROPERTY)
2098                   || (icalproperty_isa(p) == ICAL_DUE_PROPERTY)
2099                   || (icalproperty_isa(p) == ICAL_EXDATE_PROPERTY)
2100                   || (icalproperty_isa(p) == ICAL_LASTMODIFIED_PROPERTY)
2101                   || (icalproperty_isa(p) == ICAL_MAXDATE_PROPERTY)
2102                   || (icalproperty_isa(p) == ICAL_MINDATE_PROPERTY)
2103                   || (icalproperty_isa(p) == ICAL_RECURRENCEID_PROPERTY)
2104                 ) {
2105                         t = icalproperty_get_dtstart(p);        // it's safe to use dtstart for all of them
2106
2107                         /* Determine the tzid in order for some of the conditions below to work */
2108                         tzidp = icalproperty_get_first_parameter(p, ICAL_TZID_PARAMETER);
2109                         if (tzidp) {
2110                                 tzidc = icalparameter_get_tzid(tzidp);
2111                         }
2112                         else {
2113                                 tzidc = NULL;
2114                         }
2115
2116                         /* First see if there's a timezone attached to the data structure itself */
2117                         if (icaltime_is_utc(t)) {
2118                                 z = icaltimezone_get_utc_timezone();
2119                         }
2120                         else {
2121                                 z = icaltime_get_timezone(t);
2122                         }
2123
2124                         /* If not, try to determine the tzid from the parameter using attached zones */
2125                         if ((!z) && (tzidc)) {
2126                                 z = icalcomponent_get_timezone(top_level_cal, tzidc);
2127                         }
2128
2129                         /* Still no good?  Try our internal database */
2130                         if ((!z) && (tzidc)) {
2131                                 z = icaltimezone_get_builtin_timezone_from_tzid(tzidc);
2132                         }
2133
2134                         if (z) {
2135                                 /* We have a valid timezone.  Good.  Now we need to attach it. */
2136
2137                                 zone_already_attached = 0;
2138                                 for (i=0; i<5; ++i) {
2139                                         if (z == attached_zones[i]) {
2140                                                 /* We've already got this one, no need to attach another. */
2141                                                 ++zone_already_attached;
2142                                         }
2143                                 }
2144                                 if ((!zone_already_attached) && (num_zones_attached < 5)) {
2145                                         /* This is a new one, so attach it. */
2146                                         attached_zones[num_zones_attached++] = z;
2147                                 }
2148
2149                                 icalproperty_set_parameter(p,
2150                                         icalparameter_new_tzid(icaltimezone_get_tzid(z))
2151                                 );
2152                         }
2153                 }
2154         }
2155
2156         /* Encapsulate any timezones we need */
2157         if (num_zones_attached > 0) for (i=0; i<num_zones_attached; ++i) {
2158                 icalcomponent *zc;
2159                 zc = icalcomponent_new_clone(icaltimezone_get_component(attached_zones[i]));
2160                 icalcomponent_add_component(encaps, zc);
2161         }
2162
2163         /* Here we go: encapsulate the VEVENT into the VCALENDAR.  We now no longer
2164          * are responsible for "the_request"'s memory -- it will be freed
2165          * when we free "encaps".
2166          */
2167         icalcomponent_add_component(encaps, the_request);
2168
2169         /* Serialize it */
2170         serialized_request = icalcomponent_as_ical_string_r(encaps);
2171         icalcomponent_free(encaps);     /* Don't need this anymore. */
2172         if (serialized_request == NULL) return;
2173
2174         reqsize = strlen(serialized_request) + SIZ;
2175         request_message_text = malloc(reqsize);
2176         if (request_message_text != NULL) {
2177                 snprintf(request_message_text, reqsize,
2178                         "Content-type: text/calendar\r\n\r\n%s\r\n",
2179                         serialized_request
2180                 );
2181
2182                 msg = CtdlMakeMessage(
2183                         &CC->user,
2184                         NULL,                   /* No single recipient here */
2185                         NULL,                   /* No single recipient here */
2186                         CC->room.QRname,
2187                         0,
2188                         FMT_RFC822,
2189                         NULL,
2190                         NULL,
2191                         summary_string,         /* Use summary for subject */
2192                         NULL,
2193                         request_message_text,
2194                         NULL
2195                 );
2196         
2197                 if (msg != NULL) {
2198                         valid = validate_recipients(attendees_string, NULL, 0);
2199                         CtdlSubmitMsg(msg, valid, "", QP_EADDR);
2200                         CM_Free(msg);
2201                         free_recipients(valid);
2202                 }
2203         }
2204         free(serialized_request);
2205 }
2206
2207
2208 /*
2209  * When a calendar object is being saved, determine whether it's a VEVENT
2210  * and the user saving it is the organizer.  If so, send out invitations
2211  * to any listed attendees.
2212  *
2213  * This function is recursive.  The caller can simply supply the same object
2214  * as both arguments.  When it recurses it will alter the second argument
2215  * while holding on to the top level object.  This allows us to go back and
2216  * grab things like time zones which might be attached.
2217  *
2218  */
2219 void ical_saving_vevent(icalcomponent *top_level_cal, icalcomponent *cal) {
2220         icalcomponent *c;
2221         icalproperty *organizer = NULL;
2222         char organizer_string[SIZ];
2223
2224         syslog(LOG_DEBUG, "ical_saving_vevent() has been called!\n");
2225
2226         /* Don't send out invitations unless the client wants us to. */
2227         if (CIT_ICAL->server_generated_invitations == 0) {
2228                 return;
2229         }
2230
2231         /* Don't send out invitations if we've been asked not to. */
2232         if (CIT_ICAL->avoid_sending_invitations > 0) {
2233                 return;
2234         }
2235
2236         strcpy(organizer_string, "");
2237         /*
2238          * The VEVENT subcomponent is the one we're interested in.
2239          * Send out invitations if, and only if, this user is the Organizer.
2240          */
2241         if (icalcomponent_isa(cal) == ICAL_VEVENT_COMPONENT) {
2242                 organizer = icalcomponent_get_first_property(cal, ICAL_ORGANIZER_PROPERTY);
2243                 if (organizer != NULL) {
2244                         if (icalproperty_get_organizer(organizer)) {
2245                                 strcpy(organizer_string,
2246                                         icalproperty_get_organizer(organizer));
2247                         }
2248                 }
2249                 if (!strncasecmp(organizer_string, "MAILTO:", 7)) {
2250                         strcpy(organizer_string, &organizer_string[7]);
2251                         striplt(organizer_string);
2252                         /*
2253                          * If the user saving the event is listed as the
2254                          * organizer, then send out invitations.
2255                          */
2256                         if (CtdlIsMe(organizer_string, sizeof organizer_string)) {
2257                                 ical_send_out_invitations(top_level_cal, cal);
2258                         }
2259                 }
2260         }
2261
2262         /* If the component has subcomponents, recurse through them. */
2263         for (c = icalcomponent_get_first_component(cal, ICAL_ANY_COMPONENT);
2264             (c != NULL);
2265             c = icalcomponent_get_next_component(cal, ICAL_ANY_COMPONENT)) {
2266                 /* Recursively process subcomponent */
2267                 ical_saving_vevent(top_level_cal, c);
2268         }
2269
2270 }
2271
2272
2273
2274 /*
2275  * Back end for ical_obj_beforesave()
2276  * This hunts for the UID of the calendar event (becomes Citadel msg EUID),
2277  * the summary of the event (becomes message subject),
2278  * and the start time (becomes message date/time).
2279  */
2280 void ical_obj_beforesave_backend(char *name, char *filename, char *partnum,
2281                 char *disp, void *content, char *cbtype, char *cbcharset, size_t length,
2282                 char *encoding, char *cbid, void *cbuserdata)
2283 {
2284         const char* pch;
2285         icalcomponent *cal, *nested_event, *nested_todo, *whole_cal;
2286         icalproperty *p;
2287         char new_uid[256] = "";
2288         struct CtdlMessage *msg = (struct CtdlMessage *) cbuserdata;
2289
2290         if (!msg) return;
2291
2292         /* We're only interested in calendar data. */
2293         if (  (strcasecmp(cbtype, "text/calendar"))
2294            && (strcasecmp(cbtype, "application/ics")) ) {
2295                 return;
2296         }
2297
2298         /* Hunt for the UID and drop it in
2299          * the "user data" pointer for the MIME parser.  When
2300          * ical_obj_beforesave() sees it there, it'll set the Exclusive msgid
2301          * to that string.
2302          */
2303         whole_cal = icalcomponent_new_from_string(content);
2304         cal = whole_cal;
2305         if (cal != NULL) {
2306                 if (icalcomponent_isa(cal) == ICAL_VCALENDAR_COMPONENT) {
2307                         nested_event = icalcomponent_get_first_component(
2308                                 cal, ICAL_VEVENT_COMPONENT);
2309                         if (nested_event != NULL) {
2310                                 cal = nested_event;
2311                         }
2312                         else {
2313                                 nested_todo = icalcomponent_get_first_component(
2314                                         cal, ICAL_VTODO_COMPONENT);
2315                                 if (nested_todo != NULL) {
2316                                         cal = nested_todo;
2317                                 }
2318                         }
2319                 }
2320                 
2321                 if (cal != NULL) {
2322
2323                         /* Set the message EUID to the iCalendar UID */
2324
2325                         p = ical_ctdl_get_subprop(cal, ICAL_UID_PROPERTY);
2326                         if (p == NULL) {
2327                                 /* If there's no uid we must generate one */
2328                                 generate_uuid(new_uid);
2329                                 icalcomponent_add_property(cal, icalproperty_new_uid(new_uid));
2330                                 p = ical_ctdl_get_subprop(cal, ICAL_UID_PROPERTY);
2331                         }
2332                         if (p != NULL) {
2333                                 pch = icalproperty_get_comment(p);
2334                                 if (!IsEmptyStr(pch)) {
2335                                         CM_SetField(msg, eExclusiveID, pch, strlen(pch));
2336                                         syslog(LOG_DEBUG, "Saving calendar UID <%s>\n", pch);
2337                                 }
2338                         }
2339
2340                         /* Set the message subject to the iCalendar summary */
2341
2342                         p = ical_ctdl_get_subprop(cal, ICAL_SUMMARY_PROPERTY);
2343                         if (p != NULL) {
2344                                 pch = icalproperty_get_comment(p);
2345                                 if (!IsEmptyStr(pch)) {
2346                                         char *subj;
2347
2348                                         subj = rfc2047encode(pch, strlen(pch));
2349                                         CM_SetAsField(msg, eMsgSubject, &subj, strlen(subj));
2350                                 }
2351                         }
2352
2353                         /* Set the message date/time to the iCalendar start time */
2354
2355                         p = ical_ctdl_get_subprop(cal, ICAL_DTSTART_PROPERTY);
2356                         if (p != NULL) {
2357                                 time_t idtstart;
2358                                 idtstart = icaltime_as_timet(icalproperty_get_dtstart(p));
2359                                 if (idtstart > 0) {
2360                                         CM_SetFieldLONG(msg, eTimestamp, idtstart);
2361                                 }
2362                         }
2363
2364                 }
2365                 icalcomponent_free(cal);
2366                 if (whole_cal != cal) {
2367                         icalcomponent_free(whole_cal);
2368                 }
2369         }
2370 }
2371
2372
2373
2374
2375 /*
2376  * See if we need to prevent the object from being saved (we don't allow
2377  * MIME types other than text/calendar in "calendar" or "tasks" rooms).
2378  *
2379  * If the message is being saved, we also set various message header fields
2380  * using data found in the iCalendar object.
2381  */
2382 int ical_obj_beforesave(struct CtdlMessage *msg, recptypes *recp)
2383 {
2384         /* First determine if this is a calendar or tasks room */
2385         if (  (CC->room.QRdefaultview != VIEW_CALENDAR)
2386            && (CC->room.QRdefaultview != VIEW_TASKS)
2387         ) {
2388                 return(0);              /* Not an iCalendar-centric room */
2389         }
2390
2391         /* It must be an RFC822 message! */
2392         if (msg->cm_format_type != 4) {
2393                 syslog(LOG_DEBUG, "Rejecting non-RFC822 message\n");
2394                 return(1);              /* You tried to save a non-RFC822 message! */
2395         }
2396
2397         if (CM_IsEmpty(msg, eMesageText)) {
2398                 return(1);              /* You tried to save a null message! */
2399         }
2400
2401         /* Do all of our lovely back-end parsing */
2402         mime_parser(CM_RANGE(msg, eMesageText),
2403                     *ical_obj_beforesave_backend,
2404                     NULL, NULL,
2405                     (void *)msg,
2406                     0
2407                 );
2408
2409         return(0);
2410 }
2411
2412
2413 /*
2414  * Things we need to do after saving a calendar event.
2415  */
2416 void ical_obj_aftersave_backend(char *name, char *filename, char *partnum,
2417                 char *disp, void *content, char *cbtype, char *cbcharset, size_t length,
2418                 char *encoding, char *cbid, void *cbuserdata)
2419 {
2420         icalcomponent *cal;
2421
2422         /* We're only interested in calendar items here. */
2423         if (  (strcasecmp(cbtype, "text/calendar"))
2424            && (strcasecmp(cbtype, "application/ics")) ) {
2425                 return;
2426         }
2427
2428         /* Hunt for the UID and drop it in
2429          * the "user data" pointer for the MIME parser.  When
2430          * ical_obj_beforesave() sees it there, it'll set the Exclusive msgid
2431          * to that string.
2432          */
2433         if (  (!strcasecmp(cbtype, "text/calendar"))
2434            || (!strcasecmp(cbtype, "application/ics")) ) {
2435                 cal = icalcomponent_new_from_string(content);
2436                 if (cal != NULL) {
2437                         ical_saving_vevent(cal, cal);
2438                         icalcomponent_free(cal);
2439                 }
2440         }
2441 }
2442
2443
2444 /* 
2445  * Things we need to do after saving a calendar event.
2446  * (This will start back end tasks such as automatic generation of invitations,
2447  * if such actions are appropriate.)
2448  */
2449 int ical_obj_aftersave(struct CtdlMessage *msg, recptypes *recp)
2450 {
2451         char roomname[ROOMNAMELEN];
2452
2453         /*
2454          * If this isn't the Calendar> room, no further action is necessary.
2455          */
2456
2457         /* First determine if this is our room */
2458         CtdlMailboxName(roomname, sizeof roomname, &CC->user, USERCALENDARROOM);
2459         if (strcasecmp(roomname, CC->room.QRname)) {
2460                 return(0);      /* Not the Calendar room -- don't do anything. */
2461         }
2462
2463         /* It must be an RFC822 message! */
2464         if (msg->cm_format_type != 4) return(1);
2465
2466         /* Reject null messages */
2467         if (CM_IsEmpty(msg, eMesageText)) return(1);
2468         
2469         /* Now recurse through it looking for our icalendar data */
2470         mime_parser(CM_RANGE(msg, eMesageText),
2471                     *ical_obj_aftersave_backend,
2472                     NULL, NULL,
2473                     NULL,
2474                     0
2475                 );
2476
2477         return(0);
2478 }
2479
2480
2481 void ical_session_startup(void) {
2482         CIT_ICAL = malloc(sizeof(struct cit_ical));
2483         memset(CIT_ICAL, 0, sizeof(struct cit_ical));
2484 }
2485
2486 void ical_session_shutdown(void) {
2487         free(CIT_ICAL);
2488 }
2489
2490
2491 /*
2492  * Back end for ical_fixed_output()
2493  */
2494 void ical_fixed_output_backend(icalcomponent *cal,
2495                         int recursion_level
2496 ) {
2497         icalcomponent *c;
2498         icalproperty *p;
2499         char buf[256];
2500         const char *ch;
2501
2502         p = icalcomponent_get_first_property(cal, ICAL_SUMMARY_PROPERTY);
2503         if (p != NULL) {
2504                 cprintf("%s\n", (const char *)icalproperty_get_comment(p));
2505         }
2506
2507         p = icalcomponent_get_first_property(cal, ICAL_LOCATION_PROPERTY);
2508         if (p != NULL) {
2509                 cprintf("%s\n", (const char *)icalproperty_get_comment(p));
2510         }
2511
2512         p = icalcomponent_get_first_property(cal, ICAL_DESCRIPTION_PROPERTY);
2513         if (p != NULL) {
2514                 cprintf("%s\n", (const char *)icalproperty_get_comment(p));
2515         }
2516
2517         /* If the component has attendees, iterate through them. */
2518         for (p = icalcomponent_get_first_property(cal, ICAL_ATTENDEE_PROPERTY); (p != NULL); p = icalcomponent_get_next_property(cal, ICAL_ATTENDEE_PROPERTY)) {
2519                 ch =  icalproperty_get_attendee(p);
2520                 if ((ch != NULL) && 
2521                     !strncasecmp(ch, "MAILTO:", 7)) {
2522
2523                         /* screen name or email address */
2524                         safestrncpy(buf, ch + 7, sizeof(buf));
2525                         striplt(buf);
2526                         cprintf("%s ", buf);
2527                 }
2528                 cprintf("\n");
2529         }
2530
2531         /* If the component has subcomponents, recurse through them. */
2532         for (c = icalcomponent_get_first_component(cal, ICAL_ANY_COMPONENT);
2533             (c != 0);
2534             c = icalcomponent_get_next_component(cal, ICAL_ANY_COMPONENT)) {
2535                 /* Recursively process subcomponent */
2536                 ical_fixed_output_backend(c, recursion_level+1);
2537         }
2538 }
2539
2540
2541
2542 /*
2543  * Function to output iCalendar data as plain text.  Nobody uses MSG0
2544  * anymore, so really this is just so we expose the vCard data to the full
2545  * text indexer.
2546  */
2547 void ical_fixed_output(char *ptr, int len) {
2548         icalcomponent *cal;
2549         char *stringy_cal;
2550
2551         stringy_cal = malloc(len + 1);
2552         safestrncpy(stringy_cal, ptr, len + 1);
2553         cal = icalcomponent_new_from_string(stringy_cal);
2554         free(stringy_cal);
2555
2556         if (cal == NULL) {
2557                 return;
2558         }
2559
2560         ical_fixed_output_backend(cal, 0);
2561
2562         /* Free the memory we obtained from libical's constructor */
2563         icalcomponent_free(cal);
2564 }
2565
2566
2567
2568 void serv_calendar_destroy(void)
2569 {
2570         icaltimezone_free_builtin_timezones();
2571 }
2572
2573 /*
2574  * Register this module with the Citadel server.
2575  */
2576 CTDL_MODULE_INIT(calendar)
2577 {
2578         if (!threading)
2579         {
2580
2581                 /* Tell libical to return errors instead of aborting if it gets bad data */
2582
2583 #ifdef LIBICAL_ICAL_EXPORT      // cheap and sleazy way to detect libical >=2.0
2584                 icalerror_set_errors_are_fatal(0);
2585 #else
2586                 icalerror_errors_are_fatal = 0;
2587 #endif
2588
2589                 /* Use our own application prefix in tzid's generated from system tzdata */
2590                 icaltimezone_set_tzid_prefix("/citadel.org/");
2591
2592                 /* Initialize our hook functions */
2593                 CtdlRegisterMessageHook(ical_obj_beforesave, EVT_BEFORESAVE);
2594                 CtdlRegisterMessageHook(ical_obj_aftersave, EVT_AFTERSAVE);
2595                 CtdlRegisterSessionHook(ical_CtdlCreateRoom, EVT_LOGIN, PRIO_LOGIN + 1);
2596                 CtdlRegisterProtoHook(cmd_ical, "ICAL", "Citadel iCal commands");
2597                 CtdlRegisterSessionHook(ical_session_startup, EVT_START, PRIO_START + 1);
2598                 CtdlRegisterSessionHook(ical_session_shutdown, EVT_STOP, PRIO_STOP + 80);
2599                 CtdlRegisterFixedOutputHook("text/calendar", ical_fixed_output);
2600                 CtdlRegisterFixedOutputHook("application/ics", ical_fixed_output);
2601                 CtdlRegisterCleanupHook(serv_calendar_destroy);
2602         }
2603         
2604         /* return our module name for the log */
2605         return "calendar";
2606 }