<param name="legs" value="a"/>
<!-- See parameters for PQconnectdb() at http://www.postgresql.org/docs/8.4/static/libpq-connect.html -->
<param name="db-info" value="host=localhost dbname=cdr connect_timeout=10" />
- <!-- Global CDR table -->
- <!--<param name="g-table" value="g"/>-->
- <!-- Per-accountcode CDR table -->
- <!--<param name="a-table" value="a"/>-->
+ <!-- CDR table name -->
+ <!--<param name="db-table" value="cdr"/>-->
<param name="default-template" value="example"/>
<!-- This is like the info app but after the call is hung up -->
<!--<param name="debug" value="true"/>-->
</settings>
<templates>
- <template name="sql">INSERT INTO cdr VALUES ("${caller_id_name}","${caller_id_number}","${destination_number}","${context}","${start_stamp}","${answer_stamp}","${end_stamp}","${duration}","${billsec}","${hangup_cause}","${uuid}","${bleg_uuid}", "${accountcode}");</template>
<template name="example">"${local_ip_v4}","${caller_id_name}","${caller_id_number}","${destination_number}","${context}","${start_stamp}","${answer_stamp}","${end_stamp}","${duration}","${billsec}","${hangup_cause}","${uuid}","${bleg_uuid}","${accountcode}","${read_codec}","${write_codec}","${sip_hangup_disposition}","${ani}"</template>
- <template name="snom">"${caller_id_name}","${caller_id_number}","${destination_number}","${context}","${start_stamp}","${answer_stamp}","${end_stamp}","${duration}","${billsec}","${hangup_cause}","${uuid}","${bleg_uuid}", "${accountcode}","${read_codec}","${write_codec}","${sip_user_agent}","${call_clientcode}","${sip_rtp_rxstat}","${sip_rtp_txstat}","${sofia_record_file}"</template>
- <template name="linksys">"${caller_id_name}","${caller_id_number}","${destination_number}","${context}","${start_stamp}","${answer_stamp}","${end_stamp}","${duration}","${billsec}","${hangup_cause}","${uuid}","${bleg_uuid}","${accountcode}","${read_codec}","${write_codec}","${sip_user_agent}","${sip_p_rtp_stat}"</template>
- <template name="asterisk">"${accountcode}","${caller_id_number}","${destination_number}","${context}","${caller_id}","${channel_name}","${bridge_channel}","${last_app}","${last_arg}","${start_stamp}","${answer_stamp}","${end_stamp}","${duration}","${billsec}","${hangup_cause}","${amaflags}","${uuid}","${userfield}"</template>
</templates>
</configuration>
const char *default_template =
"\"${local_ip_v4}\",\"${caller_id_name}\",\"${caller_id_number}\",\"${destination_number}\",\"${context}\",\"${start_stamp}\","
- "\"${answer_stamp}\",\"${end_stamp}\",\"${duration}\",\"${billsec}\",\"${hangup_cause}\",\"${uuid}\",\"${bleg_uuid}\", \"${accountcode}\","
- "\"${read_codec}\", \"${write_codec}\"\n";
+ "\"${answer_stamp}\",\"${end_stamp}\",\"${duration}\",\"${billsec}\",\"${hangup_cause}\",\"${uuid}\",\"${bleg_uuid}\",\"${accountcode}\","
+ "\"${read_codec}\",\"${write_codec}\"\n";
static struct {
switch_memory_pool_t *pool;
int rotate;
int debug;
cdr_leg_t legs;
- char *a_table;
- char *g_table;
char *db_info;
+ char *db_table;
PGconn *db_connection;
int db_online;
switch_mutex_t *db_mutex;
switch_mutex_unlock(fd->mutex);
}
-static int save_cdr(const char * const table, const char * const template, const char * const cdr)
+static switch_status_t save_cdr(const char * const table, const char * const template, const char * const cdr)
{
char *columns, *values;
char *p, *q;
if (!table || !*table || !template || !*template || !cdr || !*cdr) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Bad parameter\n");
- return 0;
+ return SWITCH_STATUS_FALSE;
}
/* Build comma-separated list of field names by dropping $ { } ; chars */
}
*q = '\0';
- /* In the expanded vars, replace double quotes (") with single quotes (')
+ /*
+ * In the expanded vars, replace double quotes (") with single quotes (')
* for corect PostgreSQL syntax, and replace semi-colon with space to
* prevent SQL injection attacks.
*/
nullCounter++;
}
- charCounter = 0;
nullCounter *= 4;
vlen += nullCounter;
nullValues = (char *) malloc(strlen(values) + nullCounter + 1);
globals.db_online = 0;
switch_mutex_unlock(globals.db_mutex);
free(query);
- return 0;
+ return SWITCH_STATUS_FALSE;
}
res = PQexec(globals.db_connection, query);
globals.db_online = 0;
switch_mutex_unlock(globals.db_mutex);
free(query);
- return 0;
+ return SWITCH_STATUS_FALSE;
}
PQclear(res);
free(query);
switch_mutex_unlock(globals.db_mutex);
- return 1;
+ return SWITCH_STATUS_SUCCESS;
}
static switch_status_t my_on_reporting(switch_core_session_t *session)
{
switch_channel_t *channel = switch_core_session_get_channel(session);
switch_status_t status = SWITCH_STATUS_SUCCESS;
- const char *log_dir = NULL, *accountcode = NULL, *a_template_str = NULL, *g_template_str = NULL;
+ const char *log_dir = NULL, *template_str = NULL;
char *log_line, *path = NULL;
int saved = 0;
}
}
- g_template_str = (const char *) switch_core_hash_find(globals.template_hash, globals.default_template);
-
- if ((accountcode = switch_channel_get_variable(channel, "ACCOUNTCODE"))) {
- a_template_str = (const char *) switch_core_hash_find(globals.template_hash, accountcode);
- }
+ template_str = (const char *) switch_core_hash_find(globals.template_hash, globals.default_template);
- if (!g_template_str) {
- g_template_str = "\"${accountcode}\",\"${caller_id_number}\",\"${destination_number}\",\"${context}\",\"${caller_id}\",\"${channel_name}\",\"${bridge_channel}\",\"${last_app}\",\"${last_arg}\",\"${start_stamp}\",\"${answer_stamp}\",\"${end_stamp}\",\"${duration}\",\"${billsec}\",\"${hangup_cause}\",\"${amaflags}\",\"${uuid}\",\"${userfield}\";";
+ if (!template_str) {
+ template_str = default_template;
}
- if (!a_template_str) {
- a_template_str = g_template_str;
- }
-
- log_line = switch_channel_expand_variables(channel, a_template_str);
-
- saved = 1; // save_cdr(globals.a_table, a_template_str, log_line);
-
- if (!saved && accountcode) {
- path = switch_mprintf("%s%s%s.csv", log_dir, SWITCH_PATH_SEPARATOR, accountcode);
- assert(path);
- write_cdr(path, log_line);
- free(path);
- }
-
- if (g_template_str != a_template_str) {
- if (log_line != a_template_str) {
- switch_safe_free(log_line);
- }
- log_line = switch_channel_expand_variables(channel, g_template_str);
- }
+ log_line = switch_channel_expand_variables(channel, template_str);
if (!log_line) {
- switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error creating cdr\n");
+ switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error expanding CDR variables.\n");
return SWITCH_STATUS_FALSE;
}
- saved = save_cdr(globals.g_table, g_template_str, log_line);
+ saved = save_cdr(globals.db_table, template_str, log_line);
if (!saved) {
path = switch_mprintf("%s%sMaster.csv", log_dir, SWITCH_PATH_SEPARATOR);
free(path);
}
- if (log_line != g_template_str) {
+ if (log_line != template_str) {
free(log_line);
}
globals.log_dir = switch_core_sprintf(pool, "%s%scdr-pg-csv", val, SWITCH_PATH_SEPARATOR);
} else if (!strcasecmp(var, "rotate-on-hup")) {
globals.rotate = switch_true(val);
- } else if (!strcasecmp(var, "default-template")) {
- globals.default_template = switch_core_strdup(pool, val);
- } else if (!strcasecmp(var, "a-table")) {
- globals.a_table = switch_core_strdup(pool, val);
- } else if (!strcasecmp(var, "g-table")) {
- globals.g_table = switch_core_strdup(pool, val);
} else if (!strcasecmp(var, "db-info")) {
globals.db_info = switch_core_strdup(pool, val);
+ } else if (!strcasecmp(var, "db-table") || !strcasecmp(var, "g-table")) {
+ globals.db_table = switch_core_strdup(pool, val);
+ } else if (!strcasecmp(var, "default-template")) {
+ globals.default_template = switch_core_strdup(pool, val);
}
}
}
switch_xml_free(xml);
}
-
- if (zstr(globals.default_template)) {
- globals.default_template = switch_core_strdup(pool, "default");
- }
-
if (!globals.log_dir) {
globals.log_dir = switch_core_sprintf(pool, "%s%scdr-pg-csv", SWITCH_GLOBAL_dirs.log_dir, SWITCH_PATH_SEPARATOR);
}
- if (zstr(globals.a_table)) {
- globals.a_table = switch_core_strdup(pool, "a");
+ if (zstr(globals.db_info)) {
+ globals.db_info = switch_core_strdup(pool, "dbname=cdr");
}
- if (zstr(globals.g_table)) {
- globals.g_table = switch_core_strdup(pool, "g");
+ if (zstr(globals.db_table)) {
+ globals.db_table = switch_core_strdup(pool, "cdr");
}
- if (zstr(globals.db_info)) {
- globals.db_info = switch_core_strdup(pool, "dbname = cdr");
+ if (zstr(globals.default_template)) {
+ globals.default_template = switch_core_strdup(pool, "default");
}
+
return status;
}