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