Compare commits
3 Commits
d688e5fd4c
...
a3e67f8c56
Author | SHA1 | Date |
---|---|---|
windy-wang | a3e67f8c56 | |
junction1153b | 3b58ebc5f3 | |
windy-wang | f655ce81d3 |
|
@ -179,6 +179,67 @@ SWITCH_STANDARD_API(raw_api)
|
|||
return status;
|
||||
}
|
||||
|
||||
SWITCH_STANDARD_JSON_API(js_raw_api)
|
||||
{
|
||||
hiredis_profile_t *profile = NULL;
|
||||
char *response = NULL;
|
||||
switch_status_t status = SWITCH_STATUS_SUCCESS;
|
||||
cJSON *data = cJSON_GetObjectItem(json, "data");
|
||||
cJSON *complex;
|
||||
const char *profile_str;
|
||||
const char *cmd;
|
||||
const char *arg;
|
||||
char *cmdline = NULL;
|
||||
|
||||
if (!data) return SWITCH_STATUS_FALSE;
|
||||
|
||||
*json_reply = cJSON_CreateObject();
|
||||
|
||||
complex = cJSON_GetObjectItem(data, "complex");
|
||||
profile_str = cJSON_GetObjectCstr(data, "profile");
|
||||
cmd = cJSON_GetObjectCstr(data, "cmd");
|
||||
arg = cJSON_GetObjectCstr(data, "arg");
|
||||
|
||||
if (zstr(profile_str)) profile_str = "default";
|
||||
|
||||
profile = switch_core_hash_find(mod_hiredis_globals.profiles, profile_str);
|
||||
|
||||
if (!profile) {
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "hiredis: Unable to locate profile[%s]\n", profile_str);
|
||||
cJSON_AddStringToObject(*json_reply, "error", "unable to locate profile");
|
||||
switch_goto_status(SWITCH_STATUS_GENERR, done);
|
||||
}
|
||||
|
||||
if (zstr(cmd) || zstr(arg)) {
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "missing cmd or arg\n");
|
||||
return SWITCH_STATUS_FALSE;
|
||||
}
|
||||
|
||||
if (cJSON_isTrue(complex)) {
|
||||
cmdline = switch_mprintf("0x%" PRIXPTR " %s %%s", (void *)arg, cmd);
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "%s\n", cmdline);
|
||||
} else {
|
||||
cmdline = switch_mprintf("%s %s", cmd, arg);
|
||||
}
|
||||
|
||||
status = hiredis_profile_execute_sync(profile, NULL, &response, cmdline);
|
||||
|
||||
if (status != SWITCH_STATUS_SUCCESS) {
|
||||
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "hiredis: profile[%s] error executing [%s] reason:[%s]\n", profile_str, cmd, response ? response : "");
|
||||
if (response) cJSON_AddStringToObject(*json_reply, "error", response);
|
||||
switch_goto_status(SWITCH_STATUS_GENERR, done);
|
||||
}
|
||||
|
||||
if (response) {
|
||||
if (response) cJSON_AddStringToObject(*json_reply, "response", response);
|
||||
}
|
||||
|
||||
done:
|
||||
switch_safe_free(cmdline);
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
/*
|
||||
SWITCH_LIMIT_INCR(name) static switch_status_t name (switch_core_session_t *session, const char *realm, const char *resource,
|
||||
const int max, const int interval)
|
||||
|
@ -423,6 +484,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_hiredis_load)
|
|||
{
|
||||
switch_application_interface_t *app_interface;
|
||||
switch_api_interface_t *api_interface;
|
||||
switch_json_api_interface_t *json_api_interface;
|
||||
switch_limit_interface_t *limit_interface;
|
||||
|
||||
memset(&mod_hiredis_globals, 0, sizeof(mod_hiredis_globals));
|
||||
|
@ -440,6 +502,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_hiredis_load)
|
|||
hiredis_limit_reset, hiredis_limit_status, hiredis_limit_interval_reset);
|
||||
SWITCH_ADD_APP(app_interface, "hiredis_raw", "hiredis_raw", "hiredis_raw", raw_app, "", SAF_SUPPORT_NOMEDIA | SAF_ROUTING_EXEC | SAF_ZOMBIE_EXEC);
|
||||
SWITCH_ADD_API(api_interface, "hiredis_raw", "hiredis_raw", raw_api, "");
|
||||
SWITCH_ADD_JSON_API(json_api_interface, "hiredis", "hiredis", js_raw_api, "");
|
||||
|
||||
return SWITCH_STATUS_SUCCESS;
|
||||
}
|
||||
|
|
|
@ -254,7 +254,7 @@ char *generate_pai_str(private_object_t *tech_pvt)
|
|||
callee_number = switch_sanitize_number(switch_core_session_strdup(session, callee_number));
|
||||
callee_name = switch_sanitize_number(switch_core_session_strdup(session, callee_name));
|
||||
|
||||
if (!zstr(callee_number) && (zstr(ua) || !switch_stristr("polycom", ua))) {
|
||||
if (!zstr(callee_number) && (zstr(ua) || !switch_stristr("poly", ua))) {
|
||||
callee_number = switch_core_session_sprintf(session, "sip:%s@%s", callee_number, host);
|
||||
}
|
||||
|
||||
|
@ -2075,13 +2075,15 @@ static switch_status_t sofia_receive_message(switch_core_session_t *session, swi
|
|||
nua_info(tech_pvt->nh, SIPTAG_CONTENT_TYPE_STR("message/sipfrag"),
|
||||
TAG_IF(!zstr(tech_pvt->user_via), SIPTAG_VIA_STR(tech_pvt->user_via)), SIPTAG_PAYLOAD_STR(message), TAG_END());
|
||||
} else if (update_allowed && ua && (switch_channel_var_true(tech_pvt->channel, "update_ignore_ua") ||
|
||||
switch_stristr("polycom", ua) ||
|
||||
switch_stristr("poly", ua) ||
|
||||
(switch_stristr("aastra", ua) && !switch_stristr("Intelligate", ua)) ||
|
||||
(switch_stristr("cisco/spa50", ua) ||
|
||||
switch_stristr("cisco/spa525", ua)) ||
|
||||
switch_stristr("cisco/spa30", ua) ||
|
||||
switch_stristr("Fanvil", ua) ||
|
||||
switch_stristr("Grandstream", ua) ||
|
||||
switch_stristr("Ringotel", ua) ||
|
||||
switch_stristr("Groundwire", ua) ||
|
||||
switch_stristr("Yealink", ua) ||
|
||||
switch_stristr("Mitel", ua) ||
|
||||
switch_stristr("Panasonic", ua))) {
|
||||
|
@ -2152,7 +2154,7 @@ static switch_status_t sofia_receive_message(switch_core_session_t *session, swi
|
|||
SIPTAG_PAYLOAD_STR(message),
|
||||
TAG_IF(!zstr(session_id_header), SIPTAG_HEADER_STR(session_id_header)),
|
||||
TAG_END());
|
||||
} else if (ua && switch_stristr("polycom", ua)) {
|
||||
} else if (ua && switch_stristr("poly", ua)) {
|
||||
snprintf(message, sizeof(message), "P-Asserted-Identity: \"%s\" <%s>", msg->string_arg, tech_pvt->caller_profile->destination_number);
|
||||
nua_update(tech_pvt->nh,
|
||||
NUTAG_SESSION_TIMER(tech_pvt->session_timeout),
|
||||
|
|
|
@ -10476,7 +10476,7 @@ void sofia_handle_sip_i_invite(switch_core_session_t *session, nua_t *nua, sofia
|
|||
(!is_tcp && !is_tls && (zstr(network_ip) || !switch_check_network_list_ip(network_ip, profile->local_network)) &&
|
||||
profile->server_rport_level >= 2 && sip->sip_user_agent &&
|
||||
sip->sip_user_agent->g_string &&
|
||||
(!strncasecmp(sip->sip_user_agent->g_string, "Polycom", 7) || !strncasecmp(sip->sip_user_agent->g_string, "KIRK Wireless Server", 20)))
|
||||
(!strncasecmp(sip->sip_user_agent->g_string, "Poly", 4) || !strncasecmp(sip->sip_user_agent->g_string, "KIRK Wireless Server", 20)))
|
||||
) {
|
||||
if (sip->sip_via) {
|
||||
const char *port = sip->sip_via->v_port;
|
||||
|
|
|
@ -2501,7 +2501,7 @@ static char *gen_pidf(char *user_agent, char *id, char *url, char *open, char *r
|
|||
{
|
||||
char *ret = NULL;
|
||||
|
||||
if (switch_stristr("polycom", user_agent)) {
|
||||
if (switch_stristr("poly", user_agent)) {
|
||||
*ct = "application/xpidf+xml";
|
||||
|
||||
/* If unknown/none prpid is provided, just show the user as online. */
|
||||
|
|
|
@ -1661,7 +1661,7 @@ uint8_t sofia_reg_handle_register_token(nua_t *nua, sofia_profile_t *profile, nu
|
|||
if (!is_tcp && !is_tls && (zstr(network_ip) || !switch_check_network_list_ip(network_ip, profile->local_network)) &&
|
||||
profile->server_rport_level >= 2 && sip->sip_user_agent &&
|
||||
sip->sip_user_agent->g_string &&
|
||||
( !strncasecmp(sip->sip_user_agent->g_string, "Polycom", 7) ||
|
||||
( !strncasecmp(sip->sip_user_agent->g_string, "Poly", 4) ||
|
||||
!strncasecmp(sip->sip_user_agent->g_string, "KIRK Wireless Server", 20) ||
|
||||
!strncasecmp(sip->sip_user_agent->g_string, "ADTRAN_Total_Access", 19) )) {
|
||||
if (sip->sip_via) {
|
||||
|
|
Loading…
Reference in New Issue