]> code.citadel.org Git - citadel.git/blob - webcit/calendar.c
* Tasks view is now pretty.
[citadel.git] / webcit / calendar.c
1 /*
2  * $Id$
3  *
4  * Functions which handle calendar objects and their processing/display.
5  *
6  */
7
8 #include <ctype.h>
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <fcntl.h>
13 #include <signal.h>
14 #include <sys/types.h>
15 #include <sys/wait.h>
16 #include <sys/socket.h>
17 #include <limits.h>
18 #include <netinet/in.h>
19 #include <netdb.h>
20 #include <string.h>
21 #include <pwd.h>
22 #include <errno.h>
23 #include <stdarg.h>
24 #include <pthread.h>
25 #include <signal.h>
26 #include <time.h>
27 #include "webcit.h"
28 #include "webserver.h"
29
30 #ifndef WEBCIT_WITH_CALENDAR_SERVICE
31
32 /*
33  * Handler stubs for builds with no calendar library available
34  */
35 void cal_process_attachment(char *part_source, long msgnum, char *cal_partnum) {
36
37         wprintf("<I>This message contains calendaring/scheduling information,"
38                 " but support for calendars is not available on this "
39                 "particular system.  Please ask your system administrator to "
40                 "install a new version of the Citadel web service with "
41                 "calendaring enabled.</I><BR>\n"
42         );
43
44 }
45
46 void display_calendar(long msgnum) {
47         wprintf("<i>"
48                 "Cannot display calendar item.  You are seeing this error "
49                 "because your WebCit service has not been installed with "
50                 "calendar support.  Please contact your system administrator."
51                 "</i><br>\n");
52 }
53
54 void display_task(long msgnum) {
55         wprintf("<i>"
56                 "Cannot display to-do item.  You are seeing this error "
57                 "because your WebCit service has not been installed with "
58                 "calendar support.  Please contact your system administrator."
59                 "</i><br>\n");
60 }
61
62 #else /* WEBCIT_WITH_CALENDAR_SERVICE */
63
64
65 /******   End of handler stubs.  Everything below this line is real.   ******/
66
67
68
69
70 /*
71  * Process a calendar object
72  * ...at this point it's already been deserialized by cal_process_attachment()
73  *
74  */
75 void cal_process_object(icalcomponent *cal,
76                         int recursion_level,
77                         long msgnum,
78                         char *cal_partnum
79 ) {
80         icalcomponent *c;
81         icalproperty *method = NULL;
82         icalproperty_method the_method = ICAL_METHOD_NONE;
83         icalproperty *p;
84         struct icaltimetype t;
85         time_t tt;
86         char buf[SIZ];
87         char conflict_name[SIZ];
88         int is_update = 0;
89
90         /* Leading HTML for the display of this object */
91         if (recursion_level == 0) {
92                 wprintf("<CENTER><TABLE border=0>\n");
93         }
94
95         /* Look for a method */
96         method = icalcomponent_get_first_property(cal, ICAL_METHOD_PROPERTY);
97
98         /* See what we need to do with this */
99         if (method != NULL) {
100                 the_method = icalproperty_get_method(method);
101                 switch(the_method) {
102                     case ICAL_METHOD_REQUEST:
103                         wprintf("<TR><TD COLSPAN=2>\n"
104                                 "<IMG ALIGN=CENTER "
105                                 "SRC=\"/static/vcalendar.gif\">"
106                                 "&nbsp;&nbsp;"  
107                                 "<B>Meeting invitation</B>"
108                                 "</TD></TR>\n"
109                         );
110                         break;
111                     case ICAL_METHOD_REPLY:
112                         wprintf("<TR><TD COLSPAN=2>\n"
113                                 "<IMG ALIGN=CENTER "
114                                 "SRC=\"/static/vcalendar.gif\">"
115                                 "&nbsp;&nbsp;"  
116                                 "<B>Attendee's reply to your invitation</B>"
117                                 "</TD></TR>\n"
118                         );
119                         break;
120                     case ICAL_METHOD_PUBLISH:
121                         wprintf("<TR><TD COLSPAN=2>\n"
122                                 "<IMG ALIGN=CENTER "
123                                 "SRC=\"/static/vcalendar.gif\">"
124                                 "&nbsp;&nbsp;"  
125                                 "<B>Published event</B>"
126                                 "</TD></TR>\n"
127                         );
128                         break;
129                     default:
130                         wprintf("<TR><TD COLSPAN=2>"
131                                 "I don't know what to do with this.</TD></TR>"
132                                 "\n");
133                         break;
134                 }
135         }
136
137         p = icalcomponent_get_first_property(cal, ICAL_SUMMARY_PROPERTY);
138         if (p != NULL) {
139                 wprintf("<TR><TD><B>Summary:</B></TD><TD>");
140                 escputs((char *)icalproperty_get_comment(p));
141                 wprintf("</TD></TR>\n");
142         }
143
144         p = icalcomponent_get_first_property(cal, ICAL_LOCATION_PROPERTY);
145         if (p != NULL) {
146                 wprintf("<TR><TD><B>Location:</B></TD><TD>");
147                 escputs((char *)icalproperty_get_comment(p));
148                 wprintf("</TD></TR>\n");
149         }
150
151         /*
152          * Only show start/end times if we're actually looking at the VEVENT
153          * component.  Otherwise it shows bogus dates for things like timezone.
154          */
155         if (icalcomponent_isa(cal) == ICAL_VEVENT_COMPONENT) {
156
157                 p = icalcomponent_get_first_property(cal,
158                                                 ICAL_DTSTART_PROPERTY);
159                 if (p != NULL) {
160                         t = icalproperty_get_dtstart(p);
161
162                         if (t.is_date) {
163                                 wprintf("<TR><TD><B>Date:"
164                                         "</B></TD><TD>"
165                                         "%s %d, %d</TD></TR>",
166                                         months[t.month - 1],
167                                         t.day, t.year
168                                 );
169                         }
170                         else {
171                                 tt = icaltime_as_timet(t);
172                                 fmt_date(buf, tt);
173                                 wprintf("<TR><TD><B>Starting date/time:"
174                                         "</B></TD><TD>"
175                                         "%s</TD></TR>", buf
176                                 );
177                         }
178                 }
179         
180                 p = icalcomponent_get_first_property(cal, ICAL_DTEND_PROPERTY);
181                 if (p != NULL) {
182                         t = icalproperty_get_dtend(p);
183                         tt = icaltime_as_timet(t);
184                         fmt_date(buf, tt);
185                         wprintf("<TR><TD><B>Ending date/time:</B></TD><TD>"
186                                 "%s</TD></TR>", buf
187                         );
188                 }
189
190         }
191
192         p = icalcomponent_get_first_property(cal, ICAL_DESCRIPTION_PROPERTY);
193         if (p != NULL) {
194                 wprintf("<TR><TD><B>Description:</B></TD><TD>");
195                 escputs((char *)icalproperty_get_comment(p));
196                 wprintf("</TD></TR>\n");
197         }
198
199         /* If the component has attendees, iterate through them. */
200         for (p = icalcomponent_get_first_property(cal, ICAL_ATTENDEE_PROPERTY); (p != NULL); p = icalcomponent_get_next_property(cal, ICAL_ATTENDEE_PROPERTY)) {
201                 wprintf("<TR><TD><B>Attendee:</B></TD><TD>");
202                 strcpy(buf, icalproperty_get_attendee(p));
203                 if (!strncasecmp(buf, "MAILTO:", 7)) {
204
205                         /* screen name or email address */
206                         strcpy(buf, &buf[7]);
207                         striplt(buf);
208                         escputs(buf);
209                         wprintf(" ");
210
211                         /* participant status */
212                         partstat_as_string(buf, p);
213                         escputs(buf);
214                 }
215                 wprintf("</TD></TR>\n");
216         }
217
218         /* If the component has subcomponents, recurse through them. */
219         for (c = icalcomponent_get_first_component(cal, ICAL_ANY_COMPONENT);
220             (c != 0);
221             c = icalcomponent_get_next_component(cal, ICAL_ANY_COMPONENT)) {
222                 /* Recursively process subcomponent */
223                 cal_process_object(c, recursion_level+1, msgnum, cal_partnum);
224         }
225
226         /* If this is a REQUEST, display conflicts and buttons */
227         if (the_method == ICAL_METHOD_REQUEST) {
228
229                 /* Check for conflicts */
230                 lprintf(9, "Checking server calendar for conflicts...\n");
231                 serv_printf("ICAL conflicts|%ld|%s|", msgnum, cal_partnum);
232                 serv_gets(buf);
233                 if (buf[0] == '1') {
234                         while (serv_gets(buf), strcmp(buf, "000")) {
235                                 extract(conflict_name, buf, 3);
236                                 is_update = extract_int(buf, 4);
237                                 wprintf("<TR><TD><B><I>%s</I></B></TD>"
238                                         "<TD>"
239                                         "%s "
240                                         "<I>&quot;",
241
242                                         (is_update ?
243                                                 "Update:" :
244                                                 "CONFLICT:"
245                                         ),
246
247                                         (is_update ?
248                                                 "This is an update of" :
249                                                 "This event would conflict with"
250                                         )
251                 
252                                 );
253                                 escputs(conflict_name);
254                                 wprintf("&quot;</I> "
255                                         "which is already in your calendar."
256                                         "</TD></TR>\n");
257                         }
258                 }
259                 lprintf(9, "...done.\n");
260
261                 /* Display the Accept/Decline buttons */
262                 wprintf("<TR><TD COLSPAN=2>"
263                         "<FORM METHOD=\"GET\" "
264                         "ACTION=\"/respond_to_request\">\n"
265                         "<INPUT TYPE=\"submit\" NAME=\"sc\" "
266                                 "VALUE=\"Accept\">\n"
267                         "&nbsp;&nbsp;"
268                         "<INPUT TYPE=\"submit\" NAME=\"sc\" "
269                                 "VALUE=\"Tentative\">\n"
270                         "&nbsp;&nbsp;"
271                         "<INPUT TYPE=\"submit\" NAME=\"sc\" "
272                                 "VALUE=\"Decline\">\n"
273                         "<INPUT TYPE=\"hidden\" NAME=\"msgnum\" "
274                                 "VALUE=\"%ld\">"
275                         "<INPUT TYPE=\"hidden\" NAME=\"cal_partnum\" "
276                                 "VALUE=\"%s\">"
277                         "</FORM>"
278                         "</TD></TR>\n",
279                         msgnum, cal_partnum
280                 );
281
282         }
283
284         /* If this is a REPLY, display update button */
285         if (the_method == ICAL_METHOD_REPLY) {
286
287                 /***********
288                  * In the future, if we want to validate this object before
289                  * continuing, we can do it this way:
290                 serv_printf("ICAL whatever|%ld|%s|", msgnum, cal_partnum);
291                 serv_gets(buf);
292                 }
293                  ***********/
294
295                 /* Display the update buttons */
296                 wprintf("<TR><TD COLSPAN=2>"
297                         "Click <i>Update</i> to accept this reply and "
298                         "update your calendar."
299                         "<FORM METHOD=\"GET\" "
300                         "ACTION=\"/handle_rsvp\">\n"
301                         "<INPUT TYPE=\"submit\" NAME=\"sc\" "
302                                 "VALUE=\"Update\">\n"
303                         "&nbsp;&nbsp;"
304                         "<INPUT TYPE=\"submit\" NAME=\"sc\" "
305                                 "VALUE=\"Ignore\">\n"
306                         "<INPUT TYPE=\"hidden\" NAME=\"msgnum\" "
307                                 "VALUE=\"%ld\">"
308                         "<INPUT TYPE=\"hidden\" NAME=\"cal_partnum\" "
309                                 "VALUE=\"%s\">"
310                         "</FORM>"
311                         "</TD></TR>\n",
312                         msgnum, cal_partnum
313                 );
314
315         }
316
317         /* Trailing HTML for the display of this object */
318         if (recursion_level == 0) {
319
320                 wprintf("</TR></TABLE></CENTER>\n");
321         }
322 }
323
324
325 /*
326  * Deserialize a calendar object in a message so it can be processed.
327  * (This is the main entry point for these things)
328  */
329 void cal_process_attachment(char *part_source, long msgnum, char *cal_partnum) {
330         icalcomponent *cal;
331
332         cal = icalcomponent_new_from_string(part_source);
333
334         if (cal == NULL) {
335                 wprintf("Error parsing calendar object<BR>\n");
336                 return;
337         }
338
339         ical_dezonify(cal);
340         cal_process_object(cal, 0, msgnum, cal_partnum);
341
342         /* Free the memory we obtained from libical's constructor */
343         icalcomponent_free(cal);
344 }
345
346
347
348
349 /*
350  * Respond to a meeting request
351  */
352 void respond_to_request(void) {
353         char buf[SIZ];
354
355         output_headers(3);
356
357         wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=\"#444455\"><TR><TD>"
358                 "<SPAN CLASS=\"titlebar\">Respond to meeting request</SPAN>"
359                 "</TD></TR></TABLE><BR>\n"
360         );
361
362         serv_printf("ICAL respond|%s|%s|%s|",
363                 bstr("msgnum"),
364                 bstr("cal_partnum"),
365                 bstr("sc")
366         );
367         serv_gets(buf);
368
369         if (buf[0] == '2') {
370                 wprintf("<TABLE BORDER=0><TR><TD>"
371                         "<IMG SRC=\"static/vcalendar.gif\" ALIGN=CENTER>"
372                         "</TD><TD>"
373                 );
374                 if (!strcasecmp(bstr("sc"), "accept")) {
375                         wprintf("You have accepted this meeting invitation.  "
376                                 "It has been entered into your calendar, "
377                         );
378                 } else if (!strcasecmp(bstr("sc"), "tentative")) {
379                         wprintf("You have tentatively accepted this meeting invitation.  "
380                                 "It has been 'pencilled in' to your calendar, "
381                         );
382                 } else if (!strcasecmp(bstr("sc"), "decline")) {
383                         wprintf("You have declined this meeting invitation.  "
384                                 "It has <b>not</b> been entered into your calendar, "
385                         );
386                 }
387                 wprintf("and a reply has been sent to the meeting organizer."
388                         "</TD></TR></TABLE>\n"
389                 );
390         } else {
391                 wprintf("<IMG SRC=\"static/error.gif\" ALIGN=CENTER>"
392                         "%s\n", &buf[4]);
393         }
394
395         wprintf("<A HREF=\"/dotskip?room=");
396         urlescputs(WC->wc_roomname);
397         wprintf("\"><BR>Return to messages</A><BR>\n");
398
399         wDumpContent(1);
400 }
401
402
403
404 /*
405  * Handle an incoming RSVP
406  */
407 void handle_rsvp(void) {
408         char buf[SIZ];
409
410         output_headers(3);
411
412         wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=\"#444455\"><TR><TD>"
413                 "<SPAN CLASS=\"titlebar\">"
414                 "Update your calendar with this RSVP</SPAN>"
415                 "</TD></TR></TABLE><BR>\n"
416         );
417
418         serv_printf("ICAL handle_rsvp|%s|%s|%s|",
419                 bstr("msgnum"),
420                 bstr("cal_partnum"),
421                 bstr("sc")
422         );
423         serv_gets(buf);
424
425         if (buf[0] == '2') {
426                 wprintf("<TABLE BORDER=0><TR><TD>"
427                         "<IMG SRC=\"static/vcalendar.gif\" ALIGN=CENTER>"
428                         "</TD><TD>"
429                 );
430                 if (!strcasecmp(bstr("sc"), "update")) {
431                         wprintf("Your calendar has been updated "
432                                 "to reflect this RSVP."
433                         );
434                 } else if (!strcasecmp(bstr("sc"), "ignore")) {
435                         wprintf("You have chosen to ignore this RSVP. "
436                                 "Your calendar has <b>not</b> been updated."
437                         );
438                 }
439                 wprintf("</TD></TR></TABLE>\n"
440                 );
441         } else {
442                 wprintf("<IMG SRC=\"static/error.gif\" ALIGN=CENTER>"
443                         "%s\n", &buf[4]);
444         }
445
446         wprintf("<A HREF=\"/dotskip?room=");
447         urlescputs(WC->wc_roomname);
448         wprintf("\"><BR>Return to messages</A><BR>\n");
449
450         wDumpContent(1);
451 }
452
453
454
455
456 /*****************************************************************************/
457
458
459
460 /*
461  * Display handlers for message reading
462  */
463
464
465
466 /*
467  * If we're reading calendar items, just store them for now.  We have to
468  * sort and re-output them later when we draw the calendar.
469  */
470 void display_individual_cal(icalcomponent *cal, long msgnum) {
471
472         WC->num_cal += 1;
473
474         WC->disp_cal = realloc(WC->disp_cal,
475                         (sizeof(struct disp_cal) * WC->num_cal) );
476         WC->disp_cal[WC->num_cal - 1].cal = icalcomponent_new_clone(cal);
477
478         WC->disp_cal[WC->num_cal - 1].cal_msgnum = msgnum;
479 }
480
481
482
483 /*
484  * Display a task by itself (for editing)
485  *
486  */
487 void display_edit_individual_task(icalcomponent *supplied_vtodo, long msgnum) {
488         icalcomponent *vtodo;
489         icalproperty *p;
490         struct icaltimetype t;
491         time_t now;
492         int created_new_vtodo = 0;
493
494         now = time(NULL);
495
496         if (supplied_vtodo != NULL) {
497                 vtodo = supplied_vtodo;
498
499                 /* If we're looking at a fully encapsulated VCALENDAR
500                  * rather than a VTODO component, attempt to use the first
501                  * relevant VTODO subcomponent.  If there is none, the
502                  * NULL returned by icalcomponent_get_first_component() will
503                  * tell the next iteration of this function to create a
504                  * new one.
505                  */
506                 if (icalcomponent_isa(vtodo) == ICAL_VCALENDAR_COMPONENT) {
507                         display_edit_individual_task(
508                                 icalcomponent_get_first_component(
509                                         vtodo, ICAL_VTODO_COMPONENT
510                                 ), msgnum
511                         );
512                         return;
513                 }
514         }
515         else {
516                 vtodo = icalcomponent_new(ICAL_VTODO_COMPONENT);
517                 created_new_vtodo = 1;
518         }
519
520         output_headers(3);
521         wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=\"#444455\"><TR><TD>"
522                 "<SPAN CLASS=\"titlebar\">Edit task</SPAN>"
523                 "</TD></TR></TABLE><BR>\n"
524         );
525         
526         do_template("beginbox_nt");
527
528         wprintf("<FORM METHOD=\"POST\" ACTION=\"/save_task\">\n");
529         wprintf("<INPUT TYPE=\"hidden\" NAME=\"msgnum\" VALUE=\"%ld\">\n",
530                 msgnum);
531
532         wprintf("<TABLE border=0>\n");
533
534         wprintf("<TR><TD>Summary:</TD><TD>"
535                 "<INPUT TYPE=\"text\" NAME=\"summary\" "
536                 "MAXLENGTH=\"64\" SIZE=\"64\" VALUE=\"");
537         p = icalcomponent_get_first_property(vtodo, ICAL_SUMMARY_PROPERTY);
538         if (p != NULL) {
539                 escputs((char *)icalproperty_get_comment(p));
540         }
541         wprintf("\"></TD></TR>\n");
542
543         wprintf("<TR><TD>Start date:</TD><TD>");
544         p = icalcomponent_get_first_property(vtodo, ICAL_DTSTART_PROPERTY);
545         if (p != NULL) {
546                 t = icalproperty_get_dtstart(p);
547         }
548         else {
549                 t = icaltime_from_timet(now, 0);
550         }
551         display_icaltimetype_as_webform(&t, "dtstart");
552         wprintf("</TD></TR>\n");
553
554         wprintf("<TR><TD>Due date:</TD><TD>");
555         p = icalcomponent_get_first_property(vtodo, ICAL_DUE_PROPERTY);
556         if (p != NULL) {
557                 t = icalproperty_get_due(p);
558         }
559         else {
560                 t = icaltime_from_timet(now, 0);
561         }
562         display_icaltimetype_as_webform(&t, "due");
563         wprintf("</TD></TR>\n");
564         wprintf("<TR><TD>Description:</TD><TD>");
565         wprintf("<TEXTAREA NAME=\"description\" wrap=soft "
566                 "ROWS=10 COLS=80 WIDTH=80>\n"
567         );
568         p = icalcomponent_get_first_property(vtodo, ICAL_DESCRIPTION_PROPERTY);
569         if (p != NULL) {
570                 escputs((char *)icalproperty_get_comment(p));
571         }
572         wprintf("</TEXTAREA></TD></TR></TABLE>\n");
573
574         wprintf("<CENTER>"
575                 "<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"Save\">"
576                 "&nbsp;&nbsp;"
577                 "<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"Delete\">\n"
578                 "&nbsp;&nbsp;"
579                 "<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"Cancel\">\n"
580                 "</CENTER>\n"
581         );
582
583         wprintf("</FORM>\n");
584
585         do_template("endbox");
586         wDumpContent(1);
587
588         if (created_new_vtodo) {
589                 icalcomponent_free(vtodo);
590         }
591 }
592
593 /*
594  * Save an edited task
595  *
596  */
597 void save_individual_task(icalcomponent *supplied_vtodo, long msgnum) {
598         char buf[SIZ];
599         int delete_existing = 0;
600         icalproperty *prop;
601         icalcomponent *vtodo;
602         int created_new_vtodo = 0;
603
604         if (supplied_vtodo != NULL) {
605                 vtodo = supplied_vtodo;
606                 /* If we're looking at a fully encapsulated VCALENDAR
607                  * rather than a VTODO component, attempt to use the first
608                  * relevant VTODO subcomponent.  If there is none, the
609                  * NULL returned by icalcomponent_get_first_component() will
610                  * tell the next iteration of this function to create a
611                  * new one.
612                  */
613                 if (icalcomponent_isa(vtodo) == ICAL_VCALENDAR_COMPONENT) {
614                         save_individual_task(
615                                 icalcomponent_get_first_component(
616                                         vtodo, ICAL_VTODO_COMPONENT
617                                 ), msgnum
618                         );
619                         return;
620                 }
621         }
622         else {
623                 vtodo = icalcomponent_new(ICAL_VTODO_COMPONENT);
624                 created_new_vtodo = 1;
625         }
626
627         if (!strcasecmp(bstr("sc"), "Save")) {
628
629                 /* Replace values in the component with ones from the form */
630
631                 while (prop = icalcomponent_get_first_property(vtodo,
632                       ICAL_SUMMARY_PROPERTY), prop != NULL) {
633                         icalcomponent_remove_property(vtodo, prop);
634                         icalproperty_free(prop);
635                 }
636                 icalcomponent_add_property(vtodo,
637                         icalproperty_new_summary(bstr("summary")));
638                 
639                 while (prop = icalcomponent_get_first_property(vtodo,
640                       ICAL_DESCRIPTION_PROPERTY), prop != NULL) {
641                         icalcomponent_remove_property(vtodo, prop);
642                         icalproperty_free(prop);
643                 }
644                 icalcomponent_add_property(vtodo,
645                         icalproperty_new_description(bstr("description")));
646         
647                 while (prop = icalcomponent_get_first_property(vtodo,
648                       ICAL_DTSTART_PROPERTY), prop != NULL) {
649                         icalcomponent_remove_property(vtodo, prop);
650                         icalproperty_free(prop);
651                 }
652                 icalcomponent_add_property(vtodo,
653                         icalproperty_new_dtstart(
654                                 icaltime_from_webform("dtstart")
655                         )
656                 );
657         
658                 while (prop = icalcomponent_get_first_property(vtodo,
659                       ICAL_DUE_PROPERTY), prop != NULL) {
660                         icalcomponent_remove_property(vtodo, prop);
661                         icalproperty_free(prop);
662                 }
663                 icalcomponent_add_property(vtodo,
664                         icalproperty_new_due(
665                                 icaltime_from_webform("due")
666                         )
667                 );
668         
669                 /* Serialize it and save it to the message base */
670                 serv_puts("ENT0 1|||4");
671                 serv_gets(buf);
672                 if (buf[0] == '4') {
673                         serv_puts("Content-type: text/calendar");
674                         serv_puts("");
675                         serv_puts(icalcomponent_as_ical_string(vtodo));
676                         serv_puts("000");
677
678                         /* Probably not necessary; the server will see the UID
679                          * of the object and delete the old one anyway, but
680                          * just in case...
681                          */
682                         delete_existing = 1;
683                 }
684         }
685
686         /*
687          * If the user clicked 'Delete' then explicitly delete the message.
688          */
689         if (!strcasecmp(bstr("sc"), "Delete")) {
690                 delete_existing = 1;
691         }
692
693         if ( (delete_existing) && (msgnum > 0L) ) {
694                 serv_printf("DELE %ld", atol(bstr("msgnum")));
695                 serv_gets(buf);
696         }
697
698         if (created_new_vtodo) {
699                 icalcomponent_free(vtodo);
700         }
701
702         /* Go back to the task list */
703         readloop("readfwd");
704 }
705
706
707
708 /*
709  * Code common to all display handlers.  Given a message number and a MIME
710  * type, we load the message and hunt for that MIME type.  If found, we load
711  * the relevant part, deserialize it into a libical component, filter it for
712  * the requested object type, and feed it to the specified handler.
713  *
714  */
715 void display_using_handler(long msgnum,
716                         char *mimetype,
717                         icalcomponent_kind which_kind,
718                         void (*callback)(icalcomponent *, long)
719         ) {
720         char buf[SIZ];
721         char mime_partnum[SIZ];
722         char mime_filename[SIZ];
723         char mime_content_type[SIZ];
724         char mime_disposition[SIZ];
725         int mime_length;
726         char relevant_partnum[SIZ];
727         char *relevant_source = NULL;
728         icalcomponent *cal, *c;
729
730         sprintf(buf, "MSG0 %ld|1", msgnum);     /* ask for headers only */
731         serv_puts(buf);
732         serv_gets(buf);
733         if (buf[0] != '1') return;
734
735         while (serv_gets(buf), strcmp(buf, "000")) {
736                 if (!strncasecmp(buf, "part=", 5)) {
737                         extract(mime_filename, &buf[5], 1);
738                         extract(mime_partnum, &buf[5], 2);
739                         extract(mime_disposition, &buf[5], 3);
740                         extract(mime_content_type, &buf[5], 4);
741                         mime_length = extract_int(&buf[5], 5);
742
743                         if (!strcasecmp(mime_content_type, "text/calendar")) {
744                                 strcpy(relevant_partnum, mime_partnum);
745                         }
746
747                 }
748         }
749
750         if (strlen(relevant_partnum) > 0) {
751                 relevant_source = load_mimepart(msgnum, relevant_partnum);
752                 if (relevant_source != NULL) {
753
754                         cal = icalcomponent_new_from_string(relevant_source);
755                         if (cal != NULL) {
756
757                                 ical_dezonify(cal);
758
759                                 /* Simple components of desired type */
760                                 if (icalcomponent_isa(cal) == which_kind) {
761                                         callback(cal, msgnum);
762                                 }
763
764                                 /* Subcomponents of desired type */
765                                 for (c = icalcomponent_get_first_component(cal,
766                                     which_kind);
767                                     (c != 0);
768                                     c = icalcomponent_get_next_component(cal,
769                                     which_kind)) {
770                                         callback(c, msgnum);
771                                 }
772                                 icalcomponent_free(cal);
773                         }
774                         free(relevant_source);
775                 }
776         }
777
778 }
779
780 void display_calendar(long msgnum) {
781         display_using_handler(msgnum, "text/calendar",
782                                 ICAL_VEVENT_COMPONENT,
783                                 display_individual_cal);
784 }
785
786 void display_task(long msgnum) {
787         display_using_handler(msgnum, "text/calendar",
788                                 ICAL_VTODO_COMPONENT,
789                                 display_individual_cal);
790 }
791
792 void display_edit_task(void) {
793         long msgnum = 0L;
794
795         /* Force change the room if we have to */
796         if (strlen(bstr("taskrm")) > 0) {
797                 gotoroom(bstr("taskrm"), 0);
798         }
799
800         msgnum = atol(bstr("msgnum"));
801         if (msgnum > 0L) {
802                 /* existing task */
803                 display_using_handler(msgnum, "text/calendar",
804                                 ICAL_VTODO_COMPONENT,
805                                 display_edit_individual_task);
806         }
807         else {
808                 /* new task */
809                 display_edit_individual_task(NULL, 0L);
810         }
811 }
812
813 void save_task(void) {
814         long msgnum = 0L;
815
816         msgnum = atol(bstr("msgnum"));
817         if (msgnum > 0L) {
818                 display_using_handler(msgnum, "text/calendar",
819                                 ICAL_VTODO_COMPONENT,
820                                 save_individual_task);
821         }
822         else {
823                 save_individual_task(NULL, 0L);
824         }
825 }
826
827 void display_edit_event(void) {
828         long msgnum = 0L;
829
830         msgnum = atol(bstr("msgnum"));
831         if (msgnum > 0L) {
832                 /* existing event */
833                 display_using_handler(msgnum, "text/calendar",
834                                 ICAL_VEVENT_COMPONENT,
835                                 display_edit_individual_event);
836         }
837         else {
838                 /* new event */
839                 display_edit_individual_event(NULL, 0L);
840         }
841 }
842
843 void save_event(void) {
844         long msgnum = 0L;
845
846         msgnum = atol(bstr("msgnum"));
847
848         if (msgnum > 0L) {
849                 display_using_handler(msgnum, "text/calendar",
850                                 ICAL_VEVENT_COMPONENT,
851                                 save_individual_event);
852         }
853         else {
854                 save_individual_event(NULL, 0L);
855         }
856 }
857
858
859
860
861
862 /*
863  * freebusy display (for client software)
864  */
865 void do_freebusy(char *req) {
866         char who[SIZ];
867         char buf[SIZ];
868         char *fb;
869
870         extract_token(who, req, 1, ' ');
871         if (!strncasecmp(who, "/freebusy/", 10)) {
872                 strcpy(who, &who[10]);
873         }
874         unescape_input(who);
875
876         if ( (!strcasecmp(&who[strlen(who)-4], ".vcf"))
877            || (!strcasecmp(&who[strlen(who)-4], ".vfb")) ) {
878                 who[strlen(who)-4] = 0;
879         }
880
881         lprintf(9, "freebusy requested for <%s>\n", who);
882         serv_printf("ICAL freebusy|%s", who);
883         serv_gets(buf);
884
885         if (buf[0] != '1') {
886                 wprintf("HTTP/1.0 404 %s\n", &buf[4]);
887                 output_headers(0);
888                 wprintf("Content-Type: text/plain\n");
889                 wprintf("\n");
890                 wprintf("%s\n", &buf[4]);
891                 return;
892         }
893
894         fb = read_server_text();
895         http_transmit_thing(fb, strlen(fb), "text/calendar", 0);
896         free(fb);
897 }
898
899
900
901 #endif /* WEBCIT_WITH_CALENDAR_SERVICE */