* init time with NOW in our default timezone.
[citadel.git] / webcit / calendar.c
1 /*
2  * $Id$
3  *
4  * Functions which handle calendar objects and their processing/display.
5  */
6
7 #include "webcit.h"
8 #include "webserver.h"
9
10
11 /*
12  * \brief Process a calendar object
13  * ...at this point it's already been deserialized by cal_process_attachment()
14  * \param cal the calendar object
15  * \param recursion_level call stack depth ??????
16  * \param msgnum number of the mesage in our db
17  * \param cal_partnum of the calendar object ???? 
18  */
19 void cal_process_object(icalcomponent *cal,
20                         int recursion_level,
21                         long msgnum,
22                         char *cal_partnum) 
23 {
24         icalcomponent *c;
25         icalproperty *method = NULL;
26         icalproperty_method the_method = ICAL_METHOD_NONE;
27         icalproperty *p;
28         struct icaltimetype t;
29         time_t tt;
30         char buf[256];
31         char conflict_name[256];
32         char conflict_message[256];
33         int is_update = 0;
34         char divname[32];
35         static int divcount = 0;
36
37         sprintf(divname, "rsvp%04x", ++divcount);
38
39         /** Leading HTML for the display of this object */
40         if (recursion_level == 0) {
41                 wprintf("<div class=\"mimepart\">\n");
42         }
43
44         /** Look for a method */
45         method = icalcomponent_get_first_property(cal, ICAL_METHOD_PROPERTY);
46
47         /** See what we need to do with this */
48         if (method != NULL) {
49                 the_method = icalproperty_get_method(method);
50                 char *title;
51
52                 wprintf("<div id=\"%s_title\">", divname);
53                 wprintf("<img src=\"static/calarea_48x.gif\">");
54                 wprintf("<span>");
55                 switch(the_method) {
56                 case ICAL_METHOD_REQUEST:
57                         title = _("Meeting invitation");
58                         break;
59                 case ICAL_METHOD_REPLY:
60                         title = _("Attendee's reply to your invitation");
61                         break;
62                 case ICAL_METHOD_PUBLISH:
63                         title = _("Published event");
64                         break;
65                 default:
66                         title = _("This is an unknown type of calendar item.");
67                         break;
68                 }
69                 wprintf("</span>");
70
71                 wprintf("&nbsp;&nbsp;%s",title);
72                 wprintf("</div>");
73         }
74
75         wprintf("<dl>");
76         p = icalcomponent_get_first_property(cal, ICAL_SUMMARY_PROPERTY);
77         if (p != NULL) {
78                 wprintf("<dt>");
79                 wprintf(_("Summary:"));
80                 wprintf("</dt><dd>");
81                 escputs((char *)icalproperty_get_comment(p));
82                 wprintf("</dd>\n");
83         }
84
85         p = icalcomponent_get_first_property(cal, ICAL_LOCATION_PROPERTY);
86         if (p != NULL) {
87                 wprintf("<dt>");
88                 wprintf(_("Location:"));
89                 wprintf("</dt><dd>");
90                 escputs((char *)icalproperty_get_comment(p));
91                 wprintf("</dd>\n");
92         }
93
94         /**
95          * Only show start/end times if we're actually looking at the VEVENT
96          * component.  Otherwise it shows bogus dates for things like timezone.
97          */
98         if (icalcomponent_isa(cal) == ICAL_VEVENT_COMPONENT) {
99
100                 p = icalcomponent_get_first_property(cal,
101                                                      ICAL_DTSTART_PROPERTY);
102                 if (p != NULL) {
103                         t = icalproperty_get_dtstart(p);
104
105                         if (t.is_date) {
106                                 struct tm d_tm;
107                                 char d_str[32];
108                                 memset(&d_tm, 0, sizeof d_tm);
109                                 d_tm.tm_year = t.year - 1900;
110                                 d_tm.tm_mon = t.month - 1;
111                                 d_tm.tm_mday = t.day;
112                                 wc_strftime(d_str, sizeof d_str, "%x", &d_tm);
113                                 wprintf("<dt>");
114                                 wprintf(_("Date:"));
115                                 wprintf("</dt><dd>%s</dd>", d_str);
116                         }
117                         else {
118                                 tt = icaltime_as_timet(t);
119                                 webcit_fmt_date(buf, tt, 0);
120                                 wprintf("<dt>");
121                                 wprintf(_("Starting date/time:"));
122                                 wprintf("</dt><dd>%s</dd>", buf);
123                         }
124                 }
125         
126                 p = icalcomponent_get_first_property(cal, ICAL_DTEND_PROPERTY);
127                 if (p != NULL) {
128                         t = icalproperty_get_dtend(p);
129                         tt = icaltime_as_timet(t);
130                         webcit_fmt_date(buf, tt, 0);
131                         wprintf("<dt>");
132                         wprintf(_("Ending date/time:"));
133                         wprintf("</dt><dd>%s</dd>", buf);
134                 }
135
136         }
137
138         p = icalcomponent_get_first_property(cal, ICAL_DESCRIPTION_PROPERTY);
139         if (p != NULL) {
140                 wprintf("<dt>");
141                 wprintf(_("Description:"));
142                 wprintf("</dt><dd>");
143                 escputs((char *)icalproperty_get_comment(p));
144                 wprintf("</dd>\n");
145         }
146
147         /** If the component has attendees, iterate through them. */
148         for (p = icalcomponent_get_first_property(cal, ICAL_ATTENDEE_PROPERTY); 
149              (p != NULL); 
150              p = icalcomponent_get_next_property(cal, ICAL_ATTENDEE_PROPERTY)) {
151                 wprintf("<dt>");
152                 wprintf(_("Attendee:"));
153                 wprintf("</dt><dd>");
154                 safestrncpy(buf, icalproperty_get_attendee(p), sizeof buf);
155                 if (!strncasecmp(buf, "MAILTO:", 7)) {
156
157                         /** screen name or email address */
158                         strcpy(buf, &buf[7]);
159                         striplt(buf);
160                         escputs(buf);
161                         wprintf(" ");
162
163                         /** participant status */
164                         partstat_as_string(buf, p);
165                         escputs(buf);
166                 }
167                 wprintf("</dd>\n");
168         }
169
170         /** If the component has subcomponents, recurse through them. */
171         for (c = icalcomponent_get_first_component(cal, ICAL_ANY_COMPONENT);
172              (c != 0);
173              c = icalcomponent_get_next_component(cal, ICAL_ANY_COMPONENT)) {
174                 /* Recursively process subcomponent */
175                 cal_process_object(c, recursion_level+1, msgnum, cal_partnum);
176         }
177
178         /** If this is a REQUEST, display conflicts and buttons */
179         if (the_method == ICAL_METHOD_REQUEST) {
180
181                 /* Check for conflicts */
182                 lprintf(9, "Checking server calendar for conflicts...\n");
183                 serv_printf("ICAL conflicts|%ld|%s|", msgnum, cal_partnum);
184                 serv_getln(buf, sizeof buf);
185                 if (buf[0] == '1') {
186                         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
187                                 extract_token(conflict_name, buf, 3, '|', sizeof conflict_name);
188                                 is_update = extract_int(buf, 4);
189
190                                 if (is_update) {
191                                         snprintf(conflict_message, sizeof conflict_message,
192                                                  _("This is an update of '%s' which is already in your calendar."), conflict_name);
193                                 }
194                                 else {
195                                         snprintf(conflict_message, sizeof conflict_message,
196                                                  _("This event would conflict with '%s' which is already in your calendar."), conflict_name);
197                                 }
198
199                                 wprintf("<dt>%s",
200                                         (is_update ?
201                                          _("Update:") :
202                                          _("CONFLICT:")
203                                                 )
204                                         );
205                                 wprintf("</dt><dd>");
206                                 escputs(conflict_message);
207                                 wprintf("</dd>\n");
208                         }
209                 }
210                 lprintf(9, "...done.\n");
211
212                 wprintf("</dl>");
213
214                 /** Display the Accept/Decline buttons */
215                 wprintf("<p id=\"%s_question\">"
216                         "%s "
217                         "&nbsp;&nbsp;&nbsp;<span class=\"button_link\"> "
218                         "<a href=\"javascript:RespondToInvitation('%s_question','%s_title','%ld','%s','Accept');\">%s</a>"
219                         "</span>&nbsp;&nbsp;&nbsp;<span class=\"button_link\">"
220                         "<a href=\"javascript:RespondToInvitation('%s_question','%s_title','%ld','%s','Tentative');\">%s</a>"
221                         "</span>&nbsp;&nbsp;&nbsp;<span class=\"button_link\">"
222                         "<a href=\"javascript:RespondToInvitation('%s_question','%s_title','%ld','%s','Decline');\">%s</a>"
223                         "</span></p>\n",
224                         divname,
225                         _("How would you like to respond to this invitation?"),
226                         divname, divname, msgnum, cal_partnum, _("Accept"),
227                         divname, divname, msgnum, cal_partnum, _("Tentative"),
228                         divname, divname, msgnum, cal_partnum, _("Decline")
229                         );
230
231         }
232
233         /** If this is a REPLY, display update button */
234         if (the_method == ICAL_METHOD_REPLY) {
235
236                 /** \todo  In the future, if we want to validate this object before \
237                  * continuing, we can do it this way:
238                  serv_printf("ICAL whatever|%ld|%s|", msgnum, cal_partnum);
239                  serv_getln(buf, sizeof buf);
240                  }
241                 ***********/
242
243                 /** Display the update buttons */
244                 wprintf("<p id=\"%s_question\" >"
245                         "%s "
246                         "&nbsp;&nbsp;&nbsp;<span class=\"button_link\"> "
247                         "<a href=\"javascript:HandleRSVP('%s_question','%s_title','%ld','%s','Update');\">%s</a>"
248                         "</span>&nbsp;&nbsp;&nbsp;<span class=\"button_link\">"
249                         "<a href=\"javascript:HandleRSVP('%s_question','%s_title','%ld','%s','Ignore');\">%s</a>"
250                         "</span></p>\n",
251                         divname,
252                         _("Click <i>Update</i> to accept this reply and update your calendar."),
253                         divname, divname, msgnum, cal_partnum, _("Update"),
254                         divname, divname, msgnum, cal_partnum, _("Ignore")
255                         );
256         
257         }
258         
259         /** Trailing HTML for the display of this object */
260         if (recursion_level == 0) {
261                 wprintf("<p>&nbsp;</p></div>\n");
262         }
263 }
264
265
266 /**
267  * \brief process calendar mail atachment
268  * Deserialize a calendar object in a message so it can be processed.
269  * (This is the main entry point for these things)
270  * \param part_source the part of the message we want to parse
271  * \param msgnum number of the mesage in our db
272  * \param cal_partnum the number of the calendar item
273  */
274 void cal_process_attachment(char *part_source, long msgnum, char *cal_partnum) 
275 {
276         icalcomponent *cal;
277
278         cal = icalcomponent_new_from_string(part_source);
279
280         if (cal == NULL) {
281                 wprintf(_("There was an error parsing this calendar item."));
282                 wprintf("<br />\n");
283                 return;
284         }
285
286         ical_dezonify(cal);
287         cal_process_object(cal, 0, msgnum, cal_partnum);
288
289         /* Free the memory we obtained from libical's constructor */
290         icalcomponent_free(cal);
291 }
292
293
294
295
296 /**
297  * \brief accept/decline meeting
298  * Respond to a meeting request
299  */
300 void respond_to_request(void) 
301 {
302         char buf[1024];
303
304         begin_ajax_response();
305
306         serv_printf("ICAL respond|%s|%s|%s|",
307                 bstr("msgnum"),
308                 bstr("cal_partnum"),
309                 bstr("sc")
310         );
311         serv_getln(buf, sizeof buf);
312
313         if (buf[0] == '2') {
314                 wprintf("<img src=\"static/calarea_48x.gif\"><span>");
315                 if (!strcasecmp(bstr("sc"), "accept")) {
316                         wprintf(_("You have accepted this meeting invitation.  "
317                                 "It has been entered into your calendar.")
318                         );
319                 } else if (!strcasecmp(bstr("sc"), "tentative")) {
320                         wprintf(_("You have tentatively accepted this meeting invitation.  "
321                                 "It has been 'pencilled in' to your calendar.")
322                         );
323                 } else if (!strcasecmp(bstr("sc"), "decline")) {
324                         wprintf(_("You have declined this meeting invitation.  "
325                                   "It has <b>not</b> been entered into your calendar.")
326                                 );
327                 }
328                 wprintf(" ");
329                 wprintf(_("A reply has been sent to the meeting organizer."));
330                 wprintf("</span>");
331         } else {
332                 wprintf("<img align=\"center\" src=\"static/error.gif\"><span>");
333                 wprintf("%s\n", &buf[4]);
334                 wprintf("</span>");
335         }
336
337         end_ajax_response();
338 }
339
340
341
342 /**
343  * \brief Handle an incoming RSVP
344  */
345 void handle_rsvp(void) 
346 {
347         char buf[1024];
348
349         begin_ajax_response();
350
351         serv_printf("ICAL handle_rsvp|%s|%s|%s|",
352                 bstr("msgnum"),
353                 bstr("cal_partnum"),
354                 bstr("sc")
355         );
356         serv_getln(buf, sizeof buf);
357
358         if (buf[0] == '2') {
359                 wprintf("<img src=\"static/calarea_48x.gif\"><span>");
360                 if (!strcasecmp(bstr("sc"), "update")) {
361                         wprintf(_("Your calendar has been updated to reflect this RSVP."));
362                 } else if (!strcasecmp(bstr("sc"), "ignore")) {
363                         wprintf(_("You have chosen to ignore this RSVP. "
364                                   "Your calendar has <b>not</b> been updated.")
365                                 );
366                 }
367                 wprintf("</span>");
368         } else {
369                 wprintf("<img src=\"static/error.gif\"><span> %s\n", &buf[4]);
370                 wprintf("</span>");
371         }
372
373         end_ajax_response();
374 }
375
376
377
378 /*@}*/
379 /*-----------------------------------------------------------------------**/
380
381
382
383 /**
384  * \defgroup MsgDisplayHandlers Display handlers for message reading 
385  * \ingroup Calendaring
386  */
387
388 /*@{*/
389
390
391
392 /**
393  * \brief get items, keep them.
394  * If we're reading calendar items, just store them for now.  We have to
395  * sort and re-output them later when we draw the calendar.
396  * \param cal Our calendar to process
397  * \param msgnum number of the mesage in our db
398  */
399 void display_individual_cal(icalcomponent *cal, long msgnum, char *from, int unread)
400 {
401         struct wcsession *WCC = WC;     /* stack this for faster access (WC is a function) */
402
403         WCC->num_cal += 1;
404         WCC->disp_cal = realloc(WC->disp_cal, (sizeof(struct disp_cal) * WCC->num_cal) );
405         WCC->disp_cal[WCC->num_cal - 1].cal = icalcomponent_new_clone(cal);
406         WCC->disp_cal[WCC->num_cal - 1].unread = unread;
407         WCC->disp_cal[WCC->num_cal - 1].from = malloc (strlen(from) + 1);
408         strcpy (WCC->disp_cal[WCC->num_cal - 1].from, from);
409         ical_dezonify(WCC->disp_cal[WCC->num_cal - 1].cal);
410         WCC->disp_cal[WCC->num_cal - 1].cal_msgnum = msgnum;
411 }
412
413
414
415 /**
416  * \brief edit a task
417  * Display a task by itself (for editing)
418  * \param supplied_vtodo the todo item we want to edit
419  * \param msgnum number of the mesage in our db
420  */
421 void display_edit_individual_task(icalcomponent *supplied_vtodo, long msgnum, char *from, int unread) 
422 {
423         icalcomponent *vtodo;
424         icalproperty *p;
425         struct icaltimetype IcalTime;
426         time_t now;
427         int created_new_vtodo = 0;
428         icalproperty_status todoStatus;
429
430         now = time(NULL);
431
432         if (supplied_vtodo != NULL) {
433                 vtodo = supplied_vtodo;
434
435                 /**
436                  * If we're looking at a fully encapsulated VCALENDAR
437                  * rather than a VTODO component, attempt to use the first
438                  * relevant VTODO subcomponent.  If there is none, the
439                  * NULL returned by icalcomponent_get_first_component() will
440                  * tell the next iteration of this function to create a
441                  * new one.
442                  */
443                 if (icalcomponent_isa(vtodo) == ICAL_VCALENDAR_COMPONENT) {
444                         display_edit_individual_task(
445                                 icalcomponent_get_first_component(
446                                         vtodo, ICAL_VTODO_COMPONENT
447                                         ), 
448                                 msgnum,
449                                 from, unread
450                                 );
451                         return;
452                 }
453         }
454         else {
455                 vtodo = icalcomponent_new(ICAL_VTODO_COMPONENT);
456                 created_new_vtodo = 1;
457         }
458         
459         // TODO: Can we take all this and move it into a template?      
460         output_headers(1, 1, 1, 0, 0, 0);
461         wprintf("<!-- start task edit form -->");
462         p = icalcomponent_get_first_property(vtodo, ICAL_SUMMARY_PROPERTY);
463         // Get summary early for title
464         wprintf("<div class=\"box\">\n");
465         wprintf("<div class=\"boxlabel\">");
466         wprintf(_("Edit task"));
467         wprintf("- ");
468         if (p != NULL) {
469                 escputs((char *)icalproperty_get_comment(p));
470         }
471         wprintf("</div>");
472         
473         wprintf("<div class=\"boxcontent\">\n");
474         wprintf("<FORM METHOD=\"POST\" action=\"save_task\">\n");
475         wprintf("<div style=\"display: none;\">\n       ");
476         wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%ld\">\n", WC->nonce);
477         wprintf("<INPUT TYPE=\"hidden\" NAME=\"msgnum\" VALUE=\"%ld\">\n",
478                 msgnum);
479         wprintf("</div>");
480         wprintf("<table class=\"calendar_background\"><tr><td>");
481         wprintf("<TABLE STYLE=\"border: none;\">\n");
482
483         wprintf("<TR><TD>");
484         wprintf(_("Summary:"));
485         wprintf("</TD><TD>"
486                 "<INPUT TYPE=\"text\" NAME=\"summary\" "
487                 "MAXLENGTH=\"64\" SIZE=\"64\" VALUE=\"");
488         p = icalcomponent_get_first_property(vtodo, ICAL_SUMMARY_PROPERTY);
489         if (p != NULL) {
490                 escputs((char *)icalproperty_get_comment(p));
491         }
492         wprintf("\"></TD></TR>\n");
493
494         wprintf("<TR><TD>");
495         wprintf(_("Start date:"));
496         wprintf("</TD><TD>");
497         p = icalcomponent_get_first_property(vtodo, ICAL_DTSTART_PROPERTY);
498         wprintf("<INPUT TYPE=\"CHECKBOX\" NAME=\"nodtstart\" ID=\"nodtstart\" VALUE=\"NODTSTART\" ");
499         if (p == NULL) {
500                 wprintf("CHECKED=\"CHECKED\"");
501         }
502         wprintf(">");
503         wprintf(_("No date"));
504         
505         wprintf(" ");
506         wprintf(_("or"));
507         wprintf(" ");
508         if (p != NULL) {
509                 IcalTime = icalproperty_get_dtstart(p);
510         }
511         else
512                 IcalTime = icaltime_current_time_with_zone(get_default_icaltimezone());
513         display_icaltimetype_as_webform(&IcalTime, "dtstart");
514         wprintf("</TD></TR>\n");
515
516         wprintf("<TR><TD>");
517         wprintf(_("Due date:"));
518         wprintf("</TD><TD>");
519         p = icalcomponent_get_first_property(vtodo, ICAL_DUE_PROPERTY);
520         wprintf("<INPUT TYPE=\"CHECKBOX\" NAME=\"nodue\" ID=\"nodue\" VALUE=\"NODUE\"");
521         if (p == NULL) {
522                 wprintf("CHECKED=\"CHECKED\"");
523         }
524         wprintf(">");
525         wprintf(_("No date"));
526         wprintf(" ");
527         wprintf(_("or"));
528         wprintf(" ");
529         if (p != NULL) {
530                 IcalTime = icalproperty_get_due(p);
531         }
532         else
533                 IcalTime = icaltime_current_time_with_zone(get_default_icaltimezone());
534         display_icaltimetype_as_webform(&IcalTime, "due");
535                 
536         wprintf("</TD></TR>\n");
537         todoStatus = icalcomponent_get_status(vtodo);
538         wprintf("<TR><TD>\n");
539         wprintf(_("Completed:"));
540         wprintf("</TD><TD>");
541         wprintf("<INPUT TYPE=\"CHECKBOX\" NAME=\"STATUS\" VALUE=\"COMPLETED\"");
542         if (todoStatus == ICAL_STATUS_COMPLETED) {
543                 wprintf(" CHECKED=\"CHECKED\"");
544         } 
545         wprintf(" >");
546         wprintf("</TD></TR>");
547         // start category field
548         p = icalcomponent_get_first_property(vtodo, ICAL_CATEGORIES_PROPERTY);
549         wprintf("<TR><TD>");
550         wprintf(_("Category:"));
551         wprintf("</TD><TD>");
552         wprintf("<INPUT TYPE=\"text\" NAME=\"category\" MAXLENGTH=\"32\" SIZE=\"32\" VALUE=\"");
553         if (p != NULL) {
554                 escputs((char *)icalproperty_get_categories(p));
555         }
556         wprintf("\">");
557         wprintf("</TD></TR>\n   ");
558         // end category field
559         wprintf("<TR><TD>");
560         wprintf(_("Description:"));
561         wprintf("</TD><TD>");
562         wprintf("<TEXTAREA NAME=\"description\" "
563                 "ROWS=\"10\" COLS=\"80\">\n"
564                 );
565         p = icalcomponent_get_first_property(vtodo, ICAL_DESCRIPTION_PROPERTY);
566         if (p != NULL) {
567                 escputs((char *)icalproperty_get_comment(p));
568         }
569         wprintf("</TEXTAREA></TD></TR></TABLE>\n");
570
571         wprintf("<SPAN STYLE=\"text-align: center;\">"
572                 "<INPUT TYPE=\"submit\" NAME=\"save_button\" VALUE=\"%s\">"
573                 "&nbsp;&nbsp;"
574                 "<INPUT TYPE=\"submit\" NAME=\"delete_button\" VALUE=\"%s\">\n"
575                 "&nbsp;&nbsp;"
576                 "<INPUT TYPE=\"submit\" NAME=\"cancel_button\" VALUE=\"%s\">\n"
577                 "</SPAN>\n",
578                 _("Save"),
579                 _("Delete"),
580                 _("Cancel")
581                 );
582         wprintf("</td></tr></table>");
583         wprintf("</FORM>\n");
584         wprintf("</div></div></div>\n");
585         wprintf("<!-- end task edit form -->");
586         wDumpContent(1);
587
588         if (created_new_vtodo) {
589                 icalcomponent_free(vtodo);
590         }
591 }
592
593 /*
594  * \brief Save an edited task
595  * \param supplied_vtodo the task to save
596  * \param msgnum number of the mesage in our db
597  */
598 void save_individual_task(icalcomponent *supplied_vtodo, long msgnum, char* from, int unread) 
599 {
600         char buf[SIZ];
601         int delete_existing = 0;
602         icalproperty *prop;
603         icalcomponent *vtodo, *encaps;
604         int created_new_vtodo = 0;
605         int i;
606         int sequence = 0;
607         struct icaltimetype t;
608
609         if (supplied_vtodo != NULL) {
610                 vtodo = supplied_vtodo;
611                 /**
612                  * If we're looking at a fully encapsulated VCALENDAR
613                  * rather than a VTODO component, attempt to use the first
614                  * relevant VTODO subcomponent.  If there is none, the
615                  * NULL returned by icalcomponent_get_first_component() will
616                  * tell the next iteration of this function to create a
617                  * new one.
618                  */
619                 if (icalcomponent_isa(vtodo) == ICAL_VCALENDAR_COMPONENT) {
620                         save_individual_task(
621                                 icalcomponent_get_first_component(
622                                         vtodo, ICAL_VTODO_COMPONENT), 
623                                 msgnum, from, unread
624                                 );
625                         return;
626                 }
627         }
628         else {
629                 vtodo = icalcomponent_new(ICAL_VTODO_COMPONENT);
630                 created_new_vtodo = 1;
631         }
632
633         if (havebstr("save_button")) {
634
635                 /** Replace values in the component with ones from the form */
636
637                 while (prop = icalcomponent_get_first_property(vtodo,
638                                                                ICAL_SUMMARY_PROPERTY), prop != NULL) {
639                         icalcomponent_remove_property(vtodo, prop);
640                         icalproperty_free(prop);
641                 }
642                 if (havebstr("summary")) {
643
644                         icalcomponent_add_property(vtodo,
645                                                    icalproperty_new_summary(bstr("summary")));
646                 } else {
647                         icalcomponent_add_property(vtodo,
648                                                    icalproperty_new_summary("Untitled Task"));
649                 }
650         
651                 while (prop = icalcomponent_get_first_property(vtodo,
652                                                                ICAL_DESCRIPTION_PROPERTY), prop != NULL) {
653                         icalcomponent_remove_property(vtodo, prop);
654                         icalproperty_free(prop);
655                 }
656                 if (!IsEmptyStr(bstr("description"))) {
657                         icalcomponent_add_property(vtodo,
658                                                    icalproperty_new_description(bstr("description")));
659                 }
660         
661                 while (prop = icalcomponent_get_first_property(vtodo,
662                                                                ICAL_DTSTART_PROPERTY), prop != NULL) {
663                         icalcomponent_remove_property(vtodo, prop);
664                         icalproperty_free(prop);
665                 }
666                 if (IsEmptyStr(bstr("nodtstart"))) {
667                         icaltime_from_webform(&t, "dtstart");
668                         icalcomponent_add_property(vtodo,
669                                                    icalproperty_new_dtstart(t)
670                                 );
671                 }
672                 while(prop = icalcomponent_get_first_property(vtodo,
673                                                               ICAL_STATUS_PROPERTY), prop != NULL) {
674                         icalcomponent_remove_property(vtodo,prop);
675                         icalproperty_free(prop);
676                 }
677                 if (!IsEmptyStr(bstr("status"))) {
678                         icalproperty_status taskStatus = icalproperty_string_to_status(
679                                 bstr("status"));
680                         icalcomponent_set_status(vtodo, taskStatus);
681                 }
682                 while (prop = icalcomponent_get_first_property(vtodo,
683                                                                ICAL_CATEGORIES_PROPERTY), prop != NULL) {
684                         icalcomponent_remove_property(vtodo,prop);
685                         icalproperty_free(prop);
686                 }
687                 if (!IsEmptyStr(bstr("category"))) {
688                         prop = icalproperty_new_categories(bstr("category"));
689                         icalcomponent_add_property(vtodo,prop);
690                 }
691                 while (prop = icalcomponent_get_first_property(vtodo,
692                                                                ICAL_DUE_PROPERTY), prop != NULL) {
693                         icalcomponent_remove_property(vtodo, prop);
694                         icalproperty_free(prop);
695                 }
696                 if (IsEmptyStr(bstr("nodue"))) {
697                         icaltime_from_webform(&t, "due");
698                         icalcomponent_add_property(vtodo,
699                                                    icalproperty_new_due(t)
700                                 );
701                 }
702                 /** Give this task a UID if it doesn't have one. */
703                 lprintf(9, "Give this task a UID if it doesn't have one.\n");
704                 if (icalcomponent_get_first_property(vtodo,
705                                                      ICAL_UID_PROPERTY) == NULL) {
706                         generate_uuid(buf);
707                         icalcomponent_add_property(vtodo,
708                                                    icalproperty_new_uid(buf)
709                                 );
710                 }
711
712                 /** Increment the sequence ID */
713                 lprintf(9, "Increment the sequence ID\n");
714                 while (prop = icalcomponent_get_first_property(vtodo,
715                                                                ICAL_SEQUENCE_PROPERTY), (prop != NULL) ) {
716                         i = icalproperty_get_sequence(prop);
717                         lprintf(9, "Sequence was %d\n", i);
718                         if (i > sequence) sequence = i;
719                         icalcomponent_remove_property(vtodo, prop);
720                         icalproperty_free(prop);
721                 }
722                 ++sequence;
723                 lprintf(9, "New sequence is %d.  Adding...\n", sequence);
724                 icalcomponent_add_property(vtodo,
725                                            icalproperty_new_sequence(sequence)
726                         );
727
728                 /**
729                  * Encapsulate event into full VCALENDAR component.  Clone it first,
730                  * for two reasons: one, it's easier to just free the whole thing
731                  * when we're done instead of unbundling, but more importantly, we
732                  * can't encapsulate something that may already be encapsulated
733                  * somewhere else.
734                  */
735                 lprintf(9, "Encapsulating into a full VCALENDAR component\n");
736                 encaps = ical_encapsulate_subcomponent(icalcomponent_new_clone(vtodo));
737
738                 /* Serialize it and save it to the message base */
739                 serv_puts("ENT0 1|||4");
740                 serv_getln(buf, sizeof buf);
741                 if (buf[0] == '4') {
742                         serv_puts("Content-type: text/calendar");
743                         serv_puts("");
744                         serv_puts(icalcomponent_as_ical_string(encaps));
745                         serv_puts("000");
746
747                         /**
748                          * Probably not necessary; the server will see the UID
749                          * of the object and delete the old one anyway, but
750                          * just in case...
751                          */
752                         delete_existing = 1;
753                 }
754                 icalcomponent_free(encaps);
755         }
756
757         /**
758          * If the user clicked 'Delete' then explicitly delete the message.
759          */
760         if (havebstr("delete_button")) {
761                 delete_existing = 1;
762         }
763
764         if ( (delete_existing) && (msgnum > 0L) ) {
765                 serv_printf("DELE %ld", lbstr("msgnum"));
766                 serv_getln(buf, sizeof buf);
767         }
768
769         if (created_new_vtodo) {
770                 icalcomponent_free(vtodo);
771         }
772
773         /** Go back to the task list */
774         readloop("readfwd");
775 }
776
777
778
779 /**
780  * \brief generic item handler
781  * Code common to all display handlers.  Given a message number and a MIME
782  * type, we load the message and hunt for that MIME type.  If found, we load
783  * the relevant part, deserialize it into a libical component, filter it for
784  * the requested object type, and feed it to the specified handler.
785  * \param mimetype mimetyp of our object
786  * \param which_kind sort of ical type
787  * \param msgnum number of the mesage in our db
788  * \param callback a funcion \todo
789  *
790  */
791 void display_using_handler(long msgnum, int unread,
792                            icalcomponent_kind which_kind,
793                            void (*callback)(icalcomponent *, long, char*, int)
794         ) 
795 {
796         char buf[1024];
797         char from[128] = "";
798         char mime_partnum[256];
799         char mime_filename[256];
800         char mime_content_type[256];
801         char mime_disposition[256];
802         int mime_length;
803         char relevant_partnum[256];
804         char *relevant_source = NULL;
805         icalcomponent *cal, *c;
806
807         relevant_partnum[0] = '\0';
808         sprintf(buf, "MSG4 %ld", msgnum);       /* we need the mime headers */
809         serv_puts(buf);
810         serv_getln(buf, sizeof buf);
811         if (buf[0] != '1') return;
812
813         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
814                 if (!strncasecmp(buf, "part=", 5)) {
815                         extract_token(mime_filename, &buf[5], 1, '|', sizeof mime_filename);
816                         extract_token(mime_partnum, &buf[5], 2, '|', sizeof mime_partnum);
817                         extract_token(mime_disposition, &buf[5], 3, '|', sizeof mime_disposition);
818                         extract_token(mime_content_type, &buf[5], 4, '|', sizeof mime_content_type);
819                         mime_length = extract_int(&buf[5], 5);
820
821                         if (  (!strcasecmp(mime_content_type, "text/calendar"))
822                               || (!strcasecmp(mime_content_type, "application/ics"))
823                               || (!strcasecmp(mime_content_type, "text/vtodo"))
824                                 ) {
825                                 strcpy(relevant_partnum, mime_partnum);
826                         }
827                 }
828                 else if (!strncasecmp(buf, "from=", 4)) {
829                         extract_token(from, buf, 1, '=', sizeof(from));
830                 }
831         }
832
833         if (!IsEmptyStr(relevant_partnum)) {
834                 relevant_source = load_mimepart(msgnum, relevant_partnum);
835                 if (relevant_source != NULL) {
836
837                         cal = icalcomponent_new_from_string(relevant_source);
838                         if (cal != NULL) {
839
840                                 ical_dezonify(cal);
841
842                                 /** Simple components of desired type */
843                                 if (icalcomponent_isa(cal) == which_kind) {
844                                         callback(cal, msgnum, from, unread);
845                                 }
846
847                                 /** Subcomponents of desired type */
848                                 for (c = icalcomponent_get_first_component(cal,
849                                                                            which_kind);
850                                      (c != 0);
851                                      c = icalcomponent_get_next_component(cal,
852                                                                           which_kind)) {
853                                         callback(c, msgnum, from, unread);
854                                 }
855                                 icalcomponent_free(cal);
856                         }
857                         free(relevant_source);
858                 }
859         }
860         icalmemory_free_ring();
861 }
862
863 /**
864  * \brief display whole calendar
865  * \param msgnum number of the mesage in our db
866  */
867 void display_calendar(long msgnum, int unread) {
868         display_using_handler(msgnum, unread,
869                               ICAL_VEVENT_COMPONENT,
870                               display_individual_cal);
871 }
872
873 /**
874  * \brief display whole taksview
875  * \param msgnum number of the mesage in our db
876  */
877 void display_task(long msgnum, int unread) {
878         display_using_handler(msgnum, unread,
879                               ICAL_VTODO_COMPONENT,
880                               display_individual_cal);
881 }
882
883 /**
884  * \brief display the editor component for a task
885  */
886 void display_edit_task(void) {
887         long msgnum = 0L;
888                         
889         /** Force change the room if we have to */
890         if (havebstr("taskrm")) {
891                 gotoroom((char *)bstr("taskrm"));
892         }
893
894         msgnum = lbstr("msgnum");
895         if (msgnum > 0L) {
896                 /** existing task */
897                 display_using_handler(msgnum, 0,
898                                       ICAL_VTODO_COMPONENT,
899                                       display_edit_individual_task);
900         }
901         else {
902                 /** new task */
903                 display_edit_individual_task(NULL, 0L, "", 0);
904         }
905 }
906
907 /**
908  *\brief save an edited task
909  */
910 void save_task(void) {
911         long msgnum = 0L;
912
913         msgnum = lbstr("msgnum");
914         if (msgnum > 0L) {
915                 display_using_handler(msgnum, 0,
916                                       ICAL_VTODO_COMPONENT,
917                                       save_individual_task);
918         }
919         else {
920                 save_individual_task(NULL, 0L, "", 0);
921         }
922 }
923
924 /**
925  * \brief display the editor component for an event
926  */
927 void display_edit_event(void) {
928         long msgnum = 0L;
929
930         msgnum = lbstr("msgnum");
931         if (msgnum > 0L) {
932                 /* existing event */
933                 display_using_handler(msgnum, 0,
934                                       ICAL_VEVENT_COMPONENT,
935                                       display_edit_individual_event);
936         }
937         else {
938                 /* new event */
939                 display_edit_individual_event(NULL, 0L, "", 0);
940         }
941 }
942
943 /**
944  * \brief save an edited event
945  */
946 void save_event(void) {
947         long msgnum = 0L;
948
949         msgnum = lbstr("msgnum");
950
951         if (msgnum > 0L) {
952                 display_using_handler(msgnum, 0,
953                                       ICAL_VEVENT_COMPONENT,
954                                       save_individual_event);
955         }
956         else {
957                 save_individual_event(NULL, 0L, "", 0);
958         }
959 }
960
961
962
963
964
965 /**
966  * \brief freebusy display (for client software)
967  * \param req dunno. ?????
968  */
969 void do_freebusy(char *req) {
970         char who[SIZ];
971         char buf[SIZ];
972         char *fb;
973         int len;
974
975         extract_token(who, req, 1, ' ', sizeof who);
976         if (!strncasecmp(who, "/freebusy/", 10)) {
977                 strcpy(who, &who[10]);
978         }
979         unescape_input(who);
980
981         len = strlen(who);
982         if ( (!strcasecmp(&who[len-4], ".vcf"))
983              || (!strcasecmp(&who[len-4], ".ifb"))
984              || (!strcasecmp(&who[len-4], ".vfb")) ) {
985                 who[len-4] = 0;
986         }
987
988         lprintf(9, "freebusy requested for <%s>\n", who);
989         serv_printf("ICAL freebusy|%s", who);
990         serv_getln(buf, sizeof buf);
991
992         if (buf[0] != '1') {
993                 wprintf("HTTP/1.1 404 %s\n", &buf[4]);
994                 output_headers(0, 0, 0, 0, 0, 0);
995                 wprintf("Content-Type: text/plain\r\n");
996                 wprintf("\r\n");
997                 wprintf("%s\n", &buf[4]);
998                 return;
999         }
1000
1001         fb = read_server_text();
1002         http_transmit_thing(fb, strlen(fb), "text/calendar", 0);
1003         free(fb);
1004 }
1005