]> code.citadel.org Git - citadel.git/blobdiff - webcit/event.c
* Prettied up the calendar day view layout
[citadel.git] / webcit / event.c
index dbfebdca8e58117812b27ac12d58f72a2663cd3d..0cca6db2a05e28a7b4c00c0a8a39c8dc698276a8 100644 (file)
@@ -30,7 +30,6 @@
 
 #ifdef HAVE_ICAL_H
 
-
 /*
  * Display an event by itself (for editing)
  */
@@ -44,7 +43,9 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum)
        char organizer_string[SIZ];
        icalproperty *attendee = NULL;
        char attendee_string[SIZ];
+       char buf[SIZ];
        int i;
+       int organizer_is_me = 0;
 
        now = time(NULL);
        strcpy(organizer_string, "");
@@ -207,24 +208,61 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum)
        }
        wprintf("</TEXTAREA></TD></TR>");
 
-       /* Determine who is the organizer of this event.  This is useless
-        * for now, but we'll need to determine "me" or "not me" soon.
+       /* For a new event, the user creating the event should be the
+        * organizer.  Set this field accordingly.
+        */
+       if (icalcomponent_get_first_property(vevent, ICAL_ORGANIZER_PROPERTY)
+          == NULL) {
+               sprintf(organizer_string, "MAILTO:%s", WC->cs_inet_email);
+               icalcomponent_add_property(vevent,
+                       icalproperty_new_organizer(organizer_string)
+               );
+       }
+
+       /* Determine who is the organizer of this event.
+        * We need to determine "me" or "not me."
         */
        organizer = icalcomponent_get_first_property(vevent,
                                                ICAL_ORGANIZER_PROPERTY);
        if (organizer != NULL) {
                strcpy(organizer_string, icalproperty_get_organizer(organizer));
+               if (!strncasecmp(organizer_string, "MAILTO:", 7)) {
+                       strcpy(organizer_string, &organizer_string[7]);
+                       striplt(organizer_string);
+                       serv_printf("ISME %s", organizer_string);
+                       serv_gets(buf);
+                       if (buf[0] == '2') {
+                               organizer_is_me = 1;
+                       }
+               }
        }
-       wprintf("<TR><TD>Organizer<BR>(FIXME)</TD><TD>");
+       wprintf("<TR><TD><B>Organizer</B></TD><TD>");
        escputs(organizer_string);
