From 0ac9a16321ee93364acf1e96bc07bc441ab05ae4 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Tue, 13 Nov 2007 19:58:44 +0000 Subject: [PATCH] fix some stuff and add set_user func git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6239 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- .../applications/mod_dptools/mod_dptools.c | 62 +++++++++++++++++++ src/mod/applications/mod_limit/mod_limit.c | 26 ++++---- src/mod/endpoints/mod_sofia/sofia.c | 2 - src/mod/endpoints/mod_sofia/sofia_reg.c | 3 + 4 files changed, 78 insertions(+), 15 deletions(-) diff --git a/src/mod/applications/mod_dptools/mod_dptools.c b/src/mod/applications/mod_dptools/mod_dptools.c index e495943e54..ef2c488c0d 100644 --- a/src/mod/applications/mod_dptools/mod_dptools.c +++ b/src/mod/applications/mod_dptools/mod_dptools.c @@ -86,6 +86,67 @@ SWITCH_STANDARD_APP(exe_function) } } + +#define SET_USER_SYNTAX "@" +SWITCH_STANDARD_APP(set_user_function) +{ + switch_xml_t x_domain, xml = NULL, x_user, x_param, x_params; + char *user, *mailbox, *domain; + switch_channel_t *channel; + + channel = switch_core_session_get_channel(session); + assert(channel != NULL); + + if (switch_strlen_zero(data)) { + goto error; + } + + user = switch_core_session_strdup(session, data); + + if (!(domain = strchr(user, '@'))) { + goto error; + } + + *domain++ = '\0'; + + if (switch_xml_locate_user(user, domain, NULL, &xml, &x_domain, &x_user, NULL) != SWITCH_STATUS_SUCCESS) { + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "can't find user [%s@%s]\n", user, domain); + goto done; + } + + if ((mailbox = (char *)switch_xml_attr(x_user, "mailbox"))) { + switch_channel_set_variable(channel, "mailbox", mailbox); + } + + if ((x_params = switch_xml_child(x_user, "variables"))) { + for (x_param = switch_xml_child(x_params, "variable"); x_param; x_param = x_param->next) { + const char *var = switch_xml_attr(x_param, "name"); + const char *val = switch_xml_attr(x_param, "value"); + + if (var && val) { + switch_channel_set_variable(channel, var, val); + } + } + } + + switch_channel_set_variable(channel, "user_name", user); + switch_channel_set_variable(channel, "domain_name", domain); + + goto done; + + error: + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "No user@domain specified.\n"); + + done: + + if (xml) { + switch_xml_free(xml); + } + + +} + + SWITCH_STANDARD_APP(ring_ready_function) { switch_channel_t *channel; @@ -1390,6 +1451,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_dptools_load) SWITCH_ADD_APP(app_interface, "sched_broadcast", SCHED_BROADCAST_DESCR, SCHED_BROADCAST_DESCR, sched_broadcast_function, "[+]