aa859d025abdd8b09fe31362196f7f14f0a57e75
[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         CtdlForEachMessage(MSGS_ALL, 0, NULL,
975                 NULL,
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         CtdlForEachMessage(MSGS_ALL, 0, NULL, NULL, NULL, ical_freebusy_backend, (void *)fb );
1281
1282         /* If values for DTSTART and DTEND are still not present, set them
1283          * to yesterday and tomorrow as default values.
1284          */
1285         if (icalcomponent_get_first_property(fb, ICAL_DTSTART_PROPERTY) == NULL) {
1286                 icalcomponent_set_dtstart(fb, icaltime_from_timet(time(NULL)-86400L, 0));
1287         }
1288         if (icalcomponent_get_first_property(fb, ICAL_DTEND_PROPERTY) == NULL) {
1289                 icalcomponent_set_dtend(fb, icaltime_from_timet(time(NULL)+86400L, 0));
1290         }
1291
1292         /* Put the freebusy component into the calendar component */
1293         lprintf(CTDL_DEBUG, "Encapsulating\n");
1294         encaps = ical_encapsulate_subcomponent(fb);
1295         if (encaps == NULL) {
1296                 icalcomponent_free(fb);
1297                 cprintf("%d Internal error: cannot allocate memory.\n",
1298                         ERROR + INTERNAL_ERROR);
1299                 getroom(&CC->room, hold_rm);
1300                 return;
1301         }
1302
1303         /* Set the method to PUBLISH */
1304         lprintf(CTDL_DEBUG, "Setting method\n");
1305         icalcomponent_set_method(encaps, ICAL_METHOD_PUBLISH);
1306
1307         /* Serialize it */
1308         lprintf(CTDL_DEBUG, "Serializing\n");
1309         serialized_request = strdup(icalcomponent_as_ical_string(encaps));
1310         icalcomponent_free(encaps);     /* Don't need this anymore. */
1311
1312         cprintf("%d Here is the free/busy data:\n", LISTING_FOLLOWS);
1313         if (serialized_request != NULL) {
1314                 client_write(serialized_request, strlen(serialized_request));
1315                 free(serialized_request);
1316         }
1317         cprintf("\n000\n");
1318
1319         /* Go back to the room from which we came... */
1320         getroom(&CC->room, hold_rm);
1321 }
1322
1323
1324
1325 /*
1326  * Backend for ical_getics()
1327  * 
1328  * This is a ForEachMessage() callback function that searches the current room
1329  * for calendar events and adds them each into one big calendar component.
1330  */
1331 void ical_getics_backend(long msgnum, void *data) {
1332         icalcomponent *encaps, *c;
1333         struct CtdlMessage *msg = NULL;
1334         struct ical_respond_data ird;
1335
1336         encaps = (icalcomponent *)data;
1337         if (encaps == NULL) return;
1338
1339         /* Look for the calendar event... */
1340
1341         msg = CtdlFetchMessage(msgnum, 1);
1342         if (msg == NULL) return;
1343         memset(&ird, 0, sizeof ird);
1344         strcpy(ird.desired_partnum, "_HUNT_");
1345         mime_parser(msg->cm_fields['M'],
1346                 NULL,
1347                 *ical_locate_part,              /* callback function */
1348                 NULL, NULL,
1349                 (void *) &ird,                  /* user data */
1350                 0
1351         );
1352         CtdlFreeMessage(msg);
1353
1354         if (ird.cal == NULL) return;
1355
1356         /* Here we go: put the VEVENT into the VCALENDAR.  We now no longer
1357          * are responsible for "the_request"'s memory -- it will be freed
1358          * when we free "encaps".
1359          */
1360
1361         /* If the top-level component is *not* a VCALENDAR, we can drop it right
1362          * in.  This will almost never happen.
1363          */
1364         if (icalcomponent_isa(ird.cal) != ICAL_VCALENDAR_COMPONENT) {
1365                 icalcomponent_add_component(encaps, ird.cal);
1366         }
1367         /*
1368          * In the more likely event that we're looking at a VCALENDAR with the VEVENT
1369          * and other components encapsulated inside, we have to extract them.
1370          */
1371         else {
1372                 for (c = icalcomponent_get_first_component(ird.cal, ICAL_ANY_COMPONENT);
1373                     (c != NULL);
1374                     c = icalcomponent_get_next_component(ird.cal, ICAL_ANY_COMPONENT)) {
1375                         icalcomponent_add_component(encaps, icalcomponent_new_clone(c));
1376                 }
1377                 icalcomponent_free(ird.cal);
1378         }
1379 }
1380
1381
1382
1383 /*
1384  * Retrieve all of the calendar items in the current room, and output them
1385  * as a single icalendar object.
1386  */
1387 void ical_getics(void)
1388 {
1389         icalcomponent *encaps = NULL;
1390         char *ser = NULL;
1391
1392         if ( (CC->room.QRdefaultview != VIEW_CALENDAR)
1393            &&(CC->room.QRdefaultview != VIEW_TASKS) ) {
1394                 cprintf("%d Not a calendar room\n", ERROR+NOT_HERE);
1395                 return;         /* Not a vCalendar-centric room */
1396         }
1397
1398         encaps = icalcomponent_new_vcalendar();
1399         if (encaps == NULL) {
1400                 lprintf(CTDL_DEBUG, "Error at %s:%d - could not allocate component!\n",
1401                         __FILE__, __LINE__);
1402                 cprintf("%d Could not allocate memory\n", ERROR+INTERNAL_ERROR);
1403                 return;
1404         }
1405
1406         cprintf("%d one big calendar\n", LISTING_FOLLOWS);
1407
1408         /* Set the Product ID */
1409         icalcomponent_add_property(encaps, icalproperty_new_prodid(PRODID));
1410
1411         /* Set the Version Number */
1412         icalcomponent_add_property(encaps, icalproperty_new_version("2.0"));
1413
1414         /* Set the method to REQUEST */
1415         icalcomponent_set_method(encaps, ICAL_METHOD_PUBLISH);
1416
1417         /* Now go through the room encapsulating all calendar items. */
1418         CtdlForEachMessage(MSGS_ALL, 0, NULL,
1419                 NULL,
1420                 NULL,
1421                 ical_getics_backend,
1422                 (void *) encaps
1423         );
1424
1425         ser = strdup(icalcomponent_as_ical_string(encaps));
1426         client_write(ser, strlen(ser));
1427         free(ser);
1428         cprintf("\n000\n");
1429         icalcomponent_free(encaps);     /* Don't need this anymore. */
1430
1431 }
1432
1433
1434 /*
1435  * Delete all of the calendar items in the current room, and replace them
1436  * with calendar items from a client-supplied data stream.
1437  */
1438 void ical_putics(void)
1439 {
1440         char *calstream = NULL;
1441         icalcomponent *cal;
1442         icalcomponent *c;
1443
1444         if ( (CC->room.QRdefaultview != VIEW_CALENDAR)
1445            &&(CC->room.QRdefaultview != VIEW_TASKS) ) {
1446                 cprintf("%d Not a calendar room\n", ERROR+NOT_HERE);
1447                 return;         /* Not a vCalendar-centric room */
1448         }
1449
1450         if (!CtdlDoIHavePermissionToDeleteMessagesFromThisRoom()) {
1451                 cprintf("%d Permission denied.\n", ERROR+HIGHER_ACCESS_REQUIRED);
1452                 return;
1453         }
1454
1455         cprintf("%d Transmit data now\n", SEND_LISTING);
1456         calstream = CtdlReadMessageBody("000", config.c_maxmsglen, NULL, 0);
1457         if (calstream == NULL) {
1458                 return;
1459         }
1460
1461         cal = icalcomponent_new_from_string(calstream);
1462         free(calstream);
1463         ical_dezonify(cal);
1464
1465         /* We got our data stream -- now do something with it. */
1466
1467         /* Delete the existing messages in the room, because we are replacing
1468          * the entire calendar with an entire new (or updated) calendar.
1469          * (Careful: this opens an S_ROOMS critical section!)
1470          */
1471         CtdlDeleteMessages(CC->room.QRname, NULL, 0, "");
1472
1473         /* If the top-level component is *not* a VCALENDAR, we can drop it right
1474          * in.  This will almost never happen.
1475          */
1476         if (icalcomponent_isa(cal) != ICAL_VCALENDAR_COMPONENT) {
1477                 ical_write_to_cal(&CC->user, cal);
1478         }
1479         /*
1480          * In the more likely event that we're looking at a VCALENDAR with the VEVENT
1481          * and other components encapsulated inside, we have to extract them.
1482          */
1483         else {
1484                 for (c = icalcomponent_get_first_component(cal, ICAL_ANY_COMPONENT);
1485                     (c != NULL);
1486                     c = icalcomponent_get_next_component(cal, ICAL_ANY_COMPONENT)) {
1487                         ical_write_to_cal(&CC->user, c);
1488                 }
1489         }
1490
1491         icalcomponent_free(cal);
1492 }
1493
1494
1495 /*
1496  * All Citadel calendar commands from the client come through here.
1497  */
1498 void cmd_ical(char *argbuf)
1499 {
1500         char subcmd[64];
1501         long msgnum;
1502         char partnum[256];
1503         char action[256];
1504         char who[256];
1505
1506         extract_token(subcmd, argbuf, 0, '|', sizeof subcmd);
1507
1508         /* Allow "test" and "freebusy" subcommands without logging in. */
1509
1510         if (!strcasecmp(subcmd, "test")) {
1511                 cprintf("%d This server supports calendaring\n", CIT_OK);
1512                 return;
1513         }
1514
1515         if (!strcasecmp(subcmd, "freebusy")) {
1516                 extract_token(who, argbuf, 1, '|', sizeof who);
1517                 ical_freebusy(who);
1518                 return;
1519         }
1520
1521         if (!strcasecmp(subcmd, "sgi")) {
1522                 CIT_ICAL->server_generated_invitations =
1523                         (extract_int(argbuf, 1) ? 1 : 0) ;
1524                 cprintf("%d %d\n",
1525                         CIT_OK, CIT_ICAL->server_generated_invitations);
1526                 return;
1527         }
1528
1529         if (CtdlAccessCheck(ac_logged_in)) return;
1530
1531         if (!strcasecmp(subcmd, "respond")) {
1532                 msgnum = extract_long(argbuf, 1);
1533                 extract_token(partnum, argbuf, 2, '|', sizeof partnum);
1534                 extract_token(action, argbuf, 3, '|', sizeof action);
1535                 ical_respond(msgnum, partnum, action);
1536                 return;
1537         }
1538
1539         if (!strcasecmp(subcmd, "handle_rsvp")) {
1540                 msgnum = extract_long(argbuf, 1);
1541                 extract_token(partnum, argbuf, 2, '|', sizeof partnum);
1542                 extract_token(action, argbuf, 3, '|', sizeof action);
1543                 ical_handle_rsvp(msgnum, partnum, action);
1544                 return;
1545         }
1546
1547         if (!strcasecmp(subcmd, "conflicts")) {
1548                 msgnum = extract_long(argbuf, 1);
1549                 extract_token(partnum, argbuf, 2, '|', sizeof partnum);
1550                 ical_conflicts(msgnum, partnum);
1551                 return;
1552         }
1553
1554         if (!strcasecmp(subcmd, "getics")) {
1555                 ical_getics();
1556                 return;
1557         }
1558
1559         if (!strcasecmp(subcmd, "putics")) {
1560                 ical_putics();
1561                 return;
1562         }
1563
1564         cprintf("%d Invalid subcommand\n", ERROR + CMD_NOT_SUPPORTED);
1565 }
1566
1567
1568
1569 /*
1570  * We don't know if the calendar room exists so we just create it at login
1571  */
1572 void ical_create_room(void)
1573 {
1574         struct ctdlroom qr;
1575         struct visit vbuf;
1576
1577         /* Create the calendar room if it doesn't already exist */
1578         create_room(USERCALENDARROOM, 4, "", 0, 1, 0, VIEW_CALENDAR);
1579
1580         /* Set expiration policy to manual; otherwise objects will be lost! */
1581         if (lgetroom(&qr, USERCALENDARROOM)) {
1582                 lprintf(CTDL_CRIT, "Couldn't get the user calendar room!\n");
1583                 return;
1584         }
1585         qr.QRep.expire_mode = EXPIRE_MANUAL;
1586         qr.QRdefaultview = VIEW_CALENDAR;       /* 3 = calendar view */
1587         lputroom(&qr);
1588
1589         /* Set the view to a calendar view */
1590         CtdlGetRelationship(&vbuf, &CC->user, &qr);
1591         vbuf.v_view = VIEW_CALENDAR;
1592         CtdlSetRelationship(&vbuf, &CC->user, &qr);
1593
1594         /* Create the tasks list room if it doesn't already exist */
1595         create_room(USERTASKSROOM, 4, "", 0, 1, 0, VIEW_TASKS);
1596
1597         /* Set expiration policy to manual; otherwise objects will be lost! */
1598         if (lgetroom(&qr, USERTASKSROOM)) {
1599                 lprintf(CTDL_CRIT, "Couldn't get the user calendar room!\n");
1600                 return;
1601         }
1602         qr.QRep.expire_mode = EXPIRE_MANUAL;
1603         qr.QRdefaultview = VIEW_TASKS;
1604         lputroom(&qr);
1605
1606         /* Set the view to a task list view */
1607         CtdlGetRelationship(&vbuf, &CC->user, &qr);
1608         vbuf.v_view = VIEW_TASKS;
1609         CtdlSetRelationship(&vbuf, &CC->user, &qr);
1610
1611         /* Create the notes room if it doesn't already exist */
1612         create_room(USERNOTESROOM, 4, "", 0, 1, 0, VIEW_NOTES);
1613
1614         /* Set expiration policy to manual; otherwise objects will be lost! */
1615         if (lgetroom(&qr, USERNOTESROOM)) {
1616                 lprintf(CTDL_CRIT, "Couldn't get the user calendar room!\n");
1617                 return;
1618         }
1619         qr.QRep.expire_mode = EXPIRE_MANUAL;
1620         qr.QRdefaultview = VIEW_NOTES;
1621         lputroom(&qr);
1622
1623         /* Set the view to a notes view */
1624         CtdlGetRelationship(&vbuf, &CC->user, &qr);
1625         vbuf.v_view = VIEW_NOTES;
1626         CtdlSetRelationship(&vbuf, &CC->user, &qr);
1627
1628         return;
1629 }
1630
1631
1632 /*
1633  * ical_send_out_invitations() is called by ical_saving_vevent() when it
1634  * finds a VEVENT.
1635  */
1636 void ical_send_out_invitations(icalcomponent *cal) {
1637         icalcomponent *the_request = NULL;
1638         char *serialized_request = NULL;
1639         icalcomponent *encaps = NULL;
1640         char *request_message_text = NULL;
1641         struct CtdlMessage *msg = NULL;
1642         struct recptypes *valid = NULL;
1643         char attendees_string[SIZ];
1644         int num_attendees = 0;
1645         char this_attendee[256];
1646         icalproperty *attendee = NULL;
1647         char summary_string[SIZ];
1648         icalproperty *summary = NULL;
1649
1650         if (cal == NULL) {
1651                 lprintf(CTDL_ERR, "ERROR: trying to reply to NULL event?\n");
1652                 return;
1653         }
1654
1655
1656         /* If this is a VCALENDAR component, look for a VEVENT subcomponent. */
1657         if (icalcomponent_isa(cal) == ICAL_VCALENDAR_COMPONENT) {
1658                 ical_send_out_invitations(
1659                         icalcomponent_get_first_component(
1660                                 cal, ICAL_VEVENT_COMPONENT
1661                         )
1662                 );
1663                 return;
1664         }
1665
1666         /* Clone the event */
1667         the_request = icalcomponent_new_clone(cal);
1668         if (the_request == NULL) {
1669                 lprintf(CTDL_ERR, "ERROR: cannot clone calendar object\n");
1670                 return;
1671         }
1672
1673         /* Extract the summary string -- we'll use it as the
1674          * message subject for the request
1675          */
1676         strcpy(summary_string, "Meeting request");
1677         summary = icalcomponent_get_first_property(the_request, ICAL_SUMMARY_PROPERTY);
1678         if (summary != NULL) {
1679                 if (icalproperty_get_summary(summary)) {
1680                         strcpy(summary_string,
1681                                 icalproperty_get_summary(summary) );
1682                 }
1683         }
1684
1685         /* Determine who the recipients of this message are (the attendees) */
1686         strcpy(attendees_string, "");
1687         for (attendee = icalcomponent_get_first_property(the_request, ICAL_ATTENDEE_PROPERTY); attendee != NULL; attendee = icalcomponent_get_next_property(the_request, ICAL_ATTENDEE_PROPERTY)) {
1688                 if (icalproperty_get_attendee(attendee)) {
1689                         safestrncpy(this_attendee, icalproperty_get_attendee(attendee), sizeof this_attendee);
1690                         if (!strncasecmp(this_attendee, "MAILTO:", 7)) {
1691                                 strcpy(this_attendee, &this_attendee[7]);
1692
1693                                 if (!CtdlIsMe(this_attendee, sizeof this_attendee)) {   /* don't send an invitation to myself! */
1694                                         snprintf(&attendees_string[strlen(attendees_string)],
1695                                                 sizeof(attendees_string) - strlen(attendees_string),
1696                                                 "%s, ",
1697                                                 this_attendee
1698                                         );
1699                                         ++num_attendees;
1700                                 }
1701                         }
1702                 }
1703         }
1704
1705         lprintf(CTDL_DEBUG, "<%d> attendees: <%s>\n", num_attendees, attendees_string);
1706
1707         /* If there are no attendees, there are no invitations to send, so...
1708          * don't bother putting one together!  Punch out, Maverick!
1709          */
1710         if (num_attendees == 0) {
1711                 icalcomponent_free(the_request);
1712                 return;
1713         }
1714
1715         /* Encapsulate the VEVENT component into a complete VCALENDAR */
1716         encaps = icalcomponent_new_vcalendar();
1717         if (encaps == NULL) {
1718                 lprintf(CTDL_DEBUG, "Error at %s:%d - could not allocate component!\n",
1719                         __FILE__, __LINE__);
1720                 icalcomponent_free(the_request);
1721                 return;
1722         }
1723
1724         /* Set the Product ID */
1725         icalcomponent_add_property(encaps, icalproperty_new_prodid(PRODID));
1726
1727         /* Set the Version Number */
1728         icalcomponent_add_property(encaps, icalproperty_new_version("2.0"));
1729
1730         /* Set the method to REQUEST */
1731         icalcomponent_set_method(encaps, ICAL_METHOD_REQUEST);
1732
1733         /* Now make sure all of the DTSTART and DTEND properties are UTC. */
1734         ical_dezonify(the_request);
1735
1736         /* Here we go: put the VEVENT into the VCALENDAR.  We now no longer
1737          * are responsible for "the_request"'s memory -- it will be freed
1738          * when we free "encaps".
1739          */
1740         icalcomponent_add_component(encaps, the_request);
1741
1742         /* Serialize it */
1743         serialized_request = strdup(icalcomponent_as_ical_string(encaps));
1744         icalcomponent_free(encaps);     /* Don't need this anymore. */
1745         if (serialized_request == NULL) return;
1746
1747         request_message_text = malloc(strlen(serialized_request) + SIZ);
1748         if (request_message_text != NULL) {
1749                 sprintf(request_message_text,
1750                         "Content-type: text/calendar\r\n\r\n%s\r\n",
1751                         serialized_request
1752                 );
1753
1754                 msg = CtdlMakeMessage(&CC->user,
1755                         "",                     /* No single recipient here */
1756                         "",                     /* No single recipient here */
1757                         CC->room.QRname, 0, FMT_RFC822,
1758                         "",
1759                         summary_string,         /* Use summary for subject */
1760                         NULL,
1761                         request_message_text);
1762         
1763                 if (msg != NULL) {
1764                         valid = validate_recipients(attendees_string);
1765                         CtdlSubmitMsg(msg, valid, "");
1766                         CtdlFreeMessage(msg);
1767                         free (valid);
1768                 }
1769         }
1770         free(serialized_request);
1771 }
1772
1773
1774 /*
1775  * When a calendar object is being saved, determine whether it's a VEVENT
1776  * and the user saving it is the organizer.  If so, send out invitations
1777  * to any listed attendees.
1778  *
1779  */
1780 void ical_saving_vevent(icalcomponent *cal) {
1781         icalcomponent *c;
1782         icalproperty *organizer = NULL;
1783         char organizer_string[SIZ];
1784
1785         lprintf(CTDL_DEBUG, "ical_saving_vevent() has been called!\n");
1786
1787         /* Don't send out invitations unless the client wants us to. */
1788         if (CIT_ICAL->server_generated_invitations == 0) {
1789                 return;
1790         }
1791
1792         /* Don't send out invitations if we've been asked not to. */
1793         if (CIT_ICAL->avoid_sending_invitations > 0) {
1794                 return;
1795         }
1796
1797         strcpy(organizer_string, "");
1798         /*
1799          * The VEVENT subcomponent is the one we're interested in.
1800          * Send out invitations if, and only if, this user is the Organizer.
1801          */
1802         if (icalcomponent_isa(cal) == ICAL_VEVENT_COMPONENT) {
1803                 organizer = icalcomponent_get_first_property(cal,
1804                                                 ICAL_ORGANIZER_PROPERTY);
1805                 if (organizer != NULL) {
1806                         if (icalproperty_get_organizer(organizer)) {
1807                                 strcpy(organizer_string,
1808                                         icalproperty_get_organizer(organizer));
1809                         }
1810                 }
1811                 if (!strncasecmp(organizer_string, "MAILTO:", 7)) {
1812                         strcpy(organizer_string, &organizer_string[7]);
1813                         striplt(organizer_string);
1814                         /*
1815                          * If the user saving the event is listed as the
1816                          * organizer, then send out invitations.
1817                          */
1818                         if (CtdlIsMe(organizer_string, sizeof organizer_string)) {
1819                                 ical_send_out_invitations(cal);
1820                         }
1821                 }
1822         }
1823
1824         /* If the component has subcomponents, recurse through them. */
1825         for (c = icalcomponent_get_first_component(cal, ICAL_ANY_COMPONENT);
1826             (c != NULL);
1827             c = icalcomponent_get_next_component(cal, ICAL_ANY_COMPONENT)) {
1828                 /* Recursively process subcomponent */
1829                 ical_saving_vevent(c);
1830         }
1831
1832 }
1833
1834
1835
1836 /*
1837  * Back end for ical_obj_beforesave()
1838  * This hunts for the UID of the calendar event (becomes Citadel msg EUID),
1839  * the summary of the event (becomes message subject),
1840  * and the start time (becomes message date/time).
1841  */
1842 void ical_ctdl_set_exclusive_msgid(char *name, char *filename, char *partnum,
1843                 char *disp, void *content, char *cbtype, char *cbcharset, size_t length,
1844                 char *encoding, void *cbuserdata)
1845 {
1846         icalcomponent *cal, *nested_event, *nested_todo, *whole_cal;
1847         icalproperty *p;
1848         struct icalmessagemod *imm;
1849         char new_uid[SIZ];
1850
1851         imm = (struct icalmessagemod *)cbuserdata;
1852
1853         /* We're only interested in calendar data. */
1854         if (strcasecmp(cbtype, "text/calendar")) {
1855                 return;
1856         }
1857
1858         /* Hunt for the UID and drop it in
1859          * the "user data" pointer for the MIME parser.  When
1860          * ical_obj_beforesave() sees it there, it'll set the Exclusive msgid
1861          * to that string.
1862          */
1863         whole_cal = icalcomponent_new_from_string(content);
1864         cal = whole_cal;
1865         if (cal != NULL) {
1866                 if (icalcomponent_isa(cal) == ICAL_VCALENDAR_COMPONENT) {
1867                         nested_event = icalcomponent_get_first_component(
1868                                 cal, ICAL_VEVENT_COMPONENT);
1869                         if (nested_event != NULL) {
1870                                 cal = nested_event;
1871                         }
1872                         else {
1873                                 nested_todo = icalcomponent_get_first_component(
1874                                         cal, ICAL_VTODO_COMPONENT);
1875                                 if (nested_todo != NULL) {
1876                                         cal = nested_todo;
1877                                 }
1878                         }
1879                 }
1880                 
1881                 if (cal != NULL) {
1882                         p = ical_ctdl_get_subprop(cal, ICAL_UID_PROPERTY);
1883                         if (p == NULL) {
1884                                 /* If there's no uid we must generate one */
1885                                 generate_uuid(new_uid);
1886                                 icalcomponent_add_property(cal, icalproperty_new_uid(new_uid));
1887                                 p = ical_ctdl_get_subprop(cal, ICAL_UID_PROPERTY);
1888                         }
1889                         if (p != NULL) {
1890                                 strcpy(imm->uid, icalproperty_get_comment(p));
1891                         }
1892                         p = ical_ctdl_get_subprop(cal, ICAL_SUMMARY_PROPERTY);
1893                         if (p != NULL) {
1894                                 strcpy(imm->subject, icalproperty_get_comment(p));
1895                         }
1896                         p = ical_ctdl_get_subprop(cal, ICAL_DTSTART_PROPERTY);
1897                         if (p != NULL) {
1898                                 imm->dtstart = icaltime_as_timet(icalproperty_get_dtstart(p));
1899                         }
1900                 }
1901                 icalcomponent_free(cal);
1902                 if (whole_cal != cal) {
1903                         icalcomponent_free(whole_cal);
1904                 }
1905         }
1906 }
1907
1908
1909
1910
1911 /*
1912  * See if we need to prevent the object from being saved (we don't allow
1913  * MIME types other than text/calendar in "calendar" or "tasks"  rooms).  Also,
1914  * when saving an event to the calendar, set the message's Citadel exclusive
1915  * message ID to the UID of the object.  This causes our replication checker to
1916  * automatically delete any existing instances of the same object.  (Isn't
1917  * that cool?)
1918  *
1919  * We also set the message's Subject to the event summary, and the Date/time to
1920  * the event start time.
1921  */
1922 int ical_obj_beforesave(struct CtdlMessage *msg)
1923 {
1924         struct icalmessagemod imm;
1925
1926         /* First determine if this is a calendar or tasks room */
1927         if (  (CC->room.QRdefaultview != VIEW_CALENDAR)
1928            && (CC->room.QRdefaultview != VIEW_TASKS)
1929         ) {
1930                 return(0);              /* Not a vCalendar-centric room */
1931         }
1932
1933         /* It must be an RFC822 message! */
1934         if (msg->cm_format_type != 4) {
1935                 lprintf(CTDL_DEBUG, "Rejecting non-RFC822 message\n");
1936                 return(1);              /* You tried to save a non-RFC822 message! */
1937         }
1938
1939         if (msg->cm_fields['M'] == NULL) {
1940                 return(1);              /* You tried to save a null message! */
1941         }
1942
1943         memset(&imm, 0, sizeof(struct icalmessagemod));
1944         
1945         /* Do all of our lovely back-end parsing */
1946         mime_parser(msg->cm_fields['M'],
1947                 NULL,
1948                 *ical_ctdl_set_exclusive_msgid,
1949                 NULL, NULL,
1950                 (void *)&imm,
1951                 0
1952         );
1953
1954         if (strlen(imm.uid) > 0) {
1955                 if (msg->cm_fields['E'] != NULL) {
1956                         free(msg->cm_fields['E']);
1957                 }
1958                 msg->cm_fields['E'] = strdup(imm.uid);
1959                 lprintf(CTDL_DEBUG, "Saving calendar UID <%s>\n", msg->cm_fields['E']);
1960         }
1961         if (strlen(imm.subject) > 0) {
1962                 if (msg->cm_fields['U'] != NULL) {
1963                         free(msg->cm_fields['U']);
1964                 }
1965                 msg->cm_fields['U'] = strdup(imm.subject);
1966         }
1967         if (imm.dtstart > 0) {
1968                 if (msg->cm_fields['T'] != NULL) {
1969                         free(msg->cm_fields['T']);
1970                 }
1971                 msg->cm_fields['T'] = strdup("000000000000000000");
1972                 sprintf(msg->cm_fields['T'], "%ld", imm.dtstart);
1973         }
1974
1975         return(0);
1976 }
1977
1978
1979 /*
1980  * Things we need to do after saving a calendar event.
1981  */
1982 void ical_obj_aftersave_backend(char *name, char *filename, char *partnum,
1983                 char *disp, void *content, char *cbtype, char *cbcharset, size_t length,
1984                 char *encoding, void *cbuserdata)
1985 {
1986         icalcomponent *cal;
1987
1988         /* We're only interested in calendar items here. */
1989         if (strcasecmp(cbtype, "text/calendar")) {
1990                 return;
1991         }
1992
1993         /* Hunt for the UID and drop it in
1994          * the "user data" pointer for the MIME parser.  When
1995          * ical_obj_beforesave() sees it there, it'll set the Exclusive msgid
1996          * to that string.
1997          */
1998         if (!strcasecmp(cbtype, "text/calendar")) {
1999                 cal = icalcomponent_new_from_string(content);
2000                 if (cal != NULL) {
2001                         ical_saving_vevent(cal);
2002                         icalcomponent_free(cal);
2003                 }
2004         }
2005 }
2006
2007
2008 /* 
2009  * Things we need to do after saving a calendar event.
2010  * (This will start back end tasks such as automatic generation of invitations,
2011  * if such actions are appropriate.)
2012  */
2013 int ical_obj_aftersave(struct CtdlMessage *msg)
2014 {
2015         char roomname[ROOMNAMELEN];
2016
2017         /*
2018          * If this isn't the Calendar> room, no further action is necessary.
2019          */
2020
2021         /* First determine if this is our room */
2022         MailboxName(roomname, sizeof roomname, &CC->user, USERCALENDARROOM);
2023         if (strcasecmp(roomname, CC->room.QRname)) {
2024                 return(0);      /* Not the Calendar room -- don't do anything. */
2025         }
2026
2027         /* It must be an RFC822 message! */
2028         if (msg->cm_format_type != 4) return(1);
2029
2030         /* Reject null messages */
2031         if (msg->cm_fields['M'] == NULL) return(1);
2032         
2033         /* Now recurse through it looking for our icalendar data */
2034         mime_parser(msg->cm_fields['M'],
2035                 NULL,
2036                 *ical_obj_aftersave_backend,
2037                 NULL, NULL,
2038                 NULL,
2039                 0
2040         );
2041
2042         return(0);
2043 }
2044
2045
2046 void ical_session_startup(void) {
2047         CIT_ICAL = malloc(sizeof(struct cit_ical));
2048         memset(CIT_ICAL, 0, sizeof(struct cit_ical));
2049 }
2050
2051 void ical_session_shutdown(void) {
2052         free(CIT_ICAL);
2053 }
2054
2055
2056 /*
2057  * Back end for ical_fixed_output()
2058  */
2059 void ical_fixed_output_backend(icalcomponent *cal,
2060                         int recursion_level
2061 ) {
2062         icalcomponent *c;
2063         icalproperty *p;
2064         char buf[256];
2065
2066         p = icalcomponent_get_first_property(cal, ICAL_SUMMARY_PROPERTY);
2067         if (p != NULL) {
2068                 cprintf("%s\n", (const char *)icalproperty_get_comment(p));
2069         }
2070
2071         p = icalcomponent_get_first_property(cal, ICAL_LOCATION_PROPERTY);
2072         if (p != NULL) {
2073                 cprintf("%s\n", (const char *)icalproperty_get_comment(p));
2074         }
2075
2076         p = icalcomponent_get_first_property(cal, ICAL_DESCRIPTION_PROPERTY);
2077         if (p != NULL) {
2078                 cprintf("%s\n", (const char *)icalproperty_get_comment(p));
2079         }
2080
2081         /* If the component has attendees, iterate through them. */
2082         for (p = icalcomponent_get_first_property(cal, ICAL_ATTENDEE_PROPERTY); (p != NULL); p = icalcomponent_get_next_property(cal, ICAL_ATTENDEE_PROPERTY)) {
2083                 safestrncpy(buf, icalproperty_get_attendee(p), sizeof buf);
2084                 if (!strncasecmp(buf, "MAILTO:", 7)) {
2085
2086                         /* screen name or email address */
2087                         strcpy(buf, &buf[7]);
2088                         striplt(buf);
2089                         cprintf("%s ", buf);
2090                 }
2091                 cprintf("\n");
2092         }
2093
2094         /* If the component has subcomponents, recurse through them. */
2095         for (c = icalcomponent_get_first_component(cal, ICAL_ANY_COMPONENT);
2096             (c != 0);
2097             c = icalcomponent_get_next_component(cal, ICAL_ANY_COMPONENT)) {
2098                 /* Recursively process subcomponent */
2099                 ical_fixed_output_backend(c, recursion_level+1);
2100         }
2101 }
2102
2103
2104
2105 /*
2106  * Function to output vcalendar data as plain text.  Nobody uses MSG0
2107  * anymore, so really this is just so we expose the vCard data to the full
2108  * text indexer.
2109  */
2110 void ical_fixed_output(char *ptr, int len) {
2111         icalcomponent *cal;
2112         char *stringy_cal;
2113
2114         stringy_cal = malloc(len + 1);
2115         safestrncpy(stringy_cal, ptr, len + 1);
2116         cal = icalcomponent_new_from_string(stringy_cal);
2117         free(stringy_cal);
2118
2119         if (cal == NULL) {
2120                 return;
2121         }
2122
2123         ical_dezonify(cal);
2124         ical_fixed_output_backend(cal, 0);
2125
2126         /* Free the memory we obtained from libical's constructor */
2127         icalcomponent_free(cal);
2128 }
2129
2130
2131 #endif  /* CITADEL_WITH_CALENDAR_SERVICE */
2132
2133 /*
2134  * Register this module with the Citadel server.
2135  */
2136 char *serv_calendar_init(void)
2137 {
2138 #ifdef CITADEL_WITH_CALENDAR_SERVICE
2139         CtdlRegisterMessageHook(ical_obj_beforesave, EVT_BEFORESAVE);
2140         CtdlRegisterMessageHook(ical_obj_aftersave, EVT_AFTERSAVE);
2141         CtdlRegisterSessionHook(ical_create_room, EVT_LOGIN);
2142         CtdlRegisterProtoHook(cmd_ical, "ICAL", "Citadel iCal commands");
2143         CtdlRegisterSessionHook(ical_session_startup, EVT_START);
2144         CtdlRegisterSessionHook(ical_session_shutdown, EVT_STOP);
2145         CtdlRegisterFixedOutputHook("text/calendar", ical_fixed_output);
2146 #endif
2147         return "$Id$";
2148 }
2149
2150
2151
2152 void serv_calendar_destroy(void)
2153 {
2154 #ifdef CITADEL_WITH_CALENDAR_SERVICE
2155         icaltimezone_free_builtin_timezones();
2156 #endif
2157 }