2005-11-19 20:07:43 +00:00
|
|
|
/*
|
|
|
|
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
|
|
|
|
* Copyright (C) 2005/2006, Anthony Minessale II <anthmct@yahoo.com>
|
|
|
|
*
|
|
|
|
* Version: MPL 1.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Anthony Minessale II <anthmct@yahoo.com>
|
|
|
|
* Portions created by the Initial Developer are Copyright (C)
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Anthony Minessale II <anthmct@yahoo.com>
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* switch_caller.c -- Caller Identification
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include <switch_caller.h>
|
|
|
|
|
2006-03-01 22:55:28 +00:00
|
|
|
SWITCH_DECLARE(switch_caller_profile *) switch_caller_profile_new(switch_memory_pool *pool,
|
2005-12-20 16:01:18 +00:00
|
|
|
char *dialplan,
|
|
|
|
char *caller_id_name,
|
|
|
|
char *caller_id_number,
|
|
|
|
char *network_addr,
|
2006-01-20 15:05:05 +00:00
|
|
|
char *ani, char *ani2, char *destination_number)
|
2005-11-19 20:07:43 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
switch_caller_profile *profile = NULL;
|
|
|
|
|
2006-03-01 22:55:28 +00:00
|
|
|
if ((profile = switch_core_alloc(pool, sizeof(switch_caller_profile))) != 0) {
|
|
|
|
profile->dialplan = switch_core_strdup(pool, dialplan);
|
|
|
|
profile->caller_id_name = switch_core_strdup(pool, caller_id_name);
|
|
|
|
profile->caller_id_number = switch_core_strdup(pool, caller_id_number);
|
|
|
|
profile->network_addr = switch_core_strdup(pool, network_addr);
|
|
|
|
profile->ani = switch_core_strdup(pool, ani);
|
|
|
|
profile->ani2 = switch_core_strdup(pool, ani2);
|
|
|
|
profile->destination_number = switch_core_strdup(pool, destination_number);
|
2005-11-19 20:07:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return profile;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SWITCH_DECLARE(switch_caller_profile *) switch_caller_profile_clone(switch_core_session *session,
|
2005-12-20 16:01:18 +00:00
|
|
|
switch_caller_profile *tocopy)
|
2005-11-19 20:07:43 +00:00
|
|
|
{
|
|
|
|
switch_caller_profile *profile = NULL;
|
2006-02-20 00:23:25 +00:00
|
|
|
if ((profile = switch_core_session_alloc(session, sizeof(switch_caller_profile))) != 0) {
|
2005-11-19 20:07:43 +00:00
|
|
|
profile->dialplan = switch_core_session_strdup(session, tocopy->dialplan);
|
|
|
|
profile->caller_id_name = switch_core_session_strdup(session, tocopy->caller_id_name);
|
|
|
|
profile->ani = switch_core_session_strdup(session, tocopy->ani);
|
|
|
|
profile->ani2 = switch_core_session_strdup(session, tocopy->ani2);
|
|
|
|
profile->caller_id_number = switch_core_session_strdup(session, tocopy->caller_id_number);
|
2005-12-20 16:01:18 +00:00
|
|
|
profile->network_addr = switch_core_session_strdup(session, tocopy->network_addr);
|
2005-11-19 20:07:43 +00:00
|
|
|
profile->destination_number = switch_core_session_strdup(session, tocopy->destination_number);
|
2006-02-22 02:50:33 +00:00
|
|
|
profile->uuid = switch_core_session_strdup(session, tocopy->uuid);
|
|
|
|
profile->chan_name = switch_core_session_strdup(session, tocopy->chan_name);
|
2005-11-19 20:07:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return profile;
|
|
|
|
}
|
|
|
|
|
2006-01-20 15:05:05 +00:00
|
|
|
SWITCH_DECLARE(void) switch_caller_profile_event_set_data(switch_caller_profile *caller_profile, char *prefix,
|
|
|
|
switch_event *event)
|
2005-12-23 21:09:36 +00:00
|
|
|
{
|
2005-12-26 19:09:59 +00:00
|
|
|
char header_name[1024];
|
|
|
|
|
|
|
|
if (caller_profile->dialplan) {
|
|
|
|
snprintf(header_name, sizeof(header_name), "%s-Dialplan", prefix);
|
|
|
|
switch_event_add_header(event, SWITCH_STACK_BOTTOM, header_name, caller_profile->dialplan);
|
|
|
|
}
|
|
|
|
if (caller_profile->caller_id_name) {
|
|
|
|
snprintf(header_name, sizeof(header_name), "%s-Caller-ID-Name", prefix);
|
|
|
|
switch_event_add_header(event, SWITCH_STACK_BOTTOM, header_name, caller_profile->caller_id_name);
|
|
|
|
}
|
|
|
|
if (caller_profile->caller_id_number) {
|
|
|
|
snprintf(header_name, sizeof(header_name), "%s-Caller-ID-Number", prefix);
|
|
|
|
switch_event_add_header(event, SWITCH_STACK_BOTTOM, header_name, caller_profile->caller_id_number);
|
|
|
|
}
|
|
|
|
if (caller_profile->network_addr) {
|
|
|
|
snprintf(header_name, sizeof(header_name), "%s-Network-Addr", prefix);
|
|
|
|
switch_event_add_header(event, SWITCH_STACK_BOTTOM, header_name, caller_profile->network_addr);
|
|
|
|
}
|
|
|
|
if (caller_profile->ani) {
|
|
|
|
snprintf(header_name, sizeof(header_name), "%s-ANI", prefix);
|
|
|
|
switch_event_add_header(event, SWITCH_STACK_BOTTOM, header_name, caller_profile->ani);
|
|
|
|
}
|
|
|
|
if (caller_profile->ani2) {
|
|
|
|
snprintf(header_name, sizeof(header_name), "%s-ANI2", prefix);
|
|
|
|
switch_event_add_header(event, SWITCH_STACK_BOTTOM, header_name, caller_profile->ani2);
|
|
|
|
}
|
|
|
|
if (caller_profile->destination_number) {
|
|
|
|
snprintf(header_name, sizeof(header_name), "%s-Destination-Number", prefix);
|
|
|
|
switch_event_add_header(event, SWITCH_STACK_BOTTOM, header_name, caller_profile->destination_number);
|
|
|
|
}
|
2006-04-11 14:55:14 +00:00
|
|
|
if (caller_profile->uuid) {
|
|
|
|
snprintf(header_name, sizeof(header_name), "%s-Unique-ID", prefix);
|
|
|
|
switch_event_add_header(event, SWITCH_STACK_BOTTOM, header_name, caller_profile->uuid);
|
|
|
|
}
|
|
|
|
if (caller_profile->chan_name) {
|
|
|
|
snprintf(header_name, sizeof(header_name), "%s-Channel-Name", prefix);
|
|
|
|
switch_event_add_header(event, SWITCH_STACK_BOTTOM, header_name, caller_profile->chan_name);
|
|
|
|
}
|
2005-12-23 21:09:36 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-11-19 20:07:43 +00:00
|
|
|
SWITCH_DECLARE(switch_caller_extension *) switch_caller_extension_new(switch_core_session *session,
|
2006-01-20 15:05:05 +00:00
|
|
|
char *extension_name, char *extension_number)
|
2005-11-19 20:07:43 +00:00
|
|
|
{
|
|
|
|
switch_caller_extension *caller_extension = NULL;
|
|
|
|
|
2006-02-20 00:23:25 +00:00
|
|
|
if ((caller_extension = switch_core_session_alloc(session, sizeof(switch_caller_extension))) != 0) {
|
2005-11-19 20:07:43 +00:00
|
|
|
caller_extension->extension_name = switch_core_session_strdup(session, extension_name);
|
|
|
|
caller_extension->extension_number = switch_core_session_strdup(session, extension_number);
|
|
|
|
caller_extension->current_application = caller_extension->last_application = caller_extension->applications;
|
|
|
|
}
|
|
|
|
|
|
|
|
return caller_extension;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SWITCH_DECLARE(void) switch_caller_extension_add_application(switch_core_session *session,
|
2005-12-20 16:01:18 +00:00
|
|
|
switch_caller_extension *caller_extension,
|
2006-01-20 15:05:05 +00:00
|
|
|
char *application_name, char *application_data)
|
2005-11-19 20:07:43 +00:00
|
|
|
{
|
|
|
|
switch_caller_application *caller_application = NULL;
|
|
|
|
|
|
|
|
assert(session != NULL);
|
|
|
|
|
2006-02-20 00:23:25 +00:00
|
|
|
if ((caller_application = switch_core_session_alloc(session, sizeof(switch_caller_application))) != 0) {
|
2005-11-19 20:07:43 +00:00
|
|
|
caller_application->application_name = switch_core_session_strdup(session, application_name);
|
|
|
|
caller_application->application_data = switch_core_session_strdup(session, application_data);
|
|
|
|
if (!caller_extension->applications) {
|
|
|
|
caller_extension->applications = caller_application;
|
2006-01-20 15:05:05 +00:00
|
|
|
} else if (caller_extension->last_application) {
|
2005-11-19 20:07:43 +00:00
|
|
|
caller_extension->last_application->next = caller_application;
|
|
|
|
}
|
|
|
|
|
|
|
|
caller_extension->last_application = caller_application;
|
|
|
|
caller_extension->current_application = caller_extension->applications;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|