Compare commits

...

3 Commits

Author SHA1 Message Date
windy-wang d688e5fd4c
Merge f655ce81d3 into 5cb74797fe 2025-01-17 16:40:18 +00:00
Aron Podrigal 5cb74797fe
[mod_pgsql] err is now set correctly (dbh:last_error())
New function, `void pgsql_handle_set_error_if_not_set(switch_pgsql_handle_t *handle, char **err)` has been added to mod_pgsql module. This function is now called at several points where an error occurred but *err was not yet set.
2025-01-17 18:51:45 +03:00
windy-wang f655ce81d3 add jason api for mod_hiredis 2020-04-07 10:17:56 +08:00
2 changed files with 91 additions and 1 deletions

View File

@ -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;
}

View File

@ -106,6 +106,22 @@ char * pgsql_handle_get_error(switch_pgsql_handle_t *handle)
return err_str;
}
void pgsql_handle_set_error_if_not_set(switch_pgsql_handle_t *handle, char **err)
{
char *err_str;
if (err && !(*err)) {
err_str = pgsql_handle_get_error(handle);
if (zstr(err_str)) {
switch_safe_free(err_str);
err_str = strdup((char *)"SQL ERROR!");
}
*err = err_str;
}
}
static int db_is_up(switch_pgsql_handle_t *handle)
{
int ret = 0;
@ -553,8 +569,15 @@ switch_status_t pgsql_handle_exec_detailed(const char *file, const char *func, i
goto error;
}
return pgsql_finish_results(handle);
if (pgsql_finish_results(handle) != SWITCH_STATUS_SUCCESS) {
goto error;
}
return SWITCH_STATUS_SUCCESS;
error:
pgsql_handle_set_error_if_not_set(handle, err);
return SWITCH_STATUS_FALSE;
}
@ -630,6 +653,7 @@ done:
pgsql_free_result(&result);
if (pgsql_finish_results(handle) != SWITCH_STATUS_SUCCESS) {
pgsql_handle_set_error_if_not_set(handle, err);
sstatus = SWITCH_STATUS_FALSE;
}
@ -638,6 +662,7 @@ done:
error:
pgsql_free_result(&result);
pgsql_handle_set_error_if_not_set(handle, err);
return SWITCH_STATUS_FALSE;
}
@ -1050,6 +1075,8 @@ switch_status_t pgsql_handle_callback_exec_detailed(const char *file, const char
return SWITCH_STATUS_SUCCESS;
error:
pgsql_handle_set_error_if_not_set(handle, err);
return SWITCH_STATUS_FALSE;
}