+       if (organizer_is_me) {
+               wprintf(" <FONT SIZE=-1><I>"
+                       "(you are the organizer)</I></FONT>\n");
+       }
+
+       /*
+        * Transmit the organizer as a hidden field.   We don't want the user
+        * to be able to change it, but we do want it fed back to the server,
+        * especially if this is a new event and there is no organizer already
+        * in the calendar object.
+        */
+       wprintf("<INPUT TYPE=\"hidden\" NAME=\"organizer\" VALUE=\"");
+       escputs(organizer_string);
+       wprintf("\">");
+
        wprintf("</TD></TR>\n");
 
        /* Attendees (do more with this later) */
        wprintf("<TR><TD><B>Attendes</B><BR>"
                "<FONT SIZE=-2>(Separate multiple attendees with commas)"
                "</FONT></TD><TD>"
-               "<TEXTAREA NAME=\"attendees\" wrap=soft "
-               "ROWS=3 COLS=80 WIDTH=80>\n");
+               "<TEXTAREA %s NAME=\"attendees\" wrap=soft "
+               "ROWS=3 COLS=80 WIDTH=80>\n",
+               (organizer_is_me ? "" : "DISABLED ")
+       );
        i = 0;
        for (attendee = icalcomponent_get_first_property(vevent, ICAL_ATTENDEE_PROPERTY); attendee != NULL; attendee = icalcomponent_get_next_property(vevent, ICAL_ATTENDEE_PROPERTY)) {
                strcpy(attendee_string, icalproperty_get_attendee(attendee));
@@ -290,12 +328,17 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum)
  */
 void save_individual_event(icalcomponent *supplied_vevent, long msgnum) {
        char buf[SIZ];
-       int delete_existing = 0;
        icalproperty *prop;
        icalcomponent *vevent;
        int created_new_vevent = 0;
        int all_day_event = 0;
        struct icaltimetype event_start;
+       icalproperty *attendee = NULL;
+       char attendee_string[SIZ];
+       int i;
+       int foundit;
+       char form_attendees[SIZ];
+       char organizer_string[SIZ];
 
        if (supplied_vevent != NULL) {
                vevent = supplied_vevent;
@@ -312,6 +355,7 @@ void save_individual_event(icalcomponent *supplied_vevent, long msgnum) {
                while (prop = icalcomponent_get_first_property(vevent,
                      ICAL_SUMMARY_PROPERTY), prop != NULL) {
                        icalcomponent_remove_property(vevent, prop);
+                       icalproperty_free(prop);
                }
                icalcomponent_add_property(vevent,
                        icalproperty_new_summary(bstr("summary")));
@@ -319,6 +363,7 @@ void save_individual_event(icalcomponent *supplied_vevent, long msgnum) {
                while (prop = icalcomponent_get_first_property(vevent,
                      ICAL_LOCATION_PROPERTY), prop != NULL) {
                        icalcomponent_remove_property(vevent, prop);
+                       icalproperty_free(prop);
                }
                icalcomponent_add_property(vevent,
                        icalproperty_new_location(bstr("location")));
@@ -326,6 +371,7 @@ void save_individual_event(icalcomponent *supplied_vevent, long msgnum) {
                while (prop = icalcomponent_get_first_property(vevent,
                      ICAL_DESCRIPTION_PROPERTY), prop != NULL) {
                        icalcomponent_remove_property(vevent, prop);
+                       icalproperty_free(prop);
                }
                icalcomponent_add_property(vevent,
                        icalproperty_new_description(bstr("description")));
@@ -333,11 +379,11 @@ void save_individual_event(icalcomponent *supplied_vevent, long msgnum) {
                while (prop = icalcomponent_get_first_property(vevent,
                      ICAL_DTSTART_PROPERTY), prop != NULL) {
                        icalcomponent_remove_property(vevent, prop);
+                       icalproperty_free(prop);
                }
 
                if (!strcmp(bstr("alldayevent"), "yes")) {
                        all_day_event = 1;
-                       lprintf(9, "*** all day event ***\n");
                }
                else {
                        all_day_event = 0;
@@ -374,10 +420,12 @@ void save_individual_event(icalcomponent *supplied_vevent, long msgnum) {
                while (prop = icalcomponent_get_first_property(vevent,
                      ICAL_DTEND_PROPERTY), prop != NULL) {
                        icalcomponent_remove_property(vevent, prop);
+                       icalproperty_free(prop);
                }
                while (prop = icalcomponent_get_first_property(vevent,
                      ICAL_DURATION_PROPERTY), prop != NULL) {
                        icalcomponent_remove_property(vevent, prop);
+                       icalproperty_free(prop);
                }
 
                if (all_day_event == 0) {
@@ -397,7 +445,75 @@ void save_individual_event(icalcomponent *supplied_vevent, long msgnum) {
                        );
                }
 
-               /* Serialize it and save it to the message base */
+               /* Set the organizer, only if one does not already exist *and*
+                * the form is supplying one
+                */
+               strcpy(buf, bstr("organizer"));
+               if ( (icalcomponent_get_first_property(vevent,
+                  ICAL_ORGANIZER_PROPERTY) == NULL) 
+                  && (strlen(buf) > 0) ) {
+
+                       /* set new organizer */
+                       sprintf(organizer_string, "MAILTO:%s", buf);
+                       icalcomponent_add_property(vevent,
+                               icalproperty_new_organizer(organizer_string)
+                       );
+
+               }
+
+               /*
+                * Add any new attendees listed in the web form
+                */
+               strcpy(form_attendees, bstr("attendees"));
+               for (i=0; i<num_tokens(form_attendees, ','); ++i) {
+                       extract_token(buf, form_attendees, i, ',');
+                       striplt(buf);
+                       if (strlen(buf) > 0) {
+                               lprintf(9, "Attendee: <%s>\n", buf);
+                               sprintf(attendee_string, "MAILTO:%s", buf);
+                               foundit = 0;
+
+                               for (attendee = icalcomponent_get_first_property(vevent, ICAL_ATTENDEE_PROPERTY); attendee != NULL; attendee = icalcomponent_get_next_property(vevent, ICAL_ATTENDEE_PROPERTY)) {
+                                       if (!strcasecmp(attendee_string,
+                                          icalproperty_get_attendee(attendee)))
+                                               ++foundit;
+                               }
+
+
+                               if (foundit == 0) {
+                                       icalcomponent_add_property(vevent,
+                                               icalproperty_new_attendee(attendee_string)
+                                       );
+                               }
+                       }
+               }
+
+               /*
+                * Remove any attendees *not* listed in the web form
+                */
+STARTOVER:
+               for (attendee = icalcomponent_get_first_property(vevent, ICAL_ATTENDEE_PROPERTY); attendee != NULL; attendee = icalcomponent_get_next_property(vevent, ICAL_ATTENDEE_PROPERTY)) {
+                       strcpy(attendee_string, icalproperty_get_attendee(attendee));
+                       if (!strncasecmp(attendee_string, "MAILTO:", 7)) {
+                               strcpy(attendee_string, &attendee_string[7]);
+                               striplt(attendee_string);
+                               foundit = 0;
+                               for (i=0; i<num_tokens(form_attendees, ','); ++i) {
+                                       extract_token(buf, form_attendees, i, ',');
+                                       striplt(buf);
+                                       if (!strcasecmp(buf, attendee_string)) ++foundit;
+                               }
+                               if (foundit == 0) {
+                                       icalcomponent_remove_property(vevent, attendee);
+                                       icalproperty_free(attendee);
+                                       goto STARTOVER;
+                               }
+                       }
+               }
+
+               /*
+                * Serialize it and save it to the message base
+                */
                serv_puts("ENT0 1|||4");
                serv_gets(buf);
                if (buf[0] == '4') {
@@ -405,18 +521,13 @@ void save_individual_event(icalcomponent *supplied_vevent, long msgnum) {
                        serv_puts("");
                        serv_puts(icalcomponent_as_ical_string(vevent));
                        serv_puts("000");
-                       delete_existing = 1;
                }
        }
 
        /*
-        * If the user clicked 'Delete' then delete it, period.
+        * If the user clicked 'Delete' then delete it.
         */
-       if (!strcasecmp(bstr("sc"), "Delete")) {
-               delete_existing = 1;
-       }
-
-       if ( (delete_existing) && (msgnum > 0L) ) {
+       if ( (!strcasecmp(bstr("sc"), "Delete")) && (msgnum > 0L) ) {
                serv_printf("DELE %ld", atol(bstr("msgnum")));
                serv_gets(buf);
        }