* Remove leading '|' from references if present
[citadel.git] / webcit / availability.c
blobf71dd1299bad7a8a722274ef6fc2598276e2f072
1 /*
2 * $Id$
4 */
7 #include "webcit.h"
8 #include "webserver.h"
11 * Utility function to fetch a VFREEBUSY type of thing for any specified user.
13 icalcomponent *get_freebusy_for_user(char *who) {
14 long nLines;
15 char buf[SIZ];
16 StrBuf *serialized_fb = NewStrBuf();
17 icalcomponent *fb = NULL;
19 serv_printf("ICAL freebusy|%s", who);
20 serv_getln(buf, sizeof buf);
21 if (buf[0] == '1') {
22 read_server_text(serialized_fb, &nLines);
25 if (serialized_fb == NULL) {
26 return NULL;
29 fb = icalcomponent_new_from_string(ChrPtr(serialized_fb));
30 FreeStrBuf(&serialized_fb);
31 if (fb == NULL) {
32 return NULL;
35 return(fb);
40 * Check to see if two events overlap.
41 * (This function is used in both Citadel and WebCit. If you change it in
42 * one place, change it in the other. We should seriously consider moving
43 * this function upstream into libical.)
45 * Returns nonzero if they do overlap.
47 int ical_ctdl_is_overlap(
48 struct icaltimetype t1start,
49 struct icaltimetype t1end,
50 struct icaltimetype t2start,
51 struct icaltimetype t2end
52 ) {
54 if (icaltime_is_null_time(t1start)) return(0);
55 if (icaltime_is_null_time(t2start)) return(0);
57 /* if either event lacks end time, assume end = start */
58 if (icaltime_is_null_time(t1end))
59 memcpy(&t1end, &t1start, sizeof(struct icaltimetype));
60 else {
61 if (t1end.is_date && icaltime_compare(t1start, t1end)) {
63 * the end date is non-inclusive so adjust it by one
64 * day because our test is inclusive, note that a day is
65 * not too much because we are talking about all day
66 * events
67 * if start = end we assume that nevertheless the whole
68 * day is meant
70 icaltime_adjust(&t1end, -1, 0, 0, 0);
74 if (icaltime_is_null_time(t2end))
75 memcpy(&t2end, &t2start, sizeof(struct icaltimetype));
76 else {
77 if (t2end.is_date && icaltime_compare(t2start, t2end)) {
78 icaltime_adjust(&t2end, -1, 0, 0, 0);
82 /* First, check for all-day events */
83 if (t1start.is_date || t2start.is_date) {
84 /* If event 1 ends before event 2 starts, we're in the clear. */
85 if (icaltime_compare_date_only(t1end, t2start) < 0) return(0);
87 /* If event 2 ends before event 1 starts, we're also ok. */
88 if (icaltime_compare_date_only(t2end, t1start) < 0) return(0);
90 return(1);
93 /* lprintf (9, "Comparing t1start %d:%d t1end %d:%d t2start %d:%d t2end %d:%d \n",
94 t1start.hour, t1start.minute, t1end.hour, t1end.minute,
95 t2start.hour, t2start.minute, t2end.hour, t2end.minute);
98 /* Now check for overlaps using date *and* time. */
100 /* If event 1 ends before event 2 starts, we're in the clear. */
101 if (icaltime_compare(t1end, t2start) <= 0) return(0);
102 /* lprintf(9, "first passed\n"); */
104 /* If event 2 ends before event 1 starts, we're also ok. */
105 if (icaltime_compare(t2end, t1start) <= 0) return(0);
106 /* lprintf(9, "second passed\n"); */
108 /* Otherwise, they overlap. */
109 return(1);
115 * \brief dig availability on citserver
116 * Back end function for check_attendee_availability()
117 * This one checks an individual attendee against a supplied
118 * event start and end time. All these fields have already been
119 * broken out.
120 * \param attendee_string name of the attendee
121 * \param event_start starttime of the event to check
122 * \param event_end endtime of the event to check
123 * \return The result is placed in 'annotation'.
125 void check_individual_attendee(char *attendee_string,
126 struct icaltimetype event_start,
127 struct icaltimetype event_end,
128 char *annotation) {
130 icalcomponent *fbc = NULL;
131 icalcomponent *fb = NULL;
132 icalproperty *thisfb = NULL;
133 struct icalperiodtype period;
136 * Set to 'unknown' right from the beginning. Unless we learn
137 * something else, that's what we'll go with.
139 strcpy(annotation, _("availability unknown"));
141 fbc = get_freebusy_for_user(attendee_string);
142 if (fbc == NULL) {
143 return;
147 * Make sure we're looking at a VFREEBUSY by itself. What we're probably
148 * looking at initially is a VFREEBUSY encapsulated in a VCALENDAR.
150 if (icalcomponent_isa(fbc) == ICAL_VCALENDAR_COMPONENT) {
151 fb = icalcomponent_get_first_component(fbc, ICAL_VFREEBUSY_COMPONENT);
153 else if (icalcomponent_isa(fbc) == ICAL_VFREEBUSY_COMPONENT) {
154 fb = fbc;
157 /** Iterate through all FREEBUSY's looking for conflicts. */
158 if (fb != NULL) {
160 strcpy(annotation, _("free"));
162 for (thisfb = icalcomponent_get_first_property(fb, ICAL_FREEBUSY_PROPERTY);
163 thisfb != NULL;
164 thisfb = icalcomponent_get_next_property(fb, ICAL_FREEBUSY_PROPERTY) ) {
166 /** Do the check */
167 period = icalproperty_get_freebusy(thisfb);
168 if (ical_ctdl_is_overlap(period.start, period.end,
169 event_start, event_end)) {
170 strcpy(annotation, _("BUSY"));
176 icalcomponent_free(fbc);
183 * \brief check attendees availability
184 * Check the availability of all attendees for an event (when possible)
185 * and annotate accordingly.
186 * \param vevent the event which should be compared with attendees calendar
188 void check_attendee_availability(icalcomponent *vevent) {
189 icalproperty *attendee = NULL;
190 icalproperty *dtstart_p = NULL;
191 icalproperty *dtend_p = NULL;
192 struct icaltimetype dtstart_t;
193 struct icaltimetype dtend_t;
194 char attendee_string[SIZ];
195 char annotated_attendee_string[SIZ];
196 char annotation[SIZ];
198 if (vevent == NULL) {
199 return;
203 * If we're looking at a fully encapsulated VCALENDAR
204 * rather than a VEVENT component, attempt to use the first
205 * relevant VEVENT subcomponent. If there is none, the
206 * NULL returned by icalcomponent_get_first_component() will
207 * tell the next iteration of this function to create a
208 * new one.
210 if (icalcomponent_isa(vevent) == ICAL_VCALENDAR_COMPONENT) {
211 check_attendee_availability(
212 icalcomponent_get_first_component(
213 vevent, ICAL_VEVENT_COMPONENT
216 return;
219 ical_dezonify(vevent); /**< Convert everything to UTC */
222 * Learn the start and end times.
224 dtstart_p = icalcomponent_get_first_property(vevent, ICAL_DTSTART_PROPERTY);
225 if (dtstart_p != NULL) dtstart_t = icalproperty_get_dtstart(dtstart_p);
227 dtend_p = icalcomponent_get_first_property(vevent, ICAL_DTEND_PROPERTY);
228 if (dtend_p != NULL) dtend_t = icalproperty_get_dtend(dtend_p);
231 * Iterate through attendees.
233 for (attendee = icalcomponent_get_first_property(vevent, ICAL_ATTENDEE_PROPERTY);
234 attendee != NULL;
235 attendee = icalcomponent_get_next_property(vevent, ICAL_ATTENDEE_PROPERTY)) {
237 strcpy(attendee_string, icalproperty_get_attendee(attendee));
238 if (!strncasecmp(attendee_string, "MAILTO:", 7)) {
240 /** screen name or email address */
241 strcpy(attendee_string, &attendee_string[7]);
242 striplt(attendee_string);
244 check_individual_attendee(attendee_string,
245 dtstart_t, dtend_t,
246 annotation);
248 /** Replace the attendee name with an annotated one. */
249 snprintf(annotated_attendee_string, sizeof annotated_attendee_string,
250 "MAILTO:%s (%s)", attendee_string, annotation);
251 icalproperty_set_attendee(attendee, annotated_attendee_string);