fix a few bugs
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11329 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
dbeb3aa47d
commit
74d8880950
|
@ -154,21 +154,23 @@ done:
|
||||||
status = SWITCH_STATUS_FALSE;
|
status = SWITCH_STATUS_FALSE;
|
||||||
goto reallydone;
|
goto reallydone;
|
||||||
} else {
|
} else {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Opened ODBC Database!\n");
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Opened ODBC Database!\n");
|
||||||
}
|
}
|
||||||
if (switch_odbc_handle_connect(globals.master_odbc) != SWITCH_ODBC_SUCCESS) {
|
if (switch_odbc_handle_connect(globals.master_odbc) != SWITCH_ODBC_SUCCESS) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Cannot Open ODBC Database!\n");
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Cannot Open ODBC Database!\n");
|
||||||
status = SWITCH_STATUS_FALSE;
|
status = SWITCH_STATUS_FALSE;
|
||||||
goto reallydone;
|
goto reallydone;
|
||||||
} else {
|
} else {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Opened ODBC Database!\n");
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Opened ODBC Database!\n");
|
||||||
}
|
}
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Connected ODBC DSN: %s\n", globals.db_dsn);
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Connected ODBC DSN: %s\n", globals.db_dsn);
|
||||||
if (switch_odbc_handle_exec(globals.master_odbc, "select count(*) from numbers", NULL) != SWITCH_STATUS_SUCCESS) {
|
if (!globals.custom_query){
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Cannot find SQL Database! (Where\'s the numbers table\?\?)\n");
|
if (switch_odbc_handle_exec(globals.master_odbc, "select count(*) from numbers", NULL) != SWITCH_STATUS_SUCCESS) {
|
||||||
}
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Cannot find SQL Database! (Where\'s the numbers table\?\?)\n");
|
||||||
if (switch_odbc_handle_exec(globals.master_odbc, "select count(*) from gateways", NULL) != SWITCH_STATUS_SUCCESS) {
|
}
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Cannot find SQL Database! (Where\'s the gateways table\?\?)\n");
|
if (switch_odbc_handle_exec(globals.master_odbc, "select count(*) from gateways", NULL) != SWITCH_STATUS_SUCCESS) {
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Cannot find SQL Database! (Where\'s the gateways table\?\?)\n");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
#endif
|
#endif
|
||||||
|
@ -191,30 +193,29 @@ reallydone:
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
static char SQL_LOOKUP[] = "SELECT gateways.gateway_ip, gateways.group, gateways.limit, gateways.techprofile, numbers.acctcode, numbers.translated from gateways, numbers where numbers.number = '%s' and numbers.gateway_id = gateways.gateway_id limit 1;";
|
static char SQL_LOOKUP[] = "SELECT gateways.gateway_ip, gateways.group, gateways.limit, gateways.techprofile, numbers.acctcode, numbers.translated from gateways, numbers where numbers.number = '%q' and numbers.gateway_id = gateways.gateway_id limit 1;";
|
||||||
|
|
||||||
static switch_status_t route_lookup(char *dn, easyroute_results_t *results, int noat, char *seperator)
|
static switch_status_t route_lookup(char *dn, easyroute_results_t *results, int noat, char *seperator)
|
||||||
{
|
{
|
||||||
|
#ifdef SWITCH_HAVE_ODBC
|
||||||
switch_status_t sstatus = SWITCH_STATUS_SUCCESS;
|
switch_status_t sstatus = SWITCH_STATUS_SUCCESS;
|
||||||
char sql[1024] = "";
|
char *sql = NULL;
|
||||||
route_callback_t pdata;
|
route_callback_t pdata;
|
||||||
|
|
||||||
memset(&pdata, 0, sizeof(pdata));
|
memset(&pdata, 0, sizeof(pdata));
|
||||||
if (!globals.custom_query){
|
if (!globals.custom_query){
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Doing static Query\n[%s]\n", SQL_LOOKUP);
|
sql = switch_mprintf(SQL_LOOKUP, dn);
|
||||||
snprintf(sql, 1024, SQL_LOOKUP, dn);
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Doing static Query\n[%s]\n", sql);
|
||||||
} else {
|
} else {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Doing custom Query\n[%s]\n", globals.custom_query);
|
sql = switch_mprintf(globals.custom_query, dn);
|
||||||
snprintf(sql, 1024, globals.custom_query, dn);
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Doing custom Query\n[%s]\n", sql);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (globals.mutex){
|
if (globals.mutex){
|
||||||
switch_mutex_lock(globals.mutex);
|
switch_mutex_lock(globals.mutex);
|
||||||
}
|
}
|
||||||
/* Do the Query */
|
/* Do the Query */
|
||||||
#ifdef SWITCH_HAVE_ODBC
|
|
||||||
if (switch_odbc_handle_callback_exec(globals.master_odbc, sql, route_callback, &pdata) == SWITCH_ODBC_SUCCESS){
|
if (switch_odbc_handle_callback_exec(globals.master_odbc, sql, route_callback, &pdata) == SWITCH_ODBC_SUCCESS){
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "SQL Query\n[%s]\n", sql);
|
|
||||||
char tmp_profile[129];
|
char tmp_profile[129];
|
||||||
char tmp_gateway[129];
|
char tmp_gateway[129];
|
||||||
|
|
||||||
|
@ -341,7 +342,7 @@ SWITCH_STANDARD_API(easyroute_function)
|
||||||
return SWITCH_STATUS_FALSE;
|
return SWITCH_STATUS_FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef SWITCH_HAVE_ODBC
|
#ifndef SWITCH_HAVE_ODBC
|
||||||
stream->write_function(stream, "mod_easyroute requires you enable core odbc support\n");
|
stream->write_function(stream, "mod_easyroute requires you enable core odbc support\n");
|
||||||
return SWITCH_STATUS_SUCCESS;
|
return SWITCH_STATUS_SUCCESS;
|
||||||
#endif
|
#endif
|
||||||
|
@ -359,6 +360,7 @@ SWITCH_STANDARD_API(easyroute_function)
|
||||||
}
|
}
|
||||||
if (argc == 2) {
|
if (argc == 2) {
|
||||||
if (!strcasecmp(argv[1], "noat")) {
|
if (!strcasecmp(argv[1], "noat")) {
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Entering noat.\n");
|
||||||
noat = 1;
|
noat = 1;
|
||||||
} else if (!strcasecmp(argv[1], "seperator")) {
|
} else if (!strcasecmp(argv[1], "seperator")) {
|
||||||
if (argc == 3){
|
if (argc == 3){
|
||||||
|
|
Loading…
Reference in New Issue