* potential leak while saving edited events fixed.
[citadel.git] / webcit / event.c
1 /*
2  * $Id$
3  *
4  * Editing calendar events.
5  */
6
7 #include "webcit.h"
8 #include "webserver.h"
9
10
11 /*
12  * Display an event by itself (for editing)
13  * supplied_vevent      the event to edit
14  * msgnum               reference on the citserver
15  */
16 void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum, char *from, int unread) {
17         icalcomponent *vevent;
18         icalproperty *p;
19         icalvalue *v;
20         struct icaltimetype t_start, t_end;
21         time_t now;
22         struct tm tm_now;
23         int created_new_vevent = 0;
24         icalproperty *organizer = NULL;
25         char organizer_string[SIZ];
26         icalproperty *attendee = NULL;
27         char attendee_string[SIZ];
28         char buf[SIZ];
29         int organizer_is_me = 0;
30         int i, j = 0;
31         int sequence = 0;
32
33         lprintf(9, "display_edit_individual_event(%ld) calview=%s year=%s month=%s day=%s\n",
34                 msgnum, bstr("calview"), bstr("year"), bstr("month"), bstr("day")
35         );
36
37         now = time(NULL);
38         strcpy(organizer_string, "");
39         strcpy(attendee_string, "");
40
41         if (supplied_vevent != NULL) {
42                 vevent = supplied_vevent;
43                 /*
44                  * If we're looking at a fully encapsulated VCALENDAR
45                  * rather than a VEVENT component, attempt to use the first
46                  * relevant VEVENT subcomponent.  If there is none, the
47                  * NULL returned by icalcomponent_get_first_component() will
48                  * tell the next iteration of this function to create a
49                  * new one.
50                  */
51                 if (icalcomponent_isa(vevent) == ICAL_VCALENDAR_COMPONENT) {
52                         display_edit_individual_event(
53                                 icalcomponent_get_first_component(
54                                         vevent, ICAL_VEVENT_COMPONENT), 
55                                 msgnum, from, unread
56                         );
57                         return;
58                 }
59         }
60         else {
61                 vevent = icalcomponent_new(ICAL_VEVENT_COMPONENT);
62                 created_new_vevent = 1;
63         }
64
65         /* Learn the sequence */
66         p = icalcomponent_get_first_property(vevent, ICAL_SEQUENCE_PROPERTY);
67         if (p != NULL) {
68                 sequence = icalproperty_get_sequence(p);
69         }
70
71         /* Begin output */
72         output_headers(1, 1, 2, 0, 0, 0);
73         wprintf("<div id=\"banner\">\n");
74         wprintf("<h1>");
75         wprintf(_("Add or edit an event"));
76         wprintf("</h1>");
77         wprintf("</div>\n");
78
79         wprintf("<div id=\"content\" class=\"service\">\n");
80
81         wprintf("<div class=\"fix_scrollbar_bug\">");
82
83         /************************************************************
84          * Uncomment this to see the UID in calendar events for debugging
85         wprintf("UID == ");
86         p = icalcomponent_get_first_property(vevent, ICAL_UID_PROPERTY);
87         if (p != NULL) {
88                 escputs((char *)icalproperty_get_comment(p));
89         }
90         wprintf("<br />\n");
91         wprintf("SEQUENCE == %d<br />\n", sequence);
92         *************************************************************/
93
94         wprintf("<FORM NAME=\"EventForm\" METHOD=\"POST\" action=\"save_event\">\n");
95         wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC->nonce);
96
97         wprintf("<INPUT TYPE=\"hidden\" NAME=\"msgnum\" VALUE=\"%ld\">\n",
98                 msgnum);
99         wprintf("<INPUT TYPE=\"hidden\" NAME=\"calview\" VALUE=\"%s\">\n",
100                 bstr("calview"));
101         wprintf("<INPUT TYPE=\"hidden\" NAME=\"year\" VALUE=\"%s\">\n",
102                 bstr("year"));
103         wprintf("<INPUT TYPE=\"hidden\" NAME=\"month\" VALUE=\"%s\">\n",
104                 bstr("month"));
105         wprintf("<INPUT TYPE=\"hidden\" NAME=\"day\" VALUE=\"%s\">\n",
106                 bstr("day"));
107
108         char *tabnames[] = {
109                 _("Event"),
110                 _("Attendees"),
111                 _("Recurrence")
112         };
113
114         tabbed_dialog(3, tabnames);
115         begin_tab(0, 3);
116
117         /* Put it in a borderless table so it lines up nicely */
118         wprintf("<TABLE border=0 width=100%%>\n");
119
120         wprintf("<TR><TD><B>");
121         wprintf(_("Summary"));
122         wprintf("</B></TD><TD>\n"
123                 "<INPUT TYPE=\"text\" NAME=\"summary\" "
124                 "MAXLENGTH=\"64\" SIZE=\"64\" VALUE=\"");
125         p = icalcomponent_get_first_property(vevent, ICAL_SUMMARY_PROPERTY);
126         if (p != NULL) {
127                 escputs((char *)icalproperty_get_comment(p));
128         }
129         wprintf("\"></TD></TR>\n");
130
131         wprintf("<TR><TD><B>");
132         wprintf(_("Location"));
133         wprintf("</B></TD><TD>\n"
134                 "<INPUT TYPE=\"text\" NAME=\"location\" "
135                 "MAXLENGTH=\"64\" SIZE=\"64\" VALUE=\"");
136         p = icalcomponent_get_first_property(vevent, ICAL_LOCATION_PROPERTY);
137         if (p != NULL) {
138                 escputs((char *)icalproperty_get_comment(p));
139         }
140         wprintf("\"></TD></TR>\n");
141
142         wprintf("<TR><TD><B>");
143         wprintf(_("Start"));
144         wprintf("</B></TD><TD>\n");
145         p = icalcomponent_get_first_property(vevent, ICAL_DTSTART_PROPERTY);
146         if (p != NULL) {
147                 t_start = icalproperty_get_dtstart(p);
148                 if (t_start.is_date) {
149                         t_start.hour = 0;
150                         t_start.minute = 0;
151                         t_start.second = 0;
152                 }
153         }
154         else {
155                 localtime_r(&now, &tm_now);
156                 if (havebstr("year")) {
157                         tm_now.tm_year = ibstr("year") - 1900;
158                         tm_now.tm_mon = ibstr("month") - 1;
159                         tm_now.tm_mday = ibstr("day");
160                 }
161                 if (havebstr("hour")) {
162                         tm_now.tm_hour = ibstr("hour");
163                         tm_now.tm_min = ibstr("minute");
164                         tm_now.tm_sec = 0;
165                 }
166                 else {
167                         tm_now.tm_hour = 0;
168                         tm_now.tm_min = 0;
169                         tm_now.tm_sec = 0;
170                 }
171
172                 t_start = icaltime_from_timet_with_zone(
173                         mktime(&tm_now),
174                         ((yesbstr("alldayevent")) ? 1 : 0),
175                         icaltimezone_get_utc_timezone()
176                 );
177                 t_start.is_utc = 1;
178
179         }
180         display_icaltimetype_as_webform(&t_start, "dtstart");
181
182         wprintf("<INPUT TYPE=\"checkbox\" id=\"alldayevent\" NAME=\"alldayevent\" "
183                 "VALUE=\"yes\" onclick=\"eventEditAllDay();\""
184                 " %s >%s",
185                 (t_start.is_date ? "CHECKED=\"CHECKED\"" : "" ),
186                 _("All day event")
187         );
188
189         wprintf("</TD></TR>\n");
190
191         /*
192          * If this is an all-day-event, set the end time to be identical to
193          * the start time (the hour/minute/second will be set to midnight).
194          * Otherwise extract or create it.
195          */
196         wprintf("<TR><TD><B>");
197         wprintf(_("End"));
198         wprintf("</B></TD><TD id=\"dtendcell\">\n");
199         if (t_start.is_date) {
200                 t_end = t_start;
201         }
202         else {
203                 p = icalcomponent_get_first_property(vevent,
204                                                         ICAL_DTEND_PROPERTY);
205                 if (p != NULL) {
206                         t_end = icalproperty_get_dtend(p);
207                 }
208                 else {
209                         /*
210                          * If this is not an all-day event and there is no
211                          * end time specified, make the default one hour
212                          * from the start time.
213                          */
214                         t_end = t_start;
215                         t_end.hour += 1;
216                         t_end.second = 0;
217                         t_end = icaltime_normalize(t_end);
218                         /* t_end = icaltime_from_timet(now, 0); */
219                 }
220         }
221         display_icaltimetype_as_webform(&t_end, "dtend");
222         wprintf("</TD></TR>\n");
223
224         wprintf("<TR><TD><B>");
225         wprintf(_("Notes"));
226         wprintf("</B></TD><TD>\n"
227                 "<TEXTAREA NAME=\"description\" wrap=soft "
228                 "ROWS=5 COLS=80 WIDTH=80>\n"
229         );
230         p = icalcomponent_get_first_property(vevent, ICAL_DESCRIPTION_PROPERTY);
231         if (p != NULL) {
232                 escputs((char *)icalproperty_get_comment(p));
233         }
234         wprintf("</TEXTAREA></TD></TR>");
235
236         /**
237          * For a new event, the user creating the event should be the
238          * organizer.  Set this field accordingly.
239          */
240         if (icalcomponent_get_first_property(vevent, ICAL_ORGANIZER_PROPERTY)
241            == NULL) {
242                 sprintf(organizer_string, "MAILTO:%s", WC->cs_inet_email);
243                 icalcomponent_add_property(vevent,
244                         icalproperty_new_organizer(organizer_string)
245                 );
246         }
247
248         /**
249          * Determine who is the organizer of this event.
250          * We need to determine "me" or "not me."
251          */
252         organizer = icalcomponent_get_first_property(vevent, ICAL_ORGANIZER_PROPERTY);
253         if (organizer != NULL) {
254                 strcpy(organizer_string, icalproperty_get_organizer(organizer));
255                 if (!strncasecmp(organizer_string, "MAILTO:", 7)) {
256                         strcpy(organizer_string, &organizer_string[7]);
257                         striplt(organizer_string);
258                         serv_printf("ISME %s", organizer_string);
259                         serv_getln(buf, sizeof buf);
260                         if (buf[0] == '2') {
261                                 organizer_is_me = 1;
262                         }
263                 }
264         }
265
266         wprintf("<TR><TD><B>");
267         wprintf(_("Organizer"));
268         wprintf("</B></TD><TD>");
269         escputs(organizer_string);
270         if (organizer_is_me) {
271                 wprintf(" <FONT SIZE=-1><I>");
272                 wprintf(_("(you are the organizer)"));
273                 wprintf("</I></FONT>\n");
274         }
275
276         /**
277          * Transmit the organizer as a hidden field.   We don't want the user
278          * to be able to change it, but we do want it fed back to the server,
279          * especially if this is a new event and there is no organizer already
280          * in the calendar object.
281          */
282         wprintf("<INPUT TYPE=\"hidden\" NAME=\"organizer\" VALUE=\"");
283         escputs(organizer_string);
284         wprintf("\">");
285
286         wprintf("</TD></TR>\n");
287
288         /** Transparency */
289         wprintf("<TR><TD><B>");
290         wprintf(_("Show time as:"));
291         wprintf("</B></TD><TD>");
292
293         p = icalcomponent_get_first_property(vevent, ICAL_TRANSP_PROPERTY);
294         if (p == NULL) {
295                 /** No transparency found.  Default to opaque (busy). */
296                 p = icalproperty_new_transp(ICAL_TRANSP_OPAQUE);
297                 if (p != NULL) {
298                         icalcomponent_add_property(vevent, p);
299                 }
300         }
301         if (p != NULL) {
302                 v = icalproperty_get_value(p);
303         }
304         else {
305                 v = NULL;
306         }
307
308         wprintf("<INPUT TYPE=\"radio\" NAME=\"transp\" VALUE=\"transparent\"");
309         if (v != NULL) if (icalvalue_get_transp(v) == ICAL_TRANSP_TRANSPARENT)
310                 wprintf(" CHECKED");
311         wprintf(">");
312         wprintf(_("Free"));
313         wprintf("&nbsp;&nbsp;");
314
315         wprintf("<INPUT TYPE=\"radio\" NAME=\"transp\" VALUE=\"opaque\"");
316         if (v != NULL) if (icalvalue_get_transp(v) == ICAL_TRANSP_OPAQUE)
317                 wprintf(" CHECKED");
318         wprintf(">");
319         wprintf(_("Busy"));
320
321         wprintf("</TD></TR>\n");
322
323
324         /** Done with properties. */
325         wprintf("</TABLE>\n");
326
327         end_tab(0, 3);
328
329         /* Attendees tab (need to move things here) */
330         begin_tab(1, 3);
331         wprintf("<TABLE border=0 width=100%%>\n");      /* same table style as the event tab */
332         wprintf("<TR><TD><B>");
333         wprintf(_("Attendees"));
334         wprintf("</B><br />"
335                 "<font size=-2>");
336         wprintf(_("(One per line)"));
337         wprintf("</font>\n");
338
339         /** Pop open an address book -- begin **/
340         wprintf(
341                 "&nbsp;<a href=\"javascript:PopOpenAddressBook('attendees_box|%s');\" "
342                 "title=\"%s\">"
343                 "<img align=middle border=0 width=24 height=24 src=\"static/viewcontacts_24x.gif\">"
344                 "</a>",
345                 _("Attendees"),
346                 _("Contacts")
347         );
348         /* Pop open an address book -- end **/
349
350         wprintf("</TD><TD>"
351                 "<TEXTAREA %s NAME=\"attendees\" id=\"attendees_box\" wrap=soft "
352                 "ROWS=3 COLS=80 WIDTH=80>\n",
353                 (organizer_is_me ? "" : "DISABLED ")
354         );
355         i = 0;
356         for (attendee = icalcomponent_get_first_property(vevent, ICAL_ATTENDEE_PROPERTY);
357             attendee != NULL;
358             attendee = icalcomponent_get_next_property(vevent, ICAL_ATTENDEE_PROPERTY)) {
359                 strcpy(attendee_string, icalproperty_get_attendee(attendee));
360                 if (!strncasecmp(attendee_string, "MAILTO:", 7)) {
361
362                         /** screen name or email address */
363                         strcpy(attendee_string, &attendee_string[7]);
364                         striplt(attendee_string);
365                         if (i++) wprintf("\n");
366                         escputs(attendee_string);
367                         wprintf(" ");
368
369                         /** participant status */
370                         partstat_as_string(buf, attendee);
371                         escputs(buf);
372                 }
373         }
374         wprintf("</TEXTAREA></TD></TR>\n");
375         wprintf("</TABLE>\n");
376         end_tab(1, 3);
377
378         /* Recurrence tab */
379         begin_tab(2, 3);
380         icalproperty *rrule = NULL;
381         struct icalrecurrencetype recur;
382
383         rrule = icalcomponent_get_first_property(vevent, ICAL_RRULE_PROPERTY);
384
385         wprintf("<INPUT TYPE=\"checkbox\" id=\"is_recur\" NAME=\"is_recur\" "
386                 "VALUE=\"yes\" "
387                 /* "onclick=\"GreyOrUnGrayStuffFIXME();\"" */
388                 " %s >%s",
389                 (rrule ? "CHECKED=\"CHECKED\"" : "" ),
390                 _("This is a repeating event")
391         );
392
393         if (rrule) {
394                 recur = icalproperty_get_rrule(rrule);
395
396                 wprintf("<table border=0 width=100%%>\n");      /* same table style as the event tab */
397
398                 /* Table row displaying raw RRULE data, FIXME remove when finished */
399                 wprintf("<tr><td><b>");
400                 wprintf("Raw data");
401                 wprintf("</b></td><td>");
402                 wprintf("<tt>%s</tt>", icalrecurrencetype_as_string(&recur));
403                 wprintf("</td></tr>\n");
404
405                 char *frequency_units[] = {
406                         _("seconds"),
407                         _("minutes"),
408                         _("hours"),
409                         _("days"),
410                         _("weeks"),
411                         _("months"),
412                         _("years"),
413                         _("never")
414                 };
415
416                 wprintf("<tr><td><b>");
417                 wprintf(_("Repeats"));
418                 wprintf("</b></td><td>");
419                 if ((recur.freq < 0) || (recur.freq > 6)) recur.freq = 4;
420                 wprintf("every %d %s", recur.interval, frequency_units[recur.freq]);    //FIXME
421                 wprintf("</td></tr>\n");
422
423                 wprintf("<tr><td><b>");
424                 wprintf("byday");                                                       //FIXME
425                 wprintf("</b></td><td>");
426                 for (i=0; i<ICAL_BY_DAY_SIZE; ++i) {
427                         if (recur.by_day[i] == ICAL_RECURRENCE_ARRAY_MAX) {
428                                 i = ICAL_RECURRENCE_ARRAY_MAX;                  /* all done */
429                         }
430                         else {
431                                 for (j=1; j<=ICAL_SATURDAY_WEEKDAY; ++j) {
432                                         if (icalrecurrencetype_day_day_of_week(recur.by_day[i]) == j) {
433                                                 wprintf("day%d, ", j);
434                                         }
435                                 }
436                         }
437                 }
438                 wprintf("</td></tr>\n");
439
440                 wprintf("</table>\n");
441         }
442         end_tab(2, 3);
443
444         /* submit buttons (common area beneath the tabs) */
445         begin_tab(3, 3);
446         wprintf("<CENTER>"
447                 "<INPUT TYPE=\"submit\" NAME=\"save_button\" VALUE=\"%s\">"
448                 "&nbsp;&nbsp;"
449                 "<INPUT TYPE=\"submit\" NAME=\"delete_button\" VALUE=\"%s\">\n"
450                 "&nbsp;&nbsp;"
451                 "<INPUT TYPE=\"submit\" NAME=\"check_button\" "
452                                 "VALUE=\"%s\">\n"
453                 "&nbsp;&nbsp;"
454                 "<INPUT TYPE=\"submit\" NAME=\"cancel_button\" VALUE=\"%s\">\n"
455                 "</CENTER>\n",
456                 _("Save"),
457                 _("Delete"),
458                 _("Check attendee availability"),
459                 _("Cancel")
460         );
461         wprintf("</FORM>\n");
462         end_tab(3, 3);
463
464         wprintf("</div>\n");
465
466         wprintf("<script type=\"text/javascript\">"
467                 "eventEditAllDay();"
468                 "</script>\n"
469         );
470         address_book_popup();
471         wDumpContent(1);
472
473         if (created_new_vevent) {
474                 icalcomponent_free(vevent);
475         }
476 }
477
478 /*
479  * Save an edited event
480  *
481  * supplied_vevent:     the event to save
482  * msgnum:              the index on the citserver
483  */
484 void save_individual_event(icalcomponent *supplied_vevent, long msgnum, char *from, int unread) {
485         char buf[SIZ];
486         icalproperty *prop;
487         icalcomponent *vevent, *encaps;
488         int created_new_vevent = 0;
489         int all_day_event = 0;
490         struct icaltimetype event_start, t;
491         icalproperty *attendee = NULL;
492         char attendee_string[SIZ];
493         int i, j;
494         int foundit;
495         char form_attendees[SIZ];
496         char organizer_string[SIZ];
497         int sequence = 0;
498         enum icalproperty_transp formtransp = ICAL_TRANSP_NONE;
499
500         if (supplied_vevent != NULL) {
501                 vevent = supplied_vevent;
502                 /**
503                  * If we're looking at a fully encapsulated VCALENDAR
504                  * rather than a VEVENT component, attempt to use the first
505                  * relevant VEVENT subcomponent.  If there is none, the
506                  * NULL returned by icalcomponent_get_first_component() will
507                  * tell the next iteration of this function to create a
508                  * new one.
509                  */
510                 if (icalcomponent_isa(vevent) == ICAL_VCALENDAR_COMPONENT) {
511                         save_individual_event(
512                                 icalcomponent_get_first_component(
513                                         vevent, ICAL_VEVENT_COMPONENT), 
514                                 msgnum, from, unread
515                         );
516                         return;
517                 }
518         }
519         else {
520                 vevent = icalcomponent_new(ICAL_VEVENT_COMPONENT);
521                 created_new_vevent = 1;
522         }
523
524         if ( (havebstr("save_button"))
525            || (havebstr("check_button")) ) {
526
527                 /** Replace values in the component with ones from the form */
528
529                 while (prop = icalcomponent_get_first_property(vevent,
530                       ICAL_SUMMARY_PROPERTY), prop != NULL) {
531                         icalcomponent_remove_property(vevent, prop);
532                         icalproperty_free(prop);
533                 }
534
535                 if (havebstr("summary")) {
536         
537                         icalcomponent_add_property(vevent,
538                                         icalproperty_new_summary(bstr("summary")));
539                 } else {
540                         icalcomponent_add_property(vevent,
541                                         icalproperty_new_summary("Untitled Event"));
542                 }
543         
544                 while (prop = icalcomponent_get_first_property(vevent,
545                                         ICAL_LOCATION_PROPERTY), prop != NULL) {
546                         icalcomponent_remove_property(vevent, prop);
547                         icalproperty_free(prop);
548                 }
549                 if (havebstr("location")) {
550                         icalcomponent_add_property(vevent,
551                                         icalproperty_new_location(bstr("location")));
552                 }
553                 while (prop = icalcomponent_get_first_property(vevent,
554                                   ICAL_DESCRIPTION_PROPERTY), prop != NULL) {
555                         icalcomponent_remove_property(vevent, prop);
556                         icalproperty_free(prop);
557                 }
558                 if (havebstr("description")) {
559                         icalcomponent_add_property(vevent,
560                                 icalproperty_new_description(bstr("description")));
561                 }
562
563                 while (prop = icalcomponent_get_first_property(vevent,
564                       ICAL_DTSTART_PROPERTY), prop != NULL) {
565                         icalcomponent_remove_property(vevent, prop);
566                         icalproperty_free(prop);
567                 }
568
569                 if (yesbstr("alldayevent")) {
570                         all_day_event = 1;
571                 }
572                 else {
573                         all_day_event = 0;
574                 }
575
576                 if (all_day_event) {
577                         icaltime_from_webform_dateonly(&event_start, "dtstart");
578                 }
579                 else {
580                         icaltime_from_webform(&event_start, "dtstart");
581                 }
582
583                 /**
584                  * The following odd-looking snippet of code looks like it
585                  * takes some unnecessary steps.  It is done this way because
586                  * libical incorrectly turns an "all day event" into a normal
587                  * event starting at midnight (i.e. it serializes as date/time
588                  * instead of just date) unless icalvalue_new_date() is used.
589                  * So we force it, if this is an all day event.
590                  */
591                 prop = icalproperty_new_dtstart(event_start);
592                 if (all_day_event) {
593                         icalproperty_set_value(prop, icalvalue_new_date(event_start));
594                 }
595
596                 if (prop) icalcomponent_add_property(vevent, prop);
597                 else icalproperty_free(prop);
598
599                 while (prop = icalcomponent_get_first_property(vevent,
600                       ICAL_DTEND_PROPERTY), prop != NULL) {
601                         icalcomponent_remove_property(vevent, prop);
602                         icalproperty_free(prop);
603                 }
604                 while (prop = icalcomponent_get_first_property(vevent,
605                       ICAL_DURATION_PROPERTY), prop != NULL) {
606                         icalcomponent_remove_property(vevent, prop);
607                         icalproperty_free(prop);
608                 }
609
610                 if (all_day_event == 0) {
611                         icaltime_from_webform(&t, "dtend");     
612                         icalcomponent_add_property(vevent,
613                                 icalproperty_new_dtend(icaltime_normalize(t)
614                                 )
615                         );
616                 }
617
618                 /** See if transparency is indicated */
619                 if (havebstr("transp")) {
620                         if (!strcasecmp(bstr("transp"), "opaque")) {
621                                 formtransp = ICAL_TRANSP_OPAQUE;
622                         }
623                         else if (!strcasecmp(bstr("transp"), "transparent")) {
624                                 formtransp = ICAL_TRANSP_TRANSPARENT;
625                         }
626
627                         while (prop = icalcomponent_get_first_property(vevent, ICAL_TRANSP_PROPERTY),
628                               (prop != NULL)) {
629                                 icalcomponent_remove_property(vevent, prop);
630                                 icalproperty_free(prop);
631                         }
632
633                         icalcomponent_add_property(vevent, icalproperty_new_transp(formtransp));
634                 }
635
636                 /** Give this event a UID if it doesn't have one. */
637                 if (icalcomponent_get_first_property(vevent,
638                    ICAL_UID_PROPERTY) == NULL) {
639                         generate_uuid(buf);
640                         icalcomponent_add_property(vevent, icalproperty_new_uid(buf));
641                 }
642
643                 /** Increment the sequence ID */
644                 while (prop = icalcomponent_get_first_property(vevent,
645                       ICAL_SEQUENCE_PROPERTY), (prop != NULL) ) {
646                         i = icalproperty_get_sequence(prop);
647                         if (i > sequence) sequence = i;
648                         icalcomponent_remove_property(vevent, prop);
649                         icalproperty_free(prop);
650                 }
651                 ++sequence;
652                 icalcomponent_add_property(vevent,
653                         icalproperty_new_sequence(sequence)
654                 );
655                 
656                 /**
657                  * Set the organizer, only if one does not already exist *and*
658                  * the form is supplying one
659                  */
660                 strcpy(buf, bstr("organizer"));
661                 if ( (icalcomponent_get_first_property(vevent,
662                    ICAL_ORGANIZER_PROPERTY) == NULL) 
663                    && (!IsEmptyStr(buf)) ) {
664
665                         /** set new organizer */
666                         sprintf(organizer_string, "MAILTO:%s", buf);
667                         icalcomponent_add_property(vevent,
668                                 icalproperty_new_organizer(organizer_string)
669                         );
670
671                 }
672
673                 /**
674                  * Add any new attendees listed in the web form
675                  */
676
677                 /* First, strip out the parenthesized partstats.  */
678                 strcpy(form_attendees, bstr("attendees"));
679                 stripout(form_attendees, '(', ')');
680
681                 /* Next, change any commas to newlines, because we want newline-separated attendees. */
682                 j = strlen(form_attendees);
683                 for (i=0; i<j; ++i) {
684                         if (form_attendees[i] == ',') {
685                                 form_attendees[i] = '\n';
686                                 while (isspace(form_attendees[i+1])) {
687                                         strcpy(&form_attendees[i+1], &form_attendees[i+2]);
688                                 }
689                         }
690                 }
691
692                 /** Now iterate! */
693                 for (i=0; i<num_tokens(form_attendees, '\n'); ++i) {
694                         extract_token(buf, form_attendees, i, '\n', sizeof buf);
695                         striplt(buf);
696                         if (!IsEmptyStr(buf)) {
697                                 sprintf(attendee_string, "MAILTO:%s", buf);
698                                 foundit = 0;
699
700                                 for (attendee = icalcomponent_get_first_property(vevent, ICAL_ATTENDEE_PROPERTY); attendee != NULL; attendee = icalcomponent_get_next_property(vevent, ICAL_ATTENDEE_PROPERTY)) {
701                                         if (!strcasecmp(attendee_string,
702                                            icalproperty_get_attendee(attendee)))
703                                                 ++foundit;
704                                 }
705
706
707                                 if (foundit == 0) {
708                                         icalcomponent_add_property(vevent,
709                                                 icalproperty_new_attendee(attendee_string)
710                                         );
711                                 }
712                         }
713                 }
714
715                 /**
716                  * Remove any attendees *not* listed in the web form
717                  */
718 STARTOVER:      for (attendee = icalcomponent_get_first_property(vevent, ICAL_ATTENDEE_PROPERTY); attendee != NULL; attendee = icalcomponent_get_next_property(vevent, ICAL_ATTENDEE_PROPERTY)) {
719                         strcpy(attendee_string, icalproperty_get_attendee(attendee));
720                         if (!strncasecmp(attendee_string, "MAILTO:", 7)) {
721                                 strcpy(attendee_string, &attendee_string[7]);
722                                 striplt(attendee_string);
723                                 foundit = 0;
724                                 for (i=0; i<num_tokens(form_attendees, '\n'); ++i) {
725                                         extract_token(buf, form_attendees, i, '\n', sizeof buf);
726                                         striplt(buf);
727                                         if (!strcasecmp(buf, attendee_string)) ++foundit;
728                                 }
729                                 if (foundit == 0) {
730                                         icalcomponent_remove_property(vevent, attendee);
731                                         icalproperty_free(attendee);
732                                         goto STARTOVER;
733                                 }
734                         }
735                 }
736
737                 /**
738                  * Encapsulate event into full VCALENDAR component.  Clone it first,
739                  * for two reasons: one, it's easier to just free the whole thing
740                  * when we're done instead of unbundling, but more importantly, we
741                  * can't encapsulate something that may already be encapsulated
742                  * somewhere else.
743                  */
744                 encaps = ical_encapsulate_subcomponent(icalcomponent_new_clone(vevent));
745
746                 /* Set the method to PUBLISH */
747                 icalcomponent_set_method(encaps, ICAL_METHOD_PUBLISH);
748
749                 /** If the user clicked 'Save' then save it to the server. */
750                 if ( (encaps != NULL) && (havebstr("save_button")) ) {
751                         serv_puts("ENT0 1|||4|||1|");
752                         serv_getln(buf, sizeof buf);
753                         if (buf[0] == '8') {
754                                 serv_puts("Content-type: text/calendar");
755                                 serv_puts("");
756                                 serv_puts(icalcomponent_as_ical_string(encaps));
757                                 serv_puts("000");
758                         }
759                         if ( (buf[0] == '8') || (buf[0] == '4') ) {
760                                 while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
761                                 }
762                         }
763                         if (buf[0] == '2') {
764                                 strcpy(WC->ImportantMessage, &buf[4]);
765                         }
766                         icalmemory_free_ring ();
767                         icalcomponent_free(encaps);
768                         encaps = NULL;
769                 }
770
771                 /** Or, check attendee availability if the user asked for that. */
772                 if ( (encaps != NULL) && (havebstr("check_button")) ) {
773
774                         /* Call this function, which does the real work */
775                         check_attendee_availability(encaps);
776
777                         /** This displays the form again, with our annotations */
778                         display_edit_individual_event(encaps, msgnum, from, unread);
779
780                         icalcomponent_free(encaps);
781                         encaps = NULL;
782                 }
783                 if (encaps != NULL) {
784                         icalcomponent_free(encaps);
785                         encaps = NULL;
786                 }
787
788         }
789
790         /*
791          * If the user clicked 'Delete' then delete it.
792          */
793         if ( (havebstr("delete_button")) && (msgnum > 0L) ) {
794                 serv_printf("DELE %ld", lbstr("msgnum"));
795                 serv_getln(buf, sizeof buf);
796         }
797
798         if (created_new_vevent) {
799                 icalcomponent_free(vevent);
800         }
801
802         /* If this was a save or delete, go back to the calendar view. */
803         if (!havebstr("check_button")) {
804                 readloop("readfwd");
805         }
806 }