/*** MODULEINFO
<depend>neon</depend>
<depend>ical</depend>
- <support_level>core</support_level>
+ <support_level>extended</support_level>
***/
#include "asterisk.h"
}
/* span->start & span->end may be dates or floating times which have no timezone,
- * which would mean that they should apply to the local timezone for all recepients.
+ * which would mean that they should apply to the local timezone for all recipients.
* For example, if a meeting was set for 1PM-2PM floating time, people in different time
* zones would not be scheduled at the same local times. Dates are often treated as
* floating times, so all day events will need to be converted--so we can trust the
}
}
- /* Get the attendees */
+ /*
+ * If comp has an RRULE and/or RDATE property, we need to check whether
+ * another vevent component supercedes this span. Such a component would
+ * have two characteristics:
+ * - its UID is the same as comp
+ * - its RECURRENCE-ID property is the same time as span->start
+ */
+ if (icalcomponent_get_first_property(comp, ICAL_RRULE_PROPERTY)
+ || icalcomponent_get_first_property(comp, ICAL_RDATE_PROPERTY)) {
+ icalcompiter comp_iter;
+ icaltimetype span_start = icaltime_from_timet_with_zone(
+ event->start, icaltime_is_date(start), icaltime_get_timezone(start));
+
+ icaltime_set_timezone(&span_start, icaltime_get_timezone(start));
+ for (comp_iter = icalcomponent_begin_component(pvt->data, ICAL_VEVENT_COMPONENT);
+ icalcompiter_deref(&comp_iter);
+ icalcompiter_next(&comp_iter)) {
+ icalcomponent *vevent = icalcompiter_deref(&comp_iter);
+ icalproperty *uid = icalcomponent_get_first_property(vevent, ICAL_UID_PROPERTY);
+
+ if (uid && !strcmp(icalproperty_get_value_as_string(uid), event->uid)) {
+ icaltimetype recurrence_id = icalcomponent_get_recurrenceid(vevent);
+
+ /* Set the same timezone that we want to compare against */
+ icaltime_set_timezone(&recurrence_id, icaltime_get_timezone(start));
+
+ if (!icaltime_compare(recurrence_id, span_start)
+ && icaltime_is_date(span_start) == icaltime_is_date(recurrence_id)) {
+ event = ast_calendar_unref_event(event);
+ return;
+ }
+ }
+ }
+ }
+
+ /* Get the attendees */
for (prop = icalcomponent_get_first_property(comp, ICAL_ATTENDEE_PROPERTY);
prop; prop = icalcomponent_get_next_property(comp, ICAL_ATTENDEE_PROPERTY)) {
struct ast_calendar_attendee *attendee;
start_time = icaltime_current_time_with_zone(icaltimezone_get_utc_timezone());
end_time = icaltime_current_time_with_zone(icaltimezone_get_utc_timezone());
end_time.second += pvt->owner->timeframe * 60;
- icaltime_normalize(end_time);
+ end_time = icaltime_normalize(end_time);
for (iter = icalcomponent_get_first_component(pvt->data, ICAL_VEVENT_COMPONENT);
iter;
}
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "Asterisk iCalendar .ics file integration",
- .support_level = AST_MODULE_SUPPORT_CORE,
+ .support_level = AST_MODULE_SUPPORT_EXTENDED,
.load = load_module,
.unload = unload_module,
.load_pri = AST_MODPRI_DEVSTATE_PLUGIN,