]> code.citadel.org Git - citadel.git/blob - citadel/serv_calendar.c
Marked a couple of locations in the calendar code with comments
[citadel.git] / citadel / serv_calendar.c
1 /* 
2  * $Id$ 
3  *
4  * This module implements iCalendar object processing and the Calendar>
5  * room on a Citadel server.  It handles iCalendar objects using the
6  * iTIP protocol.  See RFCs 2445 and 2446.
7  *
8  */
9
10 #define PRODID "-//Citadel//NONSGML Citadel Calendar//EN"
11
12 #include "sysdep.h"
13 #include <stdlib.h>
14 #include <unistd.h>
15 #include <sys/types.h>
16 #include <limits.h>
17 #include <stdio.h>
18 #include <string.h>
19 #ifdef HAVE_STRINGS_H
20 #include <strings.h>
21 #endif
22 #include "citadel.h"
23 #include "server.h"
24 #include "citserver.h"
25 #include "sysdep_decls.h"
26 #include "support.h"
27 #include "config.h"
28 #include "serv_extensions.h"
29 #include "user_ops.h"
30 #include "room_ops.h"
31 #include "tools.h"
32 #include "msgbase.h"
33 #include "mime_parser.h"
34 #include "internet_addressing.h"
35 #include "serv_calendar.h"
36 #include "euidindex.h"
37
38 #ifdef CITADEL_WITH_CALENDAR_SERVICE
39
40 #include <ical.h>
41 #include "ical_dezonify.h"
42
43 struct ical_respond_data {
44         char desired_partnum[SIZ];
45         icalcomponent *cal;
46 };
47
48
49 /*
50  * Utility function to create a new VCALENDAR component with some of the
51  * required fields already set the way we like them.
52  */
53 icalcomponent *icalcomponent_new_citadel_vcalendar(void) {
54         icalcomponent *encaps;
55
56         encaps = icalcomponent_new_vcalendar();
57         if (encaps == NULL) {
58                 lprintf(CTDL_CRIT, "Error at %s:%d - could not allocate component!\n",
59                         __FILE__, __LINE__);
60                 return NULL;
61         }
62
63         /* Set the Product ID */
64         icalcomponent_add_property(encaps, icalproperty_new_prodid(PRODID));
65
66         /* Set the Version Number */
67         icalcomponent_add_property(encaps, icalproperty_new_version("2.0"));
68
69         return(encaps);
70 }
71
72
73 /*
74  * Utility function to encapsulate a subcomponent into a full VCALENDAR
75  */
76 icalcomponent *ical_encapsulate_subcomponent(icalcomponent *subcomp) {
77         icalcomponent *encaps;
78
79         /* If we're already looking at a full VCALENDAR component,
80          * don't bother ... just return itself.
81          */
82         if (icalcomponent_isa(subcomp) == ICAL_VCALENDAR_COMPONENT) {
83                 return subcomp;
84         }
85
86         /* Encapsulate the VEVENT component into a complete VCALENDAR */
87         encaps = icalcomponent_new_citadel_vcalendar();
88         if (encaps == NULL) return NULL;
89
90         /* Encapsulate the subcomponent inside */
91         icalcomponent_add_component(encaps, subcomp);
92
93         /* Convert all timestamps to UTC so we don't have to deal with
94          * stupid VTIMEZONE crap.
95          */
96         ical_dezonify(encaps);
97
98         /* Return the object we just created. */
99         return(encaps);
100 }
101
102
103
104
105 /*
106  * Write a calendar object into the specified user's calendar room.
107  */
108 void ical_write_to_cal(struct ctdluser *u, icalcomponent *cal) {
109         char temp[PATH_MAX];
110         FILE *fp;
111         char *ser;
112         icalcomponent *encaps;
113
114         if (cal == NULL) return;
115
116         /* If the supplied object is a subcomponent, encapsulate it in
117          * a full VCALENDAR component, and save that instead.
118          */
119         if (icalcomponent_isa(cal) != ICAL_VCALENDAR_COMPONENT) {
120                 encaps = ical_encapsulate_subcomponent(
121                         icalcomponent_new_clone(cal)
122                 );
123                 ical_write_to_cal(u, encaps);
124                 icalcomponent_free(encaps);
125                 return;
126         }
127
128         CtdlMakeTempFileName(temp, sizeof temp);
129         ser = icalcomponent_as_ical_string(cal);
130         if (ser == NULL) return;
131
132         /* Make a temp file out of it */
133         fp = fopen(temp, "w");
134         if (fp == NULL) return;
135         fwrite(ser, strlen(ser), 1, fp);
136         fclose(fp);
137
138         /* This handy API function does all the work for us.
139          */
140         CtdlWriteObject(USERCALENDARROOM,       /* which room */
141                         "text/calendar",        /* MIME type */
142                         temp,                   /* temp file */
143                         u,                      /* which user */
144                         0,                      /* not binary */
145                         0,              /* don't delete others of this type */
146                         0);                     /* no flags */
147
148         unlink(temp);
149 }
150
151
152 /*
153  * Add a calendar object to the user's calendar
154  * 
155  * ok because it uses ical_write_to_cal()
156  */
157 void ical_add(icalcomponent *cal, int recursion_level) {
158         icalcomponent *c;
159
160         /*
161          * The VEVENT subcomponent is the one we're interested in saving.
162          */
163         if (icalcomponent_isa(cal) == ICAL_VEVENT_COMPONENT) {
164         
165                 ical_write_to_cal(&CC->user, cal);
166
167         }
168
169         /* If the component has subcomponents, recurse through them. */
170         for (c = icalcomponent_get_first_component(cal, ICAL_ANY_COMPONENT);
171             (c != 0);
172             c = icalcomponent_get_next_component(cal, ICAL_ANY_COMPONENT)) {
173                 /* Recursively process subcomponent */
174                 ical_add(c, recursion_level+1);
175         }
176
177 }
178
179
180
181 /*
182  * Send a reply to a meeting invitation.
183  *
184  * 'request' is the invitation to reply to.
185  * 'action' is the string "accept" or "decline" or "tentative".
186  *
187  */
188 void ical_send_a_reply(icalcomponent *request, char *action) {
189         icalcomponent *the_reply = NULL;
190         icalcomponent *vevent = NULL;
191         icalproperty *attendee = NULL;
192         char attendee_string[SIZ];
193         icalproperty *organizer = NULL;
194         char organizer_string[SIZ];
195         icalproperty *summary = NULL;
196         char summary_string[SIZ];
197         icalproperty *me_attend = NULL;
198         struct recptypes *recp = NULL;
199         icalparameter *partstat = NULL;
200         char *serialized_reply = NULL;
201         char *reply_message_text = NULL;
202         struct CtdlMessage *msg = NULL;
203         struct recptypes *valid = NULL;
204
205         strcpy(organizer_string, "");
206         strcpy(summary_string, "Calendar item");
207
208         if (request == NULL) {
209                 lprintf(CTDL_ERR, "ERROR: trying to reply to NULL event?\n");
210                 return;
211         }
212
213         the_reply = icalcomponent_new_clone(request);
214         if (the_reply == NULL) {
215                 lprintf(CTDL_ERR, "ERROR: cannot clone request\n");
216                 return;
217         }
218
219         /* Change the method from REQUEST to REPLY */
220         icalcomponent_set_method(the_reply, ICAL_METHOD_REPLY);
221
222         vevent = icalcomponent_get_first_component(the_reply, ICAL_VEVENT_COMPONENT);
223         if (vevent != NULL) {
224                 /* Hunt for attendees, removing ones that aren't us.
225                  * (Actually, remove them all, cloning our own one so we can
226                  * re-insert it later)
227                  */
228                 while (attendee = icalcomponent_get_first_property(vevent,
229                     ICAL_ATTENDEE_PROPERTY), (attendee != NULL)
230                 ) {
231                         if (icalproperty_get_attendee(attendee)) {
232                                 strcpy(attendee_string,
233                                         icalproperty_get_attendee(attendee) );
234                                 if (!strncasecmp(attendee_string, "MAILTO:", 7)) {
235                                         strcpy(attendee_string, &attendee_string[7]);
236                                         striplt(attendee_string);
237                                         recp = validate_recipients(attendee_string);
238                                         if (recp != NULL) {
239                                                 if (!strcasecmp(recp->recp_local, CC->user.fullname)) {
240                                                         if (me_attend) icalproperty_free(me_attend);
241                                                         me_attend = icalproperty_new_clone(attendee);
242                                                 }
243                                                 free(recp);
244                                         }
245                                 }
246                         }
247                         /* Remove it... */
248                         icalcomponent_remove_property(vevent, attendee);
249                         icalproperty_free(attendee);
250                 }
251
252                 /* We found our own address in the attendee list. */
253                 if (me_attend) {
254                         /* Change the partstat from NEEDS-ACTION to ACCEPT or DECLINE */
255                         icalproperty_remove_parameter(me_attend, ICAL_PARTSTAT_PARAMETER);
256
257                         if (!strcasecmp(action, "accept")) {
258                                 partstat = icalparameter_new_partstat(ICAL_PARTSTAT_ACCEPTED);
259                         }
260                         else if (!strcasecmp(action, "decline")) {
261                                 partstat = icalparameter_new_partstat(ICAL_PARTSTAT_DECLINED);
262                         }
263                         else if (!strcasecmp(action, "tentative")) {
264                                 partstat = icalparameter_new_partstat(ICAL_PARTSTAT_TENTATIVE);
265                         }
266
267                         if (partstat) icalproperty_add_parameter(me_attend, partstat);
268
269                         /* Now insert it back into the vevent. */
270                         icalcomponent_add_property(vevent, me_attend);
271                 }
272
273                 /* Figure out who to send this thing to */
274                 organizer = icalcomponent_get_first_property(vevent, ICAL_ORGANIZER_PROPERTY);
275                 if (organizer != NULL) {
276                         if (icalproperty_get_organizer(organizer)) {
277                                 strcpy(organizer_string,
278                                         icalproperty_get_organizer(organizer) );
279                         }
280                 }
281                 if (!strncasecmp(organizer_string, "MAILTO:", 7)) {
282                         strcpy(organizer_string, &organizer_string[7]);
283                         striplt(organizer_string);
284                 } else {
285                         strcpy(organizer_string, "");
286                 }
287
288                 /* Extract the summary string -- we'll use it as the
289                  * message subject for the reply
290                  */
291                 summary = icalcomponent_get_first_property(vevent, ICAL_SUMMARY_PROPERTY);
292                 if (summary != NULL) {
293                         if (icalproperty_get_summary(summary)) {
294                                 strcpy(summary_string,
295                                         icalproperty_get_summary(summary) );
296                         }
297                 }
298         }
299
300         /* Now generate the reply message and send it out. */
301         serialized_reply = strdup(icalcomponent_as_ical_string(the_reply));
302         icalcomponent_free(the_reply);  /* don't need this anymore */
303         if (serialized_reply == NULL) return;
304
305         reply_message_text = malloc(strlen(serialized_reply) + SIZ);
306         if (reply_message_text != NULL) {
307                 sprintf(reply_message_text,
308                         "Content-type: text/calendar charset=\"utf-8\"\r\n\r\n%s\r\n",
309                         serialized_reply
310                 );
311
312                 msg = CtdlMakeMessage(&CC->user,
313                         organizer_string,       /* to */
314                         "",                     /* cc */
315                         CC->room.QRname, 0, FMT_RFC822,
316                         "",
317                         summary_string,         /* Use summary for subject */
318                         NULL,
319                         reply_message_text);
320         
321                 if (msg != NULL) {
322                         valid = validate_recipients(organizer_string);
323                         CtdlSubmitMsg(msg, valid, "");
324                         CtdlFreeMessage(msg);
325                 }
326         }
327         free(serialized_reply);
328 }
329
330
331
332 /*
333  * Callback function for mime parser that hunts for calendar content types
334  * and turns them into calendar objects
335  */
336 void ical_locate_part(char *name, char *filename, char *partnum, char *disp,
337                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
338                 void *cbuserdata) {
339
340         struct ical_respond_data *ird = NULL;
341
342         ird = (struct ical_respond_data *) cbuserdata;
343
344         /* desired_partnum can be set to "_HUNT_" to have it just look for
345          * the first part with a content type of text/calendar.  Otherwise
346          * we have to only process the right one.
347          */
348         if (strcasecmp(ird->desired_partnum, "_HUNT_")) {
349                 if (strcasecmp(partnum, ird->desired_partnum)) {
350                         return;
351                 }
352         }
353
354         if (strcasecmp(cbtype, "text/calendar")) {
355                 return;
356         }
357
358         if (ird->cal != NULL) {
359                 icalcomponent_free(ird->cal);
360                 ird->cal = NULL;
361         }
362
363         ird->cal = icalcomponent_new_from_string(content);
364         if (ird->cal != NULL) {
365                 ical_dezonify(ird->cal);
366         }
367 }
368
369
370 /*
371  * Respond to a meeting request.
372  */
373 void ical_respond(long msgnum, char *partnum, char *action) {
374         struct CtdlMessage *msg = NULL;
375         struct ical_respond_data ird;
376
377         if (
378            (strcasecmp(action, "accept"))
379            && (strcasecmp(action, "decline"))
380         ) {
381                 cprintf("%d Action must be 'accept' or 'decline'\n",
382                         ERROR + ILLEGAL_VALUE
383                 );
384                 return;
385         }
386
387         msg = CtdlFetchMessage(msgnum, 1);
388         if (msg == NULL) {
389                 cprintf("%d Message %ld not found.\n",
390                         ERROR + ILLEGAL_VALUE,
391                         (long)msgnum
392                 );
393                 return;
394         }
395
396         memset(&ird, 0, sizeof ird);
397         strcpy(ird.desired_partnum, partnum);
398         mime_parser(msg->cm_fields['M'],
399                 NULL,
400                 *ical_locate_part,              /* callback function */
401                 NULL, NULL,
402                 (void *) &ird,                  /* user data */
403                 0
404         );
405
406         /* We're done with the incoming message, because we now have a
407          * calendar object in memory.
408          */
409         CtdlFreeMessage(msg);
410
411         /*
412          * Here is the real meat of this function.  Handle the event.
413          */
414         if (ird.cal != NULL) {
415                 /* Save this in the user's calendar if necessary */
416                 if (!strcasecmp(action, "accept")) {
417                         ical_add(ird.cal, 0);
418                 }
419
420                 /* Send a reply if necessary */
421                 if (icalcomponent_get_method(ird.cal) == ICAL_METHOD_REQUEST) {
422                         ical_send_a_reply(ird.cal, action);
423                 }
424
425                 /* Now that we've processed this message, we don't need it
426                  * anymore.  So delete it.
427                  */
428                 CtdlDeleteMessages(CC->room.QRname, &msgnum, 1, "");
429
430                 /* Free the memory we allocated and return a response. */
431                 icalcomponent_free(ird.cal);
432                 ird.cal = NULL;
433                 cprintf("%d ok\n", CIT_OK);
434                 return;
435         }
436         else {
437                 cprintf("%d No calendar object found\n", ERROR + ROOM_NOT_FOUND);
438                 return;
439         }
440
441         /* should never get here */
442 }
443
444
445 /*
446  * Figure out the UID of the calendar event being referred to in a
447  * REPLY object.  This function is recursive.
448  */
449 void ical_learn_uid_of_reply(char *uidbuf, icalcomponent *cal) {
450         icalcomponent *subcomponent;
451         icalproperty *p;
452
453         /* If this object is a REPLY, then extract the UID. */
454         if (icalcomponent_isa(cal) == ICAL_VEVENT_COMPONENT) {
455                 p = icalcomponent_get_first_property(cal, ICAL_UID_PROPERTY);
456                 if (p != NULL) {
457                         strcpy(uidbuf, icalproperty_get_comment(p));
458                 }
459         }
460
461         /* Otherwise, recurse through any VEVENT subcomponents.  We do NOT want the
462          * UID of the reply; we want the UID of the invitation being replied to.
463          */
464         for (subcomponent = icalcomponent_get_first_component(cal, ICAL_VEVENT_COMPONENT);
465             subcomponent != NULL;
466             subcomponent = icalcomponent_get_next_component(cal, ICAL_VEVENT_COMPONENT) ) {
467                 ical_learn_uid_of_reply(uidbuf, subcomponent);
468         }
469 }
470
471
472 /*
473  * ical_update_my_calendar_with_reply() refers to this callback function; when we
474  * locate the message containing the calendar event we're replying to, this function
475  * gets called.  It basically just sticks the message number in a supplied buffer.
476  */
477 void ical_hunt_for_event_to_update(long msgnum, void *data) {
478         long *msgnumptr;
479
480         msgnumptr = (long *) data;
481         *msgnumptr = msgnum;
482 }
483
484
485 struct original_event_container {
486         icalcomponent *c;
487 };
488
489 /*
490  * Callback function for mime parser that hunts for calendar content types
491  * and turns them into calendar objects (called by ical_update_my_calendar_with_reply()
492  * to fetch the object being updated)
493  */
494 void ical_locate_original_event(char *name, char *filename, char *partnum, char *disp,
495                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
496                 void *cbuserdata) {
497
498         struct original_event_container *oec = NULL;
499
500         if (strcasecmp(cbtype, "text/calendar")) {
501                 return;
502         }
503         oec = (struct original_event_container *) cbuserdata;
504         if (oec->c != NULL) {
505                 icalcomponent_free(oec->c);
506         }
507         oec->c = icalcomponent_new_from_string(content);
508 }
509
510
511 /*
512  * Merge updated attendee information from a REPLY into an existing event.
513  */
514 void ical_merge_attendee_reply(icalcomponent *event, icalcomponent *reply) {
515         icalcomponent *c;
516         icalproperty *e_attendee, *r_attendee;
517
518         /* First things first.  If we're not looking at a VEVENT component,
519          * recurse through subcomponents until we find one.
520          */
521         if (icalcomponent_isa(event) != ICAL_VEVENT_COMPONENT) {
522                 for (c = icalcomponent_get_first_component(event, ICAL_VEVENT_COMPONENT);
523                     c != NULL;
524                     c = icalcomponent_get_next_component(event, ICAL_VEVENT_COMPONENT) ) {
525                         ical_merge_attendee_reply(c, reply);
526                 }
527                 return;
528         }
529
530         /* Now do the same thing with the reply.
531          */
532         if (icalcomponent_isa(reply) != ICAL_VEVENT_COMPONENT) {
533                 for (c = icalcomponent_get_first_component(reply, ICAL_VEVENT_COMPONENT);
534                     c != NULL;
535                     c = icalcomponent_get_next_component(reply, ICAL_VEVENT_COMPONENT) ) {
536                         ical_merge_attendee_reply(event, c);
537                 }
538                 return;
539         }
540
541         /* Clone the reply, because we're going to rip its guts out. */
542         reply = icalcomponent_new_clone(reply);
543
544         /* At this point we're looking at the correct subcomponents.
545          * Iterate through the attendees looking for a match.
546          */
547 STARTOVER:
548         for (e_attendee = icalcomponent_get_first_property(event, ICAL_ATTENDEE_PROPERTY);
549             e_attendee != NULL;
550             e_attendee = icalcomponent_get_next_property(event, ICAL_ATTENDEE_PROPERTY)) {
551
552                 for (r_attendee = icalcomponent_get_first_property(reply, ICAL_ATTENDEE_PROPERTY);
553                     r_attendee != NULL;
554                     r_attendee = icalcomponent_get_next_property(reply, ICAL_ATTENDEE_PROPERTY)) {
555
556                         /* Check to see if these two attendees match...
557                          */
558                         if (!strcasecmp(
559                            icalproperty_get_attendee(e_attendee),
560                            icalproperty_get_attendee(r_attendee)
561                         )) {
562                                 /* ...and if they do, remove the attendee from the event
563                                  * and replace it with the attendee from the reply.  (The
564                                  * reply's copy will have the same address, but an updated
565                                  * status.)
566                                  */
567                                 icalcomponent_remove_property(event, e_attendee);
568                                 icalproperty_free(e_attendee);
569                                 icalcomponent_remove_property(reply, r_attendee);
570                                 icalcomponent_add_property(event, r_attendee);
571
572                                 /* Since we diddled both sets of attendees, we have to start
573                                  * the iteration over again.  This will not create an infinite
574                                  * loop because we removed the attendee from the reply.  (That's
575                                  * why we cloned the reply, and that's what we mean by "ripping
576                                  * its guts out.")
577                                  */
578                                 goto STARTOVER;
579                         }
580         
581                 }
582         }
583
584         /* Free the *clone* of the reply. */
585         icalcomponent_free(reply);
586 }
587
588
589
590
591 /*
592  * Handle an incoming RSVP (object with method==ICAL_METHOD_REPLY) for a
593  * calendar event.  The object has already been deserialized for us; all
594  * we have to do here is hunt for the event in our calendar, merge in the
595  * updated attendee status, and save it again.
596  *
597  * This function returns 0 on success, 1 if the event was not found in the
598  * user's calendar, or 2 if an internal error occurred.
599  */
600 int ical_update_my_calendar_with_reply(icalcomponent *cal) {
601         char uid[SIZ];
602         char hold_rm[ROOMNAMELEN];
603         long msgnum_being_replaced = 0;
604         struct CtdlMessage *msg = NULL;
605         struct original_event_container oec;
606         icalcomponent *original_event;
607         char *serialized_event = NULL;
608         char roomname[ROOMNAMELEN];
609         char *message_text = NULL;
610
611         /* Figure out just what event it is we're dealing with */
612         strcpy(uid, "--==<< InVaLiD uId >>==--");
613         ical_learn_uid_of_reply(uid, cal);
614         lprintf(CTDL_DEBUG, "UID of event being replied to is <%s>\n", uid);
615
616         strcpy(hold_rm, CC->room.QRname);       /* save current room */
617
618         if (getroom(&CC->room, USERCALENDARROOM) != 0) {
619                 getroom(&CC->room, hold_rm);
620                 lprintf(CTDL_CRIT, "cannot get user calendar room\n");
621                 return(2);
622         }
623
624         /*
625          * Look in the EUID index for a message with
626          * the Citadel EUID set to the value we're looking for.  Since
627          * Citadel always sets the message EUID to the vCalendar UID of
628          * the event, this will work.
629          */
630         msgnum_being_replaced = locate_message_by_euid(uid, &CC->room);
631
632         getroom(&CC->room, hold_rm);    /* return to saved room */
633
634         lprintf(CTDL_DEBUG, "msgnum_being_replaced == %ld\n", msgnum_being_replaced);
635         if (msgnum_being_replaced == 0) {
636                 return(1);                      /* no calendar event found */
637         }
638
639         /* Now we know the ID of the message containing the event being updated.
640          * We don't actually have to delete it; that'll get taken care of by the
641          * server when we save another event with the same UID.  This just gives
642          * us the ability to load the event into memory so we can diddle the
643          * attendees.
644          */
645         msg = CtdlFetchMessage(msgnum_being_replaced, 1);
646         if (msg == NULL) {
647                 return(2);                      /* internal error */
648         }
649         oec.c = NULL;
650         mime_parser(msg->cm_fields['M'],
651                 NULL,
652                 *ical_locate_original_event,    /* callback function */
653                 NULL, NULL,
654                 &oec,                           /* user data */
655                 0
656         );
657         CtdlFreeMessage(msg);
658
659         original_event = oec.c;
660         if (original_event == NULL) {
661                 lprintf(CTDL_ERR, "ERROR: Original_component is NULL.\n");
662                 return(2);
663         }
664
665         /* Merge the attendee's updated status into the event */
666         ical_merge_attendee_reply(original_event, cal);
667
668         /* Serialize it */
669         serialized_event = strdup(icalcomponent_as_ical_string(original_event));
670         icalcomponent_free(original_event);     /* Don't need this anymore. */
671         if (serialized_event == NULL) return(2);
672
673         MailboxName(roomname, sizeof roomname, &CC->user, USERCALENDARROOM);
674
675         message_text = malloc(strlen(serialized_event) + SIZ);
676         if (message_text != NULL) {
677                 sprintf(message_text,
678                         "Content-type: text/calendar charset=\"utf-8\"\r\n\r\n%s\r\n",
679                         serialized_event
680                 );
681
682                 msg = CtdlMakeMessage(&CC->user,
683                         "",                     /* No recipient */
684                         "",                     /* No recipient */
685                         roomname,
686                         0, FMT_RFC822,
687                         "",
688                         "",             /* no subject */
689                         NULL,
690                         message_text);
691         
692                 if (msg != NULL) {
693                         CIT_ICAL->avoid_sending_invitations = 1;
694                         CtdlSubmitMsg(msg, NULL, roomname);
695                         CtdlFreeMessage(msg);
696                         CIT_ICAL->avoid_sending_invitations = 0;
697                 }
698         }
699         free(serialized_event);
700         return(0);
701 }
702
703
704 /*
705  * Handle an incoming RSVP for an event.  (This is the server subcommand part; it
706  * simply extracts the calendar object from the message, deserializes it, and
707  * passes it up to ical_update_my_calendar_with_reply() for processing.
708  */
709 void ical_handle_rsvp(long msgnum, char *partnum, char *action) {
710         struct CtdlMessage *msg = NULL;
711         struct ical_respond_data ird;
712         int ret;
713
714         if (
715            (strcasecmp(action, "update"))
716            && (strcasecmp(action, "ignore"))
717         ) {
718                 cprintf("%d Action must be 'update' or 'ignore'\n",
719                         ERROR + ILLEGAL_VALUE
720                 );
721                 return;
722         }
723
724         msg = CtdlFetchMessage(msgnum, 1);
725         if (msg == NULL) {
726                 cprintf("%d Message %ld not found.\n",
727                         ERROR + ILLEGAL_VALUE,
728                         (long)msgnum
729                 );
730                 return;
731         }
732
733         memset(&ird, 0, sizeof ird);
734         strcpy(ird.desired_partnum, partnum);
735         mime_parser(msg->cm_fields['M'],
736                 NULL,
737                 *ical_locate_part,              /* callback function */
738                 NULL, NULL,
739                 (void *) &ird,                  /* user data */
740                 0
741         );
742
743         /* We're done with the incoming message, because we now have a
744          * calendar object in memory.
745          */
746         CtdlFreeMessage(msg);
747
748         /*
749          * Here is the real meat of this function.  Handle the event.
750          */
751         if (ird.cal != NULL) {
752                 /* Update the user's calendar if necessary */
753                 if (!strcasecmp(action, "update")) {
754                         ret = ical_update_my_calendar_with_reply(ird.cal);
755                         if (ret == 0) {
756                                 cprintf("%d Your calendar has been updated with this reply.\n",
757                                         CIT_OK);
758                         }
759                         else if (ret == 1) {
760                                 cprintf("%d This event does not exist in your calendar.\n",
761                                         ERROR + FILE_NOT_FOUND);
762                         }
763                         else {
764                                 cprintf("%d An internal error occurred.\n",
765                                         ERROR + INTERNAL_ERROR);
766                         }
767                 }
768                 else {
769                         cprintf("%d This reply has been ignored.\n", CIT_OK);
770                 }
771
772                 /* Now that we've processed this message, we don't need it
773                  * anymore.  So delete it.  (Maybe make this optional?)
774                  */
775                 CtdlDeleteMessages(CC->room.QRname, &msgnum, 1, "");
776
777                 /* Free the memory we allocated and return a response. */
778                 icalcomponent_free(ird.cal);
779                 ird.cal = NULL;
780                 return;
781         }
782         else {
783                 cprintf("%d No calendar object found\n", ERROR + ROOM_NOT_FOUND);
784                 return;
785         }
786
787         /* should never get here */
788 }
789
790
791 /*
792  * Search for a property in both the top level and in a VEVENT subcomponent
793  */
794 icalproperty *ical_ctdl_get_subprop(
795                 icalcomponent *cal,
796                 icalproperty_kind which_prop
797 ) {
798         icalproperty *p;
799         icalcomponent *c;
800
801         p = icalcomponent_get_first_property(cal, which_prop);
802         if (p == NULL) {
803                 c = icalcomponent_get_first_component(cal,
804                                                         ICAL_VEVENT_COMPONENT);
805                 if (c != NULL) {
806                         p = icalcomponent_get_first_property(c, which_prop);
807                 }
808         }
809         return p;
810 }
811
812
813 /*
814  * Check to see if two events overlap.  Returns nonzero if they do.
815  * (This function is used in both Citadel and WebCit.  If you change it in
816  * one place, change it in the other.  Better yet, put it in a library.)
817  */
818 int ical_ctdl_is_overlap(
819                         struct icaltimetype t1start,
820                         struct icaltimetype t1end,
821                         struct icaltimetype t2start,
822                         struct icaltimetype t2end
823 ) {
824
825         if (icaltime_is_null_time(t1start)) return(0);
826         if (icaltime_is_null_time(t2start)) return(0);
827
828         /* First, check for all-day events */
829         if (t1start.is_date) {
830                 if (!icaltime_compare_date_only(t1start, t2start)) {
831                         return(1);
832                 }
833                 if (!icaltime_is_null_time(t2end)) {
834                         if (!icaltime_compare_date_only(t1start, t2end)) {
835                                 return(1);
836                         }
837                 }
838         }
839
840         if (t2start.is_date) {
841                 if (!icaltime_compare_date_only(t2start, t1start)) {
842                         return(1);
843                 }
844                 if (!icaltime_is_null_time(t1end)) {
845                         if (!icaltime_compare_date_only(t2start, t1end)) {
846                                 return(1);
847                         }
848                 }
849         }
850
851         /* Now check for overlaps using date *and* time. */
852
853         /* First, bail out if either event 1 or event 2 is missing end time. */
854         if (icaltime_is_null_time(t1end)) return(0);
855         if (icaltime_is_null_time(t2end)) return(0);
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
860         /* If event 2 ends before event 1 starts, we're also ok. */
861         if (icaltime_compare(t2end, t1start) <= 0) return(0);
862
863         /* Otherwise, they overlap. */
864         return(1);
865 }
866
867
868
869 /*
870  * Backend for ical_hunt_for_conflicts()
871  */
872 void ical_hunt_for_conflicts_backend(long msgnum, void *data) {
873         icalcomponent *cal;
874         struct CtdlMessage *msg = NULL;
875         struct ical_respond_data ird;
876         struct icaltimetype t1start, t1end, t2start, t2end;
877         icalproperty *p;
878         char conflict_event_uid[SIZ];
879         char conflict_event_summary[SIZ];
880         char compare_uid[SIZ];
881
882         cal = (icalcomponent *)data;
883         strcpy(compare_uid, "");
884         strcpy(conflict_event_uid, "");
885         strcpy(conflict_event_summary, "");
886
887         msg = CtdlFetchMessage(msgnum, 1);
888         if (msg == NULL) return;
889         memset(&ird, 0, sizeof ird);
890         strcpy(ird.desired_partnum, "_HUNT_");
891         mime_parser(msg->cm_fields['M'],
892                 NULL,
893                 *ical_locate_part,              /* callback function */
894                 NULL, NULL,
895                 (void *) &ird,                  /* user data */
896                 0
897         );
898         CtdlFreeMessage(msg);
899
900         if (ird.cal == NULL) return;
901
902         t1start = icaltime_null_time();
903         t1end = icaltime_null_time();
904         t2start = icaltime_null_time();
905         t1end = icaltime_null_time();
906
907         /* Now compare cal to ird.cal */
908         p = ical_ctdl_get_subprop(ird.cal, ICAL_DTSTART_PROPERTY);
909         if (p == NULL) return;
910         if (p != NULL) t2start = icalproperty_get_dtstart(p);
911         
912         p = ical_ctdl_get_subprop(ird.cal, ICAL_DTEND_PROPERTY);
913         if (p != NULL) t2end = icalproperty_get_dtend(p);
914
915         p = ical_ctdl_get_subprop(cal, ICAL_DTSTART_PROPERTY);
916         if (p == NULL) return;
917         if (p != NULL) t1start = icalproperty_get_dtstart(p);
918         
919         p = ical_ctdl_get_subprop(cal, ICAL_DTEND_PROPERTY);
920         if (p != NULL) t1end = icalproperty_get_dtend(p);
921         
922         p = ical_ctdl_get_subprop(cal, ICAL_UID_PROPERTY);
923         if (p != NULL) {
924                 strcpy(compare_uid, icalproperty_get_comment(p));
925         }
926
927         p = ical_ctdl_get_subprop(ird.cal, ICAL_UID_PROPERTY);
928         if (p != NULL) {
929                 strcpy(conflict_event_uid, icalproperty_get_comment(p));
930         }
931
932         p = ical_ctdl_get_subprop(ird.cal, ICAL_SUMMARY_PROPERTY);
933         if (p != NULL) {
934                 strcpy(conflict_event_summary, icalproperty_get_comment(p));
935         }
936
937         icalcomponent_free(ird.cal);
938
939         if (ical_ctdl_is_overlap(t1start, t1end, t2start, t2end)) {
940                 cprintf("%ld||%s|%s|%d|\n",
941                         msgnum,
942                         conflict_event_uid,
943                         conflict_event_summary,
944                         (       ((strlen(compare_uid)>0)
945                                 &&(!strcasecmp(compare_uid,
946                                 conflict_event_uid))) ? 1 : 0
947                         )
948                 );
949         }
950 }
951
952
953
954 /* 
955  * Phase 2 of "hunt for conflicts" operation.
956  * At this point we have a calendar object which represents the VEVENT that
957  * we're considering adding to the calendar.  Now hunt through the user's
958  * calendar room, and output zero or more existing VEVENTs which conflict
959  * with this one.
960  */
961 void ical_hunt_for_conflicts(icalcomponent *cal) {
962         char hold_rm[ROOMNAMELEN];
963
964         strcpy(hold_rm, CC->room.QRname);       /* save current room */
965
966         if (getroom(&CC->room, USERCALENDARROOM) != 0) {
967                 getroom(&CC->room, hold_rm);
968                 cprintf("%d You do not have a calendar.\n", ERROR + ROOM_NOT_FOUND);
969                 return;
970         }
971
972         cprintf("%d Conflicting events:\n", LISTING_FOLLOWS);
973
974         /* FIXME CONNECTOR DEV -- we need to handle calendar items embedded inside multipart */
975         CtdlForEachMessage(MSGS_ALL, 0, NULL, "^[Tt][Ee][Xx][Tt]/[Cc][Aa][Ll][Ee][Nn][Dd][Aa][Rr]$",
976                 NULL,
977                 ical_hunt_for_conflicts_backend,
978                 (void *) cal
979         );
980
981         cprintf("000\n");
982         getroom(&CC->room, hold_rm);    /* return to saved room */
983
984 }
985
986
987
988 /*
989  * Hunt for conflicts (Phase 1 -- retrieve the object and call Phase 2)
990  */
991 void ical_conflicts(long msgnum, char *partnum) {
992         struct CtdlMessage *msg = NULL;
993         struct ical_respond_data ird;
994
995         msg = CtdlFetchMessage(msgnum, 1);
996         if (msg == NULL) {
997                 cprintf("%d Message %ld not found.\n",
998                         ERROR + ILLEGAL_VALUE,
999                         (long)msgnum
1000                 );
1001                 return;
1002         }
1003
1004         memset(&ird, 0, sizeof ird);
1005         strcpy(ird.desired_partnum, partnum);
1006         mime_parser(msg->cm_fields['M'],
1007                 NULL,
1008                 *ical_locate_part,              /* callback function */
1009                 NULL, NULL,
1010                 (void *) &ird,                  /* user data */
1011                 0
1012         );
1013
1014         CtdlFreeMessage(msg);
1015
1016         if (ird.cal != NULL) {
1017                 ical_hunt_for_conflicts(ird.cal);
1018                 icalcomponent_free(ird.cal);
1019                 return;
1020         }
1021         else {
1022                 cprintf("%d No calendar object found\n", ERROR + ROOM_NOT_FOUND);
1023                 return;
1024         }
1025
1026         /* should never get here */
1027 }
1028
1029
1030
1031 /*
1032  * Look for busy time in a VEVENT and add it to the supplied VFREEBUSY.
1033  */
1034 void ical_add_to_freebusy(icalcomponent *fb, icalcomponent *cal) {
1035         icalproperty *p;
1036         icalvalue *v;
1037         struct icalperiodtype my_period;
1038
1039         if (cal == NULL) return;
1040         my_period = icalperiodtype_null_period();
1041
1042         if (icalcomponent_isa(cal) != ICAL_VEVENT_COMPONENT) {
1043                 ical_add_to_freebusy(fb,
1044                         icalcomponent_get_first_component(
1045                                 cal, ICAL_VEVENT_COMPONENT
1046                         )
1047                 );
1048                 return;
1049         }
1050
1051         ical_dezonify(cal);
1052
1053         /* If this event is not opaque, the user isn't publishing it as
1054          * busy time, so don't bother doing anything else.
1055          */
1056         p = icalcomponent_get_first_property(cal, ICAL_TRANSP_PROPERTY);
1057         if (p != NULL) {
1058                 v = icalproperty_get_value(p);
1059                 if (v != NULL) {
1060                         if (icalvalue_get_transp(v) != ICAL_TRANSP_OPAQUE) {
1061                                 return;
1062                         }
1063                 }
1064         }
1065
1066         /* Convert the DTSTART and DTEND properties to an icalperiod. */
1067         p = icalcomponent_get_first_property(cal, ICAL_DTSTART_PROPERTY);
1068         if (p != NULL) {
1069                 my_period.start = icalproperty_get_dtstart(p);
1070         }
1071
1072         p = icalcomponent_get_first_property(cal, ICAL_DTEND_PROPERTY);
1073         if (p != NULL) {
1074                 my_period.end = icalproperty_get_dtstart(p);
1075         }
1076
1077         /* Now add it. */
1078         icalcomponent_add_property(fb,
1079                 icalproperty_new_freebusy(my_period)
1080         );
1081
1082         /* Make sure the DTSTART property of the freebusy *list* is set to
1083          * the DTSTART property of the *earliest event*.
1084          */
1085         p = icalcomponent_get_first_property(fb, ICAL_DTSTART_PROPERTY);
1086         if (p == NULL) {
1087                 icalcomponent_set_dtstart(fb,
1088                         icalcomponent_get_dtstart(cal) );
1089         }
1090         else {
1091                 if (icaltime_compare(
1092                         icalcomponent_get_dtstart(cal),
1093                         icalcomponent_get_dtstart(fb)
1094                    ) < 0) {
1095                         icalcomponent_set_dtstart(fb,
1096                                 icalcomponent_get_dtstart(cal) );
1097                 }
1098         }
1099
1100         /* Make sure the DTEND property of the freebusy *list* is set to
1101          * the DTEND property of the *latest event*.
1102          */
1103         p = icalcomponent_get_first_property(fb, ICAL_DTEND_PROPERTY);
1104         if (p == NULL) {
1105                 icalcomponent_set_dtend(fb,
1106                         icalcomponent_get_dtend(cal) );
1107         }
1108         else {
1109                 if (icaltime_compare(
1110                         icalcomponent_get_dtend(cal),
1111                         icalcomponent_get_dtend(fb)
1112                    ) > 0) {
1113                         icalcomponent_set_dtend(fb,
1114                                 icalcomponent_get_dtend(cal) );
1115                 }
1116         }
1117
1118 }
1119
1120
1121
1122 /*
1123  * Backend for ical_freebusy()
1124  *
1125  * This function simply loads the messages in the user's calendar room,
1126  * which contain VEVENTs, then strips them of all non-freebusy data, and
1127  * adds them to the supplied VCALENDAR.
1128  *
1129  */
1130 void ical_freebusy_backend(long msgnum, void *data) {
1131         icalcomponent *cal;
1132         struct CtdlMessage *msg = NULL;
1133         struct ical_respond_data ird;
1134
1135         cal = (icalcomponent *)data;
1136
1137         msg = CtdlFetchMessage(msgnum, 1);
1138         if (msg == NULL) return;
1139         memset(&ird, 0, sizeof ird);
1140         strcpy(ird.desired_partnum, "_HUNT_");
1141         mime_parser(msg->cm_fields['M'],
1142                 NULL,
1143                 *ical_locate_part,              /* callback function */
1144                 NULL, NULL,
1145                 (void *) &ird,                  /* user data */
1146                 0
1147         );
1148         CtdlFreeMessage(msg);
1149
1150         if (ird.cal == NULL) return;
1151
1152         ical_add_to_freebusy(cal, ird.cal);
1153
1154         /* Now free the memory. */
1155         icalcomponent_free(ird.cal);
1156 }
1157
1158
1159
1160 /*
1161  * Grab another user's free/busy times
1162  */
1163 void ical_freebusy(char *who) {
1164         struct ctdluser usbuf;
1165         char calendar_room_name[ROOMNAMELEN];
1166         char hold_rm[ROOMNAMELEN];
1167         char *serialized_request = NULL;
1168         icalcomponent *encaps = NULL;
1169         icalcomponent *fb = NULL;
1170         int found_user = (-1);
1171         struct recptypes *recp = NULL;
1172         char buf[256];
1173         char host[256];
1174         char type[256];
1175         int i = 0;
1176         int config_lines = 0;
1177
1178         /* First try an exact match. */
1179         found_user = getuser(&usbuf, who);
1180
1181         /* If not found, try it as an unqualified email address. */
1182         if (found_user != 0) {
1183                 strcpy(buf, who);
1184                 recp = validate_recipients(buf);
1185                 lprintf(CTDL_DEBUG, "Trying <%s>\n", buf);
1186                 if (recp != NULL) {
1187                         if (recp->num_local == 1) {
1188                                 found_user = getuser(&usbuf, recp->recp_local);
1189                         }
1190                         free(recp);
1191                 }
1192         }
1193
1194         /* If still not found, try it as an address qualified with the
1195          * primary FQDN of this Citadel node.
1196          */
1197         if (found_user != 0) {
1198                 snprintf(buf, sizeof buf, "%s@%s", who, config.c_fqdn);
1199                 lprintf(CTDL_DEBUG, "Trying <%s>\n", buf);
1200                 recp = validate_recipients(buf);
1201                 if (recp != NULL) {
1202                         if (recp->num_local == 1) {
1203                                 found_user = getuser(&usbuf, recp->recp_local);
1204                         }
1205                         free(recp);
1206                 }
1207         }
1208
1209         /* Still not found?  Try qualifying it with every domain we
1210          * might have addresses in.
1211          */
1212         if (found_user != 0) {
1213                 config_lines = num_tokens(inetcfg, '\n');
1214                 for (i=0; ((i < config_lines) && (found_user != 0)); ++i) {
1215                         extract_token(buf, inetcfg, i, '\n', sizeof buf);
1216                         extract_token(host, buf, 0, '|', sizeof host);
1217                         extract_token(type, buf, 1, '|', sizeof type);
1218
1219                         if ( (!strcasecmp(type, "localhost"))
1220                            || (!strcasecmp(type, "directory")) ) {
1221                                 snprintf(buf, sizeof buf, "%s@%s", who, host);
1222                                 lprintf(CTDL_DEBUG, "Trying <%s>\n", buf);
1223                                 recp = validate_recipients(buf);
1224                                 if (recp != NULL) {
1225                                         if (recp->num_local == 1) {
1226                                                 found_user = getuser(&usbuf, recp->recp_local);
1227                                         }
1228                                         free(recp);
1229                                 }
1230                         }
1231                 }
1232         }
1233
1234         if (found_user != 0) {
1235                 cprintf("%d No such user.\n", ERROR + NO_SUCH_USER);
1236                 return;
1237         }
1238
1239         MailboxName(calendar_room_name, sizeof calendar_room_name,
1240                 &usbuf, USERCALENDARROOM);
1241
1242         strcpy(hold_rm, CC->room.QRname);       /* save current room */
1243
1244         if (getroom(&CC->room, calendar_room_name) != 0) {
1245                 cprintf("%d Cannot open calendar\n", ERROR + ROOM_NOT_FOUND);
1246                 getroom(&CC->room, hold_rm);
1247                 return;
1248         }
1249
1250         /* Create a VFREEBUSY subcomponent */
1251         lprintf(CTDL_DEBUG, "Creating VFREEBUSY component\n");
1252         fb = icalcomponent_new_vfreebusy();
1253         if (fb == NULL) {
1254                 cprintf("%d Internal error: cannot allocate memory.\n",
1255                         ERROR + INTERNAL_ERROR);
1256                 icalcomponent_free(encaps);
1257                 getroom(&CC->room, hold_rm);
1258                 return;
1259         }
1260
1261         /* Set the method to PUBLISH */
1262         icalcomponent_set_method(fb, ICAL_METHOD_PUBLISH);
1263
1264         /* Set the DTSTAMP to right now. */
1265         icalcomponent_set_dtstamp(fb, icaltime_from_timet(time(NULL), 0));
1266
1267         /* Add the user's email address as ORGANIZER */
1268         sprintf(buf, "MAILTO:%s", who);
1269         if (strchr(buf, '@') == NULL) {
1270                 strcat(buf, "@");
1271                 strcat(buf, config.c_fqdn);
1272         }
1273         for (i=0; i<strlen(buf); ++i) {
1274                 if (buf[i]==' ') buf[i] = '_';
1275         }
1276         icalcomponent_add_property(fb, icalproperty_new_organizer(buf));
1277
1278         /* Add busy time from events */
1279         lprintf(CTDL_DEBUG, "Adding busy time from events\n");
1280         /* FIXME CONNECTOR DEV -- we need to handle calendar items embedded inside multipart */
1281         CtdlForEachMessage(MSGS_ALL, 0, NULL, "^[Tt][Ee][Xx][Tt]/[Cc][Aa][Ll][Ee][Nn][Dd][Aa][Rr]$",
1282                 NULL, ical_freebusy_backend, (void *)fb
1283         );
1284
1285         /* If values for DTSTART and DTEND are still not present, set them
1286          * to yesterday and tomorrow as default values.
1287          */
1288         if (icalcomponent_get_first_property(fb, ICAL_DTSTART_PROPERTY) == NULL) {
1289                 icalcomponent_set_dtstart(fb, icaltime_from_timet(time(NULL)-86400L, 0));
1290         }
1291         if (icalcomponent_get_first_property(fb, ICAL_DTEND_PROPERTY) == NULL) {
1292                 icalcomponent_set_dtend(fb, icaltime_from_timet(time(NULL)+86400L, 0));
1293         }
1294
1295         /* Put the freebusy component into the calendar component */
1296         lprintf(CTDL_DEBUG, "Encapsulating\n");
1297         encaps = ical_encapsulate_subcomponent(fb);
1298         if (encaps == NULL) {
1299                 icalcomponent_free(fb);
1300                 cprintf("%d Internal error: cannot allocate memory.\n",
1301                         ERROR + INTERNAL_ERROR);
1302                 getroom(&CC->room, hold_rm);
1303                 return;
1304         }
1305
1306         /* Set the method to PUBLISH */
1307         lprintf(CTDL_DEBUG, "Setting method\n");
1308         icalcomponent_set_method(encaps, ICAL_METHOD_PUBLISH);
1309
1310         /* Serialize it */
1311         lprintf(CTDL_DEBUG, "Serializing\n");
1312         serialized_request = strdup(icalcomponent_as_ical_string(encaps));
1313         icalcomponent_free(encaps);     /* Don't need this anymore. */
1314
1315         cprintf("%d Here is the free/busy data:\n", LISTING_FOLLOWS);
1316         if (serialized_request != NULL) {
1317                 client_write(serialized_request, strlen(serialized_request));
1318                 free(serialized_request);
1319         }
1320         cprintf("\n000\n");
1321
1322         /* Go back to the room from which we came... */
1323         getroom(&CC->room, hold_rm);
1324 }
1325
1326
1327
1328 /*
1329  * Backend for ical_getics()
1330  * 
1331  * This is a ForEachMessage() callback function that searches the current room
1332  * for calendar events and adds them each into one big calendar component.
1333  */
1334 void ical_getics_backend(long msgnum, void *data) {
1335         icalcomponent *encaps, *c;
1336         struct CtdlMessage *msg = NULL;
1337         struct ical_respond_data ird;
1338
1339         encaps = (icalcomponent *)data;
1340         if (encaps == NULL) return;
1341
1342         /* Look for the calendar event... */
1343
1344         msg = CtdlFetchMessage(msgnum, 1);
1345         if (msg == NULL) return;
1346         memset(&ird, 0, sizeof ird);
1347         strcpy(ird.desired_partnum, "_HUNT_");
1348         mime_parser(msg->cm_fields['M'],
1349                 NULL,
1350                 *ical_locate_part,              /* callback function */
1351                 NULL, NULL,
1352                 (void *) &ird,                  /* user data */
1353                 0
1354         );
1355         CtdlFreeMessage(msg);
1356
1357         if (ird.cal == NULL) return;
1358
1359         /* Here we go: put the VEVENT into the VCALENDAR.  We now no longer
1360          * are responsible for "the_request"'s memory -- it will be freed
1361          * when we free "encaps".
1362          */
1363
1364         /* If the top-level component is *not* a VCALENDAR, we can drop it right
1365          * in.  This will almost never happen.
1366          */
1367         if (icalcomponent_isa(ird.cal) != ICAL_VCALENDAR_COMPONENT) {
1368                 icalcomponent_add_component(encaps, ird.cal);
1369         }
1370         /*
1371          * In the more likely event that we're looking at a VCALENDAR with the VEVENT
1372          * and other components encapsulated inside, we have to extract them.
1373          */
1374         else {
1375                 for (c = icalcomponent_get_first_component(ird.cal, ICAL_ANY_COMPONENT);
1376                     (c != NULL);
1377                     c = icalcomponent_get_next_component(ird.cal, ICAL_ANY_COMPONENT)) {
1378                         icalcomponent_add_component(encaps, icalcomponent_new_clone(c));
1379                 }
1380                 icalcomponent_free(ird.cal);
1381         }
1382 }
1383
1384
1385
1386 /*
1387  * Retrieve all of the calendar items in the current room, and output them
1388  * as a single icalendar object.
1389  */
1390 void ical_getics(void)
1391 {
1392         icalcomponent *encaps = NULL;
1393         char *ser = NULL;
1394
1395         if ( (CC->room.QRdefaultview != VIEW_CALENDAR)
1396            &&(CC->room.QRdefaultview != VIEW_TASKS) ) {
1397                 cprintf("%d Not a calendar room\n", ERROR+NOT_HERE);
1398                 return;         /* Not a vCalendar-centric room */
1399         }
1400
1401         encaps = icalcomponent_new_vcalendar();
1402         if (encaps == NULL) {
1403                 lprintf(CTDL_DEBUG, "Error at %s:%d - could not allocate component!\n",
1404                         __FILE__, __LINE__);
1405                 cprintf("%d Could not allocate memory\n", ERROR+INTERNAL_ERROR);
1406                 return;
1407         }
1408
1409         cprintf("%d one big calendar\n", LISTING_FOLLOWS);
1410
1411         /* Set the Product ID */
1412         icalcomponent_add_property(encaps, icalproperty_new_prodid(PRODID));
1413
1414         /* Set the Version Number */
1415         icalcomponent_add_property(encaps, icalproperty_new_version("2.0"));
1416
1417         /* Set the method to REQUEST */
1418         icalcomponent_set_method(encaps, ICAL_METHOD_PUBLISH);
1419
1420         /* Now go through the room encapsulating all calendar items. */
1421         /* FIXME CONNECTOR DEV -- we need to handle calendar items embedded inside multipart */
1422         CtdlForEachMessage(MSGS_ALL, 0, NULL,
1423                 "^[Tt][Ee][Xx][Tt]/[Cc][Aa][Ll][Ee][Nn][Dd][Aa][Rr]$",
1424                 NULL,
1425                 ical_getics_backend,
1426                 (void *) encaps
1427         );
1428
1429         ser = strdup(icalcomponent_as_ical_string(encaps));
1430         client_write(ser, strlen(ser));
1431         free(ser);
1432         cprintf("\n000\n");
1433         icalcomponent_free(encaps);     /* Don't need this anymore. */
1434
1435 }
1436
1437
1438 /*
1439  * Delete all of the calendar items in the current room, and replace them
1440  * with calendar items from a client-supplied data stream.
1441  */
1442 void ical_putics(void)
1443 {
1444         char *calstream = NULL;
1445         icalcomponent *cal;
1446         icalcomponent *c;
1447
1448         if ( (CC->room.QRdefaultview != VIEW_CALENDAR)
1449            &&(CC->room.QRdefaultview != VIEW_TASKS) ) {
1450                 cprintf("%d Not a calendar room\n", ERROR+NOT_HERE);
1451                 return;         /* Not a vCalendar-centric room */
1452         }
1453
1454         if (!CtdlDoIHavePermissionToDeleteMessagesFromThisRoom()) {
1455                 cprintf("%d Permission denied.\n", ERROR+HIGHER_ACCESS_REQUIRED);
1456                 return;
1457         }
1458
1459         cprintf("%d Transmit data now\n", SEND_LISTING);
1460         calstream = CtdlReadMessageBody("000", config.c_maxmsglen, NULL, 0);
1461         if (calstream == NULL) {
1462                 return;
1463         }
1464
1465         cal = icalcomponent_new_from_string(calstream);
1466         free(calstream);
1467         ical_dezonify(cal);
1468
1469         /* We got our data stream -- now do something with it. */
1470
1471         /* Delete the existing messages in the room, because we are replacing
1472          * the entire calendar with an entire new (or updated) calendar.
1473          * (Careful: this opens an S_ROOMS critical section!)
1474          */
1475         CtdlDeleteMessages(CC->room.QRname, NULL, 0, "");
1476
1477         /* If the top-level component is *not* a VCALENDAR, we can drop it right
1478          * in.  This will almost never happen.
1479          */
1480         if (icalcomponent_isa(cal) != ICAL_VCALENDAR_COMPONENT) {
1481                 ical_write_to_cal(&CC->user, cal);
1482         }
1483         /*
1484          * In the more likely event that we're looking at a VCALENDAR with the VEVENT
1485          * and other components encapsulated inside, we have to extract them.
1486          */
1487         else {
1488                 for (c = icalcomponent_get_first_component(cal, ICAL_ANY_COMPONENT);
1489                     (c != NULL);
1490                     c = icalcomponent_get_next_component(cal, ICAL_ANY_COMPONENT)) {
1491                         ical_write_to_cal(&CC->user, c);
1492                 }
1493         }
1494
1495         icalcomponent_free(cal);
1496 }
1497
1498
1499 /*
1500  * All Citadel calendar commands from the client come through here.
1501  */
1502 void cmd_ical(char *argbuf)
1503 {
1504         char subcmd[64];
1505         long msgnum;
1506         char partnum[256];
1507         char action[256];
1508         char who[256];
1509
1510         extract_token(subcmd, argbuf, 0, '|', sizeof subcmd);
1511
1512         /* Allow "test" and "freebusy" subcommands without logging in. */
1513
1514         if (!strcasecmp(subcmd, "test")) {
1515                 cprintf("%d This server supports calendaring\n", CIT_OK);
1516                 return;
1517         }
1518
1519         if (!strcasecmp(subcmd, "freebusy")) {
1520                 extract_token(who, argbuf, 1, '|', sizeof who);
1521                 ical_freebusy(who);
1522                 return;
1523         }
1524
1525         if (!strcasecmp(subcmd, "sgi")) {
1526                 CIT_ICAL->server_generated_invitations =
1527                         (extract_int(argbuf, 1) ? 1 : 0) ;
1528                 cprintf("%d %d\n",
1529                         CIT_OK, CIT_ICAL->server_generated_invitations);
1530                 return;
1531         }
1532
1533         if (CtdlAccessCheck(ac_logged_in)) return;
1534
1535         if (!strcasecmp(subcmd, "respond")) {
1536                 msgnum = extract_long(argbuf, 1);
1537                 extract_token(partnum, argbuf, 2, '|', sizeof partnum);
1538                 extract_token(action, argbuf, 3, '|', sizeof action);
1539                 ical_respond(msgnum, partnum, action);
1540                 return;
1541         }
1542
1543         if (!strcasecmp(subcmd, "handle_rsvp")) {
1544                 msgnum = extract_long(argbuf, 1);
1545                 extract_token(partnum, argbuf, 2, '|', sizeof partnum);
1546                 extract_token(action, argbuf, 3, '|', sizeof action);
1547                 ical_handle_rsvp(msgnum, partnum, action);
1548                 return;
1549         }
1550
1551         if (!strcasecmp(subcmd, "conflicts")) {
1552                 msgnum = extract_long(argbuf, 1);
1553                 extract_token(partnum, argbuf, 2, '|', sizeof partnum);
1554                 ical_conflicts(msgnum, partnum);
1555                 return;
1556         }
1557
1558         if (!strcasecmp(subcmd, "getics")) {
1559                 ical_getics();
1560                 return;
1561         }
1562
1563         if (!strcasecmp(subcmd, "putics")) {
1564                 ical_putics();
1565                 return;
1566         }
1567
1568         cprintf("%d Invalid subcommand\n", ERROR + CMD_NOT_SUPPORTED);
1569 }
1570
1571
1572
1573 /*
1574  * We don't know if the calendar room exists so we just create it at login
1575  */
1576 void ical_create_room(void)
1577 {
1578         struct ctdlroom qr;
1579         struct visit vbuf;
1580
1581         /* Create the calendar room if it doesn't already exist */
1582         create_room(USERCALENDARROOM, 4, "", 0, 1, 0, VIEW_CALENDAR);
1583
1584         /* Set expiration policy to manual; otherwise objects will be lost! */
1585         if (lgetroom(&qr, USERCALENDARROOM)) {
1586                 lprintf(CTDL_CRIT, "Couldn't get the user calendar room!\n");
1587                 return;
1588         }
1589         qr.QRep.expire_mode = EXPIRE_MANUAL;
1590         qr.QRdefaultview = VIEW_CALENDAR;       /* 3 = calendar view */
1591         lputroom(&qr);
1592
1593         /* Set the view to a calendar view */
1594         CtdlGetRelationship(&vbuf, &CC->user, &qr);
1595         vbuf.v_view = VIEW_CALENDAR;
1596         CtdlSetRelationship(&vbuf, &CC->user, &qr);
1597
1598         /* Create the tasks list room if it doesn't already exist */
1599         create_room(USERTASKSROOM, 4, "", 0, 1, 0, VIEW_TASKS);
1600
1601         /* Set expiration policy to manual; otherwise objects will be lost! */
1602         if (lgetroom(&qr, USERTASKSROOM)) {
1603                 lprintf(CTDL_CRIT, "Couldn't get the user calendar room!\n");
1604                 return;
1605         }
1606         qr.QRep.expire_mode = EXPIRE_MANUAL;
1607         qr.QRdefaultview = VIEW_TASKS;
1608         lputroom(&qr);
1609
1610         /* Set the view to a task list view */
1611         CtdlGetRelationship(&vbuf, &CC->user, &qr);
1612         vbuf.v_view = VIEW_TASKS;
1613         CtdlSetRelationship(&vbuf, &CC->user, &qr);
1614
1615         /* Create the notes room if it doesn't already exist */
1616         create_room(USERNOTESROOM, 4, "", 0, 1, 0, VIEW_NOTES);
1617
1618         /* Set expiration policy to manual; otherwise objects will be lost! */
1619         if (lgetroom(&qr, USERNOTESROOM)) {
1620                 lprintf(CTDL_CRIT, "Couldn't get the user calendar room!\n");
1621                 return;
1622         }
1623         qr.QRep.expire_mode = EXPIRE_MANUAL;
1624         qr.QRdefaultview = VIEW_NOTES;
1625         lputroom(&qr);
1626
1627         /* Set the view to a notes view */
1628         CtdlGetRelationship(&vbuf, &CC->user, &qr);
1629         vbuf.v_view = VIEW_NOTES;
1630         CtdlSetRelationship(&vbuf, &CC->user, &qr);
1631
1632         return;
1633 }
1634
1635
1636 /*
1637  * ical_send_out_invitations() is called by ical_saving_vevent() when it
1638  * finds a VEVENT.
1639  */
1640 void ical_send_out_invitations(icalcomponent *cal) {
1641         icalcomponent *the_request = NULL;
1642         char *serialized_request = NULL;
1643         icalcomponent *encaps = NULL;
1644         char *request_message_text = NULL;
1645         struct CtdlMessage *msg = NULL;
1646         struct recptypes *valid = NULL;
1647         char attendees_string[SIZ];
1648         int num_attendees = 0;
1649         char this_attendee[256];
1650         icalproperty *attendee = NULL;
1651         char summary_string[SIZ];
1652         icalproperty *summary = NULL;
1653
1654         if (cal == NULL) {
1655                 lprintf(CTDL_ERR, "ERROR: trying to reply to NULL event?\n");
1656                 return;
1657         }
1658
1659
1660         /* If this is a VCALENDAR component, look for a VEVENT subcomponent. */
1661         if (icalcomponent_isa(cal) == ICAL_VCALENDAR_COMPONENT) {
1662                 ical_send_out_invitations(
1663                         icalcomponent_get_first_component(
1664                                 cal, ICAL_VEVENT_COMPONENT
1665                         )
1666                 );
1667                 return;
1668         }
1669
1670         /* Clone the event */
1671         the_request = icalcomponent_new_clone(cal);
1672         if (the_request == NULL) {
1673                 lprintf(CTDL_ERR, "ERROR: cannot clone calendar object\n");
1674                 return;
1675         }
1676
1677         /* Extract the summary string -- we'll use it as the
1678          * message subject for the request
1679          */
1680         strcpy(summary_string, "Meeting request");
1681         summary = icalcomponent_get_first_property(the_request, ICAL_SUMMARY_PROPERTY);
1682         if (summary != NULL) {
1683                 if (icalproperty_get_summary(summary)) {
1684                         strcpy(summary_string,
1685                                 icalproperty_get_summary(summary) );
1686                 }
1687         }
1688
1689         /* Determine who the recipients of this message are (the attendees) */
1690         strcpy(attendees_string, "");
1691         for (attendee = icalcomponent_get_first_property(the_request, ICAL_ATTENDEE_PROPERTY); attendee != NULL; attendee = icalcomponent_get_next_property(the_request, ICAL_ATTENDEE_PROPERTY)) {
1692                 if (icalproperty_get_attendee(attendee)) {
1693                         safestrncpy(this_attendee, icalproperty_get_attendee(attendee), sizeof this_attendee);
1694                         if (!strncasecmp(this_attendee, "MAILTO:", 7)) {
1695                                 strcpy(this_attendee, &this_attendee[7]);
1696
1697                                 if (!CtdlIsMe(this_attendee, sizeof this_attendee)) {   /* don't send an invitation to myself! */
1698                                         snprintf(&attendees_string[strlen(attendees_string)],
1699                                                 sizeof(attendees_string) - strlen(attendees_string),
1700                                                 "%s, ",
1701                                                 this_attendee
1702                                         );
1703                                         ++num_attendees;
1704                                 }
1705                         }
1706                 }
1707         }
1708
1709         lprintf(CTDL_DEBUG, "<%d> attendees: <%s>\n", num_attendees, attendees_string);
1710
1711         /* If there are no attendees, there are no invitations to send, so...
1712          * don't bother putting one together!  Punch out, Maverick!
1713          */
1714         if (num_attendees == 0) {
1715                 icalcomponent_free(the_request);
1716                 return;
1717         }
1718
1719         /* Encapsulate the VEVENT component into a complete VCALENDAR */
1720         encaps = icalcomponent_new_vcalendar();
1721         if (encaps == NULL) {
1722                 lprintf(CTDL_DEBUG, "Error at %s:%d - could not allocate component!\n",
1723                         __FILE__, __LINE__);
1724                 icalcomponent_free(the_request);
1725                 return;
1726         }
1727
1728         /* Set the Product ID */
1729         icalcomponent_add_property(encaps, icalproperty_new_prodid(PRODID));
1730
1731         /* Set the Version Number */
1732         icalcomponent_add_property(encaps, icalproperty_new_version("2.0"));
1733
1734         /* Set the method to REQUEST */
1735         icalcomponent_set_method(encaps, ICAL_METHOD_REQUEST);
1736
1737         /* Now make sure all of the DTSTART and DTEND properties are UTC. */
1738         ical_dezonify(the_request);
1739
1740         /* Here we go: put the VEVENT into the VCALENDAR.  We now no longer
1741          * are responsible for "the_request"'s memory -- it will be freed
1742          * when we free "encaps".
1743          */
1744         icalcomponent_add_component(encaps, the_request);
1745
1746         /* Serialize it */
1747         serialized_request = strdup(icalcomponent_as_ical_string(encaps));
1748         icalcomponent_free(encaps);     /* Don't need this anymore. */
1749         if (serialized_request == NULL) return;
1750
1751         request_message_text = malloc(strlen(serialized_request) + SIZ);
1752         if (request_message_text != NULL) {
1753                 sprintf(request_message_text,
1754                         "Content-type: text/calendar\r\n\r\n%s\r\n",
1755                         serialized_request
1756                 );
1757
1758                 msg = CtdlMakeMessage(&CC->user,
1759                         "",                     /* No single recipient here */
1760                         "",                     /* No single recipient here */
1761                         CC->room.QRname, 0, FMT_RFC822,
1762                         "",
1763                         summary_string,         /* Use summary for subject */
1764                         NULL,
1765                         request_message_text);
1766         
1767                 if (msg != NULL) {
1768                         valid = validate_recipients(attendees_string);
1769                         CtdlSubmitMsg(msg, valid, "");
1770                         CtdlFreeMessage(msg);
1771                         free (valid);
1772                 }
1773         }
1774         free(serialized_request);
1775 }
1776
1777
1778 /*
1779  * When a calendar object is being saved, determine whether it's a VEVENT
1780  * and the user saving it is the organizer.  If so, send out invitations
1781  * to any listed attendees.
1782  *
1783  */
1784 void ical_saving_vevent(icalcomponent *cal) {
1785         icalcomponent *c;
1786         icalproperty *organizer = NULL;
1787         char organizer_string[SIZ];
1788
1789         lprintf(CTDL_DEBUG, "ical_saving_vevent() has been called!\n");
1790
1791         /* Don't send out invitations unless the client wants us to. */
1792         if (CIT_ICAL->server_generated_invitations == 0) {
1793                 return;
1794         }
1795
1796         /* Don't send out invitations if we've been asked not to. */
1797         if (CIT_ICAL->avoid_sending_invitations > 0) {
1798                 return;
1799         }
1800
1801         strcpy(organizer_string, "");
1802         /*
1803          * The VEVENT subcomponent is the one we're interested in.
1804          * Send out invitations if, and only if, this user is the Organizer.
1805          */
1806         if (icalcomponent_isa(cal) == ICAL_VEVENT_COMPONENT) {
1807                 organizer = icalcomponent_get_first_property(cal,
1808                                                 ICAL_ORGANIZER_PROPERTY);
1809                 if (organizer != NULL) {
1810                         if (icalproperty_get_organizer(organizer)) {
1811                                 strcpy(organizer_string,
1812                                         icalproperty_get_organizer(organizer));
1813                         }
1814                 }
1815                 if (!strncasecmp(organizer_string, "MAILTO:", 7)) {
1816                         strcpy(organizer_string, &organizer_string[7]);
1817                         striplt(organizer_string);
1818                         /*
1819                          * If the user saving the event is listed as the
1820                          * organizer, then send out invitations.
1821                          */
1822                         if (CtdlIsMe(organizer_string, sizeof organizer_string)) {
1823                                 ical_send_out_invitations(cal);
1824                         }
1825                 }
1826         }
1827
1828         /* If the component has subcomponents, recurse through them. */
1829         for (c = icalcomponent_get_first_component(cal, ICAL_ANY_COMPONENT);
1830             (c != NULL);
1831             c = icalcomponent_get_next_component(cal, ICAL_ANY_COMPONENT)) {
1832                 /* Recursively process subcomponent */
1833                 ical_saving_vevent(c);
1834         }
1835
1836 }
1837
1838
1839
1840 /*
1841  * Back end for ical_obj_beforesave()
1842  * This hunts for the UID of the calendar event (becomes Citadel msg EUID),
1843  * the summary of the event (becomes message subject),
1844  * and the start time (becomes message date/time).
1845  */
1846 void ical_ctdl_set_exclusive_msgid(char *name, char *filename, char *partnum,
1847                 char *disp, void *content, char *cbtype, char *cbcharset, size_t length,
1848                 char *encoding, void *cbuserdata)
1849 {
1850         icalcomponent *cal, *nested_event, *nested_todo, *whole_cal;
1851         icalproperty *p;
1852         struct icalmessagemod *imm;
1853         char new_uid[SIZ];
1854
1855         imm = (struct icalmessagemod *)cbuserdata;
1856
1857         /* We're only interested in calendar data. */
1858         if (strcasecmp(cbtype, "text/calendar")) {
1859                 return;
1860         }
1861
1862         /* Hunt for the UID and drop it in
1863          * the "user data" pointer for the MIME parser.  When
1864          * ical_obj_beforesave() sees it there, it'll set the Exclusive msgid
1865          * to that string.
1866          */
1867         whole_cal = icalcomponent_new_from_string(content);
1868         cal = whole_cal;
1869         if (cal != NULL) {
1870                 if (icalcomponent_isa(cal) == ICAL_VCALENDAR_COMPONENT) {
1871                         nested_event = icalcomponent_get_first_component(
1872                                 cal, ICAL_VEVENT_COMPONENT);
1873                         if (nested_event != NULL) {
1874                                 cal = nested_event;
1875                         }
1876                         else {
1877                                 nested_todo = icalcomponent_get_first_component(
1878                                         cal, ICAL_VTODO_COMPONENT);
1879                                 if (nested_todo != NULL) {
1880                                         cal = nested_todo;
1881                                 }
1882                         }
1883                 }
1884                 
1885                 if (cal != NULL) {
1886                         p = ical_ctdl_get_subprop(cal, ICAL_UID_PROPERTY);
1887                         if (p == NULL) {
1888                                 /* If there's no uid we must generate one */
1889                                 generate_uuid(new_uid);
1890                                 icalcomponent_add_property(cal, icalproperty_new_uid(new_uid));
1891                                 p = ical_ctdl_get_subprop(cal, ICAL_UID_PROPERTY);
1892                         }
1893                         if (p != NULL) {
1894                                 strcpy(imm->uid, icalproperty_get_comment(p));
1895                         }
1896                         p = ical_ctdl_get_subprop(cal, ICAL_SUMMARY_PROPERTY);
1897                         if (p != NULL) {
1898                                 strcpy(imm->subject, icalproperty_get_comment(p));
1899                         }
1900                         p = ical_ctdl_get_subprop(cal, ICAL_DTSTART_PROPERTY);
1901                         if (p != NULL) {
1902                                 imm->dtstart = icaltime_as_timet(icalproperty_get_dtstart(p));
1903                         }
1904                 }
1905                 icalcomponent_free(cal);
1906                 if (whole_cal != cal) {
1907                         icalcomponent_free(whole_cal);
1908                 }
1909         }
1910 }
1911
1912
1913
1914
1915 /*
1916  * See if we need to prevent the object from being saved (we don't allow
1917  * MIME types other than text/calendar in "calendar" or "tasks"  rooms).  Also,
1918  * when saving an event to the calendar, set the message's Citadel exclusive
1919  * message ID to the UID of the object.  This causes our replication checker to
1920  * automatically delete any existing instances of the same object.  (Isn't
1921  * that cool?)
1922  *
1923  * We also set the message's Subject to the event summary, and the Date/time to
1924  * the event start time.
1925  */
1926 int ical_obj_beforesave(struct CtdlMessage *msg)
1927 {
1928         struct icalmessagemod imm;
1929
1930         /* First determine if this is a calendar or tasks room */
1931         if (  (CC->room.QRdefaultview != VIEW_CALENDAR)
1932            && (CC->room.QRdefaultview != VIEW_TASKS)
1933         ) {
1934                 return(0);              /* Not a vCalendar-centric room */
1935         }
1936
1937         /* It must be an RFC822 message! */
1938         if (msg->cm_format_type != 4) {
1939                 lprintf(CTDL_DEBUG, "Rejecting non-RFC822 message\n");
1940                 return(1);              /* You tried to save a non-RFC822 message! */
1941         }
1942
1943         if (msg->cm_fields['M'] == NULL) {
1944                 return(1);              /* You tried to save a null message! */
1945         }
1946
1947         memset(&imm, 0, sizeof(struct icalmessagemod));
1948         
1949         /* Do all of our lovely back-end parsing */
1950         mime_parser(msg->cm_fields['M'],
1951                 NULL,
1952                 *ical_ctdl_set_exclusive_msgid,
1953                 NULL, NULL,
1954                 (void *)&imm,
1955                 0
1956         );
1957
1958         if (strlen(imm.uid) > 0) {
1959                 if (msg->cm_fields['E'] != NULL) {
1960                         free(msg->cm_fields['E']);
1961                 }
1962                 msg->cm_fields['E'] = strdup(imm.uid);
1963                 lprintf(CTDL_DEBUG, "Saving calendar UID <%s>\n", msg->cm_fields['E']);
1964         }
1965         if (strlen(imm.subject) > 0) {
1966                 if (msg->cm_fields['U'] != NULL) {
1967                         free(msg->cm_fields['U']);
1968                 }
1969                 msg->cm_fields['U'] = strdup(imm.subject);
1970         }
1971         if (imm.dtstart > 0) {
1972                 if (msg->cm_fields['T'] != NULL) {
1973                         free(msg->cm_fields['T']);
1974                 }
1975                 msg->cm_fields['T'] = strdup("000000000000000000");
1976                 sprintf(msg->cm_fields['T'], "%ld", imm.dtstart);
1977         }
1978
1979         return(0);
1980 }
1981
1982
1983 /*
1984  * Things we need to do after saving a calendar event.
1985  */
1986 void ical_obj_aftersave_backend(char *name, char *filename, char *partnum,
1987                 char *disp, void *content, char *cbtype, char *cbcharset, size_t length,
1988                 char *encoding, void *cbuserdata)
1989 {
1990         icalcomponent *cal;
1991
1992         /* We're only interested in calendar items here. */
1993         if (strcasecmp(cbtype, "text/calendar")) {
1994                 return;
1995         }
1996
1997         /* Hunt for the UID and drop it in
1998          * the "user data" pointer for the MIME parser.  When
1999          * ical_obj_beforesave() sees it there, it'll set the Exclusive msgid
2000          * to that string.
2001          */
2002         if (!strcasecmp(cbtype, "text/calendar")) {
2003                 cal = icalcomponent_new_from_string(content);
2004                 if (cal != NULL) {
2005                         ical_saving_vevent(cal);
2006                         icalcomponent_free(cal);
2007                 }
2008         }
2009 }
2010
2011
2012 /* 
2013  * Things we need to do after saving a calendar event.
2014  * (This will start back end tasks such as automatic generation of invitations,
2015  * if such actions are appropriate.)
2016  */
2017 int ical_obj_aftersave(struct CtdlMessage *msg)
2018 {
2019         char roomname[ROOMNAMELEN];
2020
2021         /*
2022          * If this isn't the Calendar> room, no further action is necessary.
2023          */
2024
2025         /* First determine if this is our room */
2026         MailboxName(roomname, sizeof roomname, &CC->user, USERCALENDARROOM);
2027         if (strcasecmp(roomname, CC->room.QRname)) {
2028                 return(0);      /* Not the Calendar room -- don't do anything. */
2029         }
2030
2031         /* It must be an RFC822 message! */
2032         if (msg->cm_format_type != 4) return(1);
2033
2034         /* Reject null messages */
2035         if (msg->cm_fields['M'] == NULL) return(1);
2036         
2037         /* Now recurse through it looking for our icalendar data */
2038         mime_parser(msg->cm_fields['M'],
2039                 NULL,
2040                 *ical_obj_aftersave_backend,
2041                 NULL, NULL,
2042                 NULL,
2043                 0
2044         );
2045
2046         return(0);
2047 }
2048
2049
2050 void ical_session_startup(void) {
2051         CIT_ICAL = malloc(sizeof(struct cit_ical));
2052         memset(CIT_ICAL, 0, sizeof(struct cit_ical));
2053 }
2054
2055 void ical_session_shutdown(void) {
2056         free(CIT_ICAL);
2057 }
2058
2059
2060 /*
2061  * Back end for ical_fixed_output()
2062  */
2063 void ical_fixed_output_backend(icalcomponent *cal,
2064                         int recursion_level
2065 ) {
2066         icalcomponent *c;
2067         icalproperty *p;
2068         char buf[256];
2069
2070         p = icalcomponent_get_first_property(cal, ICAL_SUMMARY_PROPERTY);
2071         if (p != NULL) {
2072                 cprintf("%s\n", (const char *)icalproperty_get_comment(p));
2073         }
2074
2075         p = icalcomponent_get_first_property(cal, ICAL_LOCATION_PROPERTY);
2076         if (p != NULL) {
2077                 cprintf("%s\n", (const char *)icalproperty_get_comment(p));
2078         }
2079
2080         p = icalcomponent_get_first_property(cal, ICAL_DESCRIPTION_PROPERTY);
2081         if (p != NULL) {
2082                 cprintf("%s\n", (const char *)icalproperty_get_comment(p));
2083         }
2084
2085         /* If the component has attendees, iterate through them. */
2086         for (p = icalcomponent_get_first_property(cal, ICAL_ATTENDEE_PROPERTY); (p != NULL); p = icalcomponent_get_next_property(cal, ICAL_ATTENDEE_PROPERTY)) {
2087                 safestrncpy(buf, icalproperty_get_attendee(p), sizeof buf);
2088                 if (!strncasecmp(buf, "MAILTO:", 7)) {
2089
2090                         /* screen name or email address */
2091                         strcpy(buf, &buf[7]);
2092                         striplt(buf);
2093                         cprintf("%s ", buf);
2094                 }
2095                 cprintf("\n");
2096         }
2097
2098         /* If the component has subcomponents, recurse through them. */
2099         for (c = icalcomponent_get_first_component(cal, ICAL_ANY_COMPONENT);
2100             (c != 0);
2101             c = icalcomponent_get_next_component(cal, ICAL_ANY_COMPONENT)) {
2102                 /* Recursively process subcomponent */
2103                 ical_fixed_output_backend(c, recursion_level+1);
2104         }
2105 }
2106
2107
2108
2109 /*
2110  * Function to output vcalendar data as plain text.  Nobody uses MSG0
2111  * anymore, so really this is just so we expose the vCard data to the full
2112  * text indexer.
2113  */
2114 void ical_fixed_output(char *ptr, int len) {
2115         icalcomponent *cal;
2116         char *stringy_cal;
2117
2118         stringy_cal = malloc(len + 1);
2119         safestrncpy(stringy_cal, ptr, len + 1);
2120         cal = icalcomponent_new_from_string(stringy_cal);
2121         free(stringy_cal);
2122
2123         if (cal == NULL) {
2124                 return;
2125         }
2126
2127         ical_dezonify(cal);
2128         ical_fixed_output_backend(cal, 0);
2129
2130         /* Free the memory we obtained from libical's constructor */
2131         icalcomponent_free(cal);
2132 }
2133
2134
2135 #endif  /* CITADEL_WITH_CALENDAR_SERVICE */
2136
2137 /*
2138  * Register this module with the Citadel server.
2139  */
2140 char *serv_calendar_init(void)
2141 {
2142 #ifdef CITADEL_WITH_CALENDAR_SERVICE
2143         CtdlRegisterMessageHook(ical_obj_beforesave, EVT_BEFORESAVE);
2144         CtdlRegisterMessageHook(ical_obj_aftersave, EVT_AFTERSAVE);
2145         CtdlRegisterSessionHook(ical_create_room, EVT_LOGIN);
2146         CtdlRegisterProtoHook(cmd_ical, "ICAL", "Citadel iCal commands");
2147         CtdlRegisterSessionHook(ical_session_startup, EVT_START);
2148         CtdlRegisterSessionHook(ical_session_shutdown, EVT_STOP);
2149         CtdlRegisterFixedOutputHook("text/calendar", ical_fixed_output);
2150 #endif
2151         return "$Id$";
2152 }
2153
2154
2155
2156 void serv_calendar_destroy(void)
2157 {
2158 #ifdef CITADEL_WITH_CALENDAR_SERVICE
2159         icaltimezone_free_builtin_timezones();
2160 #endif
2161 }