33 #include <libical/ical.h> 34 #include <ne_session.h> 36 #include <ne_request.h> 38 #include <ne_redirect.h> 39 #include <libxml/xmlmemory.h> 40 #include <libxml/parser.h> 55 .description =
"CalDAV calendars",
80 ne_session_destroy(pvt->
session);
82 ne_uri_free(&pvt->
uri);
100 struct ast_str **response = data;
106 memcpy(tmp, block, len);
123 ne_strnzcpy(username, pvt->
user, NE_ABUFSIZ);
124 ne_strnzcpy(secret, pvt->
secret, NE_ABUFSIZ);
131 if (st->code < 200 || st->code > 299) {
132 ast_debug(1,
"Unexpected response from server, %d: %s\n", st->code, st->reason_phrase);
155 snprintf(buf,
sizeof(buf),
"%s%s", pvt->
uri.path, subdir ?
ast_str_buffer(subdir) :
"");
157 req = ne_request_create(pvt->
session, method, buf);
160 ne_add_request_header(req,
"Content-type",
ast_strlen_zero(content_type) ?
"text/xml" : content_type);
161 ne_add_request_header(req,
"Depth",
"1");
163 ret = ne_request_dispatch(req);
164 ne_request_destroy(req);
179 icalcomponent *calendar, *icalevent;
180 icaltimezone *utc = icaltimezone_get_utc_timezone();
188 if (!(event->
start && event->
end)) {
201 unsigned short val[8];
203 for (x = 0; x < 8; x++) {
207 (
unsigned)val[0], (
unsigned)val[1], (
unsigned)val[2],
208 (
unsigned)val[3], (
unsigned)val[4], (
unsigned)val[5],
209 (
unsigned)val[6], (
unsigned)val[7]);
212 calendar = icalcomponent_new(ICAL_VCALENDAR_COMPONENT);
213 icalcomponent_add_property(calendar, icalproperty_new_version(
"2.0"));
214 icalcomponent_add_property(calendar, icalproperty_new_prodid(
"-//Digium, Inc.//res_caldav//EN"));
216 icalevent = icalcomponent_new(ICAL_VEVENT_COMPONENT);
217 icalcomponent_add_property(icalevent, icalproperty_new_dtstamp(icaltime_current_time_with_zone(utc)));
218 icalcomponent_add_property(icalevent, icalproperty_new_uid(event->
uid));
219 icalcomponent_add_property(icalevent, icalproperty_new_dtstart(icaltime_from_timet_with_zone(event->
start, 0, utc)));
220 icalcomponent_add_property(icalevent, icalproperty_new_dtend(icaltime_from_timet_with_zone(event->
end, 0, utc)));
222 icalcomponent_add_property(icalevent, icalproperty_new_organizer(event->
organizer));
225 icalcomponent_add_property(icalevent, icalproperty_new_summary(event->
summary));
228 icalcomponent_add_property(icalevent, icalproperty_new_description(event->
description));
231 icalcomponent_add_property(icalevent, icalproperty_new_location(event->
location));
234 icalcomponent_add_property(icalevent, icalproperty_new_categories(event->
categories));
237 icalcomponent_add_property(icalevent, icalproperty_new_priority(event->
priority));
242 icalcomponent_add_property(icalevent, icalproperty_new_status(ICAL_STATUS_CONFIRMED));
246 icalcomponent_add_property(icalevent, icalproperty_new_status(ICAL_STATUS_TENTATIVE));
250 icalcomponent_add_property(icalevent, icalproperty_new_status(ICAL_STATUS_NONE));
253 icalcomponent_add_component(calendar, icalevent);
255 ast_str_append(&body, 0,
"%s", icalcomponent_as_ical_string(calendar));
256 ast_str_set(&subdir, 0,
"%s%s.ics", pvt->
url[strlen(pvt->
url) - 1] ==
'/' ?
"" :
"/", event->
uid);
258 if ((response =
caldav_request(pvt,
"PUT", body, subdir,
"text/calendar"))) {
278 struct ast_str *body, *response;
279 icaltimezone *utc = icaltimezone_get_utc_timezone();
280 icaltimetype start,
end;
281 const char *start_str, *end_str;
288 start = icaltime_from_timet_with_zone(start_time, 0, utc);
289 end = icaltime_from_timet_with_zone(end_time, 0, utc);
290 start_str = icaltime_as_ical_string(start);
291 end_str = icaltime_as_ical_string(end);
298 "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n" 299 "<C:calendar-query xmlns:D=\"DAV:\" xmlns:C=\"urn:ietf:params:xml:ns:caldav\">\n" 301 " <C:calendar-data>\n" 302 " <C:expand start=\"%s\" end=\"%s\"/>\n" 303 " </C:calendar-data>\n" 306 " <C:comp-filter name=\"VCALENDAR\">\n" 307 " <C:comp-filter name=\"VEVENT\">\n" 308 " <C:time-range start=\"%s\" end=\"%s\"/>\n" 309 " </C:comp-filter>\n" 310 " </C:comp-filter>\n" 312 "</C:calendar-query>\n", start_str, end_str, start_str, end_str);
330 tm.
tm_mon = time.month - 1;
353 icaltimezone *utc = icaltimezone_get_utc_timezone();
355 icalcomponent *valarm;
357 struct icaltriggertype trigger;
359 if (!(pvt && pvt->
owner)) {
369 start = icalcomponent_get_dtstart(comp);
370 end = icalcomponent_get_dtend(comp);
376 if ((prop = icalcomponent_get_first_property(comp, ICAL_SUMMARY_PROPERTY))) {
380 if ((prop = icalcomponent_get_first_property(comp, ICAL_DESCRIPTION_PROPERTY))) {
384 if ((prop = icalcomponent_get_first_property(comp, ICAL_ORGANIZER_PROPERTY))) {
388 if ((prop = icalcomponent_get_first_property(comp, ICAL_LOCATION_PROPERTY))) {
392 if ((prop = icalcomponent_get_first_property(comp, ICAL_CATEGORIES_PROPERTY))) {
396 if ((prop = icalcomponent_get_first_property(comp, ICAL_PRIORITY_PROPERTY))) {
397 event->priority = icalvalue_get_integer(icalproperty_get_value(prop));
400 if ((prop = icalcomponent_get_first_property(comp, ICAL_UID_PROPERTY))) {
403 ast_log(
LOG_WARNING,
"No UID found, but one is required. Generating, but updates may not be acurate\n");
408 snprintf(tmp,
sizeof(tmp),
"%ld", event->
start);
414 for (prop = icalcomponent_get_first_property(comp, ICAL_ATTENDEE_PROPERTY);
415 prop; prop = icalcomponent_get_next_property(comp, ICAL_ATTENDEE_PROPERTY)) {
419 if (!(attendee =
ast_calloc(1,
sizeof(*attendee)))) {
423 data = icalproperty_get_attendee(prop);
436 if (!(valarm = icalcomponent_get_first_component(comp, ICAL_VALARM_COMPONENT))) {
442 if (!(prop = icalcomponent_get_first_property(valarm, ICAL_TRIGGER_PROPERTY))) {
449 trigger = icalproperty_get_trigger(prop);
451 if (icaltriggertype_is_null_trigger(trigger)) {
458 if (!icaltime_is_null_time(trigger.time)) {
459 tmp = icaltime_convert_to_zone(trigger.time, utc);
460 event->alarm = icaltime_as_timet_with_zone(tmp, utc);
464 tmp = icaltime_add(start, trigger.duration);
465 event->alarm = icaltime_as_timet_with_zone(tmp, icaltime_get_timezone(start));
486 const xmlChar *localname,
const xmlChar *
prefix,
const xmlChar *
uri,
487 int nb_namespaces,
const xmlChar **namespaces,
488 int nb_attributes,
int nb_defaulted,
const xmlChar **attributes)
501 const xmlChar *localname,
const xmlChar *
prefix,
const xmlChar *
uri)
504 struct icaltimetype start, end;
505 icaltimezone *utc = icaltimezone_get_utc_timezone();
519 start = icaltime_from_timet_with_zone(state->
start, 0, utc);
520 end = icaltime_from_timet_with_zone(state->
end, 0, utc);
523 for (iter = icalcomponent_get_first_component(comp, ICAL_VEVENT_COMPONENT);
525 iter = icalcomponent_get_next_component(comp, ICAL_VEVENT_COMPONENT))
530 icalcomponent_free(comp);
542 tmp = xmlStrndup(ch, len);
552 xmlSAXHandler saxHandler;
585 memset(&saxHandler, 0,
sizeof(saxHandler));
586 saxHandler.initialized = XML_SAX2_MAGIC;
601 static int verify_cert(
void *userdata,
int failures,
const ne_ssl_certificate *cert)
616 ast_log(
LOG_ERROR,
"You must enable calendar support for res_caldav to load\n");
639 ast_log(
LOG_ERROR,
"Could not allocate space for fetching events for calendar: %s\n", cal->
name);
655 if (!strcasecmp(v->
name,
"url")) {
657 }
else if (!strcasecmp(v->
name,
"user")) {
659 }
else if (!strcasecmp(v->
name,
"secret")) {
681 pvt->
uri.scheme =
"http";
684 if (pvt->
uri.port == 0) {
685 pvt->
uri.port = ne_uri_defaultport(pvt->
uri.scheme);
688 pvt->
session = ne_session_create(pvt->
uri.scheme, pvt->
uri.host, pvt->
uri.port);
689 ne_redirect_register(pvt->
session);
691 if (!strcasecmp(pvt->
uri.scheme,
"https")) {
692 ne_ssl_trust_default_ca(pvt->
session);
708 struct timespec ts = {0,};
721 ast_debug(10,
"Skipping refresh since we got a shutdown signal\n");
756 .requires =
"res_calendar",
struct ast_variable * next
Asterisk locking-related definitions:
int ast_calendar_register(struct ast_calendar_tech *tech)
Register a new calendar technology.
Asterisk main include file. File version handling, generic pbx functions.
static int auth_credentials(void *userdata, const char *realm, int attempts, char *username, char *secret)
static time_t icalfloat_to_timet(icaltimetype time)
struct ast_variable * ast_variable_browse(const struct ast_config *config, const char *category_name)
static int load_module(void)
char * ast_str_buffer(const struct ast_str *buf)
Returns the string buffer within the ast_str buf.
#define ao2_callback(c, flags, cb_fn, arg)
struct ast_calendar_attendee * next
Structure for variables, used for configurations and for channel variables.
int ast_str_append(struct ast_str **buf, ssize_t max_len, const char *fmt,...)
Append to a thread local dynamic string.
const ast_string_field uid
enum ast_calendar_busy_state busy_state
struct timeval ast_tvnow(void)
Returns current timeval. Meant to replace calls to gettimeofday().
#define AST_DECLARE_STRING_FIELDS(field_list)
Declare the fields needed in a structure.
#define ast_mutex_lock(a)
#define ast_strdup(str)
A wrapper for strdup()
static void handle_start_element(void *data, const xmlChar *localname, const xmlChar *prefix, const xmlChar *uri, int nb_namespaces, const xmlChar **namespaces, int nb_attributes, int nb_defaulted, const xmlChar **attributes)
static void handle_end_element(void *data, const xmlChar *localname, const xmlChar *prefix, const xmlChar *uri)
const ast_string_field description
static void handle_characters(void *data, const xmlChar *ch, int len)
const ast_string_field organizer
#define ast_strlen_zero(foo)
int ast_str_set(struct ast_str **buf, ssize_t max_len, const char *fmt,...)
Set a dynamic string using variable arguments.
static struct ast_str * caldav_request(struct caldav_pvt *pvt, const char *method, struct ast_str *req_body, struct ast_str *subdir, const char *content_type)
void ast_calendar_merge_events(struct ast_calendar *cal, struct ao2_container *new_events)
Add an event to the list of events for a calendar.
Configuration File Parser.
#define ast_debug(level,...)
Log a DEBUG message.
const ast_string_field location
static void caldav_destructor(void *obj)
General Asterisk PBX channel definitions.
#define ast_string_field_init(x, size)
Initialize a field pool and fields.
struct ao2_container * ast_calendar_event_container_alloc(void)
Allocate an astobj2 container for ast_calendar_event objects.
#define AST_STRING_FIELD(name)
Declare a string field.
#define ao2_ref(o, delta)
long int ast_random(void)
A general API for managing calendar events with Asterisk.
#define ast_malloc(len)
A wrapper for malloc()
static int debug_response_handler(void *userdata, ne_request *req, const ne_status *st)
static int fetch_response_reader(void *data, const char *block, size_t len)
const ast_string_field name
static const xmlChar * caldav_node_nsuri
static struct ast_calendar_tech caldav_tech
static int update_caldav(struct caldav_pvt *pvt)
const ast_string_field secret
struct ast_calendar_event * ast_calendar_event_alloc(struct ast_calendar *cal)
Allocate an astobj2 ast_calendar_event object.
#define AST_LIST_INSERT_TAIL(head, elm, field)
Appends a list entry to the tail of a list.
struct ast_calendar * owner
static struct ast_str * caldav_get_events_between(struct caldav_pvt *pvt, time_t start_time, time_t end_time)
The descriptor of a dynamic string XXX storage will be optimized later if needed We use the ts field ...
struct association categories[]
static ast_mutex_t refreshlock
static int len(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t buflen)
static void * caldav_load_calendar(void *data)
static const xmlChar * caldav_node_localname
#define ao2_alloc(data_size, destructor_fn)
static void * unref_caldav(void *obj)
#define ast_calloc(num, len)
A wrapper for calloc()
const struct ast_config * ast_calendar_config_acquire(void)
Grab and lock pointer to the calendar config (read only)
Module has failed to load, may be in an inconsistent state.
struct ast_calendar_event * ast_calendar_unref_event(struct ast_calendar_event *event)
Unreference an ast_calendar_event.
structure to hold users read from users.conf
#define ast_string_field_build(x, field, fmt, args...)
Set a field to a complex (built) value.
const ast_string_field categories
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS|AST_MODFLAG_LOAD_ORDER, "HTTP Phone Provisioning",.support_level=AST_MODULE_SUPPORT_EXTENDED,.load=load_module,.unload=unload_module,.reload=reload,.load_pri=AST_MODPRI_CHANNEL_DEPEND,.requires="http",)
struct ast_calendar_event::attendees attendees
void ast_str_reset(struct ast_str *buf)
Reset the content of a dynamic string. Useful before a series of ast_str_append.
void ast_calendar_unregister(struct ast_calendar_tech *tech)
Unregister a new calendar technology.
size_t ast_str_strlen(const struct ast_str *buf)
Returns the current length of the string stored within buf.
static int verify_cert(void *userdata, int failures, const ne_ssl_certificate *cert)
struct timeval ast_mktime(struct ast_tm *const tmp, const char *zone)
Timezone-independent version of mktime(3).
Individual calendaring technology data.
static int unload_module(void)
const ast_string_field url
#define ast_mutex_init(pmutex)
Asterisk calendar structure.
void ast_calendar_config_release(void)
Release the calendar config.
#define ASTERISK_GPL_KEY
The text the key() function should return.
Asterisk module definitions.
const ast_string_field summary
#define ast_string_field_free_memory(x)
free all memory - to be called before destroying the object
#define ast_cond_timedwait(cond, mutex, time)
static int caldav_write_event(struct ast_calendar_event *event)
Structure for mutex and tracking information.
const ast_string_field user
#define ast_str_create(init_len)
Create a malloc'ed dynamic length string.
#define ast_mutex_unlock(a)
static char prefix[MAX_PREFIX]
#define ast_string_field_set(x, field, data)
Set a field to a simple string value.
struct ao2_container * events
#define ao2_link(container, obj)
static void caldav_add_event(icalcomponent *comp, struct icaltime_span *span, void *data)