SWITCH_DECLARE(char *) switch_channel_expand_variables_check(switch_channel_t *channel, const char *in, switch_event_t *var_list, switch_event_t *api_list, uint32_t recur);
#define switch_channel_expand_variables(_channel, _in) switch_channel_expand_variables_check(_channel, _in, NULL, NULL, 0)
+#define switch_channel_inbound_display(_channel) (switch_channel_direction(_channel) == SWITCH_CALL_DIRECTION_INBOUND || switch_channel_test_flag(_channel, CF_DIALPLAN))
SWITCH_DECLARE(char *) switch_channel_build_param_string(_In_ switch_channel_t *channel, _In_opt_ switch_caller_profile_t *caller_profile,
_In_opt_ const char *prefix);
switch_caller_profile_t *caller_profile = switch_channel_get_caller_profile(channel);
- if (zstr(name)) {
- name = caller_profile->callee_id_name;
- }
-
- if (zstr(number)) {
- number = caller_profile->callee_id_number;
- }
-
- if (zstr(name)) {
- name = number;
- }
-
- if (zstr(number)) {
- number = caller_profile->destination_number;
+ if (switch_channel_inbound_display(channel)) {
+ if (zstr(name)) {
+ name = caller_profile->caller_id_name;
+ }
+
+ if (zstr(number)) {
+ number = caller_profile->caller_id_number;
+ }
+
+ if (zstr(name)) {
+ name = number;
+ }
+
+ if (zstr(number)) {
+ name = number = "UNKNOWN";
+ }
+ } else {
+ if (zstr(name)) {
+ name = caller_profile->callee_id_name;
+ }
+
+ if (zstr(number)) {
+ number = caller_profile->callee_id_number;
+ }
+
+ if (zstr(name)) {
+ name = number;
+ }
+
+ if (zstr(number)) {
+ number = caller_profile->destination_number;
+ }
}
if ((uuid = switch_channel_get_partner_uuid(channel)) && (session_b = switch_core_session_locate(uuid))) {
}
- if (switch_channel_direction(channel) == SWITCH_CALL_DIRECTION_INBOUND) {
+ if (switch_channel_inbound_display(channel)) {
name_var = "caller_id_name";
num_var = "caller_id_number";
ename_var = "effective_caller_id_name";
caller_profile = switch_channel_get_caller_profile(channel);
- if (switch_channel_direction(channel) == SWITCH_CALL_DIRECTION_INBOUND) {
+ if (switch_channel_inbound_display(channel)) {
if (!strcmp(caller_profile->caller_id_name, name) && !strcmp(caller_profile->caller_id_number, number)) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "%s Same Caller ID \"%s\" <%s>\n", switch_channel_get_name(channel), name, number);