mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-24 06:53:41 +00:00
res_sip_dtmf_info: Support sending of 'raw' DTMF
Added the ability to handle 'raw' DTMF within the body of an INFO message. Also made it so values 10-16 are mapped to valid DTMF values. (closes issue ASTERISK-22144) Reported by: Matt Jordan Review: https://reviewboard.asterisk.org/r/2776/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@397484 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1724,7 +1724,7 @@ int ast_sip_is_content_type(pjsip_media_type *content_type, char *type, char *su
|
|||||||
|
|
||||||
pjsip_media_type_init2(&compare, type, subtype);
|
pjsip_media_type_init2(&compare, type, subtype);
|
||||||
|
|
||||||
return pjsip_media_type_cmp(content_type, &compare, 0) ? -1 : 0;
|
return pjsip_media_type_cmp(content_type, &compare, 0) ? 0 : -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
pj_caching_pool caching_pool;
|
pj_caching_pool caching_pool;
|
||||||
|
@@ -32,77 +32,114 @@
|
|||||||
#include "asterisk/res_pjsip_session.h"
|
#include "asterisk/res_pjsip_session.h"
|
||||||
#include "asterisk/module.h"
|
#include "asterisk/module.h"
|
||||||
|
|
||||||
|
static int is_media_type(pjsip_rx_data *rdata, char *subtype)
|
||||||
|
{
|
||||||
|
return !pj_strcmp2(&rdata->msg_info.ctype->media.type, "application") &&
|
||||||
|
!pj_strcmp2(&rdata->msg_info.ctype->media.subtype, subtype);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void send_response(struct ast_sip_session *session,
|
||||||
|
struct pjsip_rx_data *rdata, int code)
|
||||||
|
{
|
||||||
|
pjsip_tx_data *tdata;
|
||||||
|
pjsip_dialog *dlg = session->inv_session->dlg;
|
||||||
|
|
||||||
|
if (pjsip_dlg_create_response(dlg, rdata, code,
|
||||||
|
NULL, &tdata) == PJ_SUCCESS) {
|
||||||
|
struct pjsip_transaction *tsx = pjsip_rdata_get_tsx(rdata);
|
||||||
|
pjsip_dlg_send_response(dlg, tsx, tdata);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static char get_event(const char *c)
|
||||||
|
{
|
||||||
|
unsigned int event;
|
||||||
|
|
||||||
|
if (*c == '!' || *c == '*' || *c == '#' ||
|
||||||
|
('A' <= *c && *c <= 'D') ||
|
||||||
|
('a' <= *c && *c <= 'd')) {
|
||||||
|
return *c;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((sscanf(c, "%30u", &event) != 1) || event > 16) {
|
||||||
|
return '\0';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (event < 10) {
|
||||||
|
return *c;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (event) {
|
||||||
|
case 10: return '*';
|
||||||
|
case 11: return '#';
|
||||||
|
case 16: return '!';
|
||||||
|
}
|
||||||
|
|
||||||
|
return 'A' + (event - 12);
|
||||||
|
}
|
||||||
|
|
||||||
static int dtmf_info_incoming_request(struct ast_sip_session *session, struct pjsip_rx_data *rdata)
|
static int dtmf_info_incoming_request(struct ast_sip_session *session, struct pjsip_rx_data *rdata)
|
||||||
{
|
{
|
||||||
int res = 0;
|
|
||||||
pjsip_msg_body *body = rdata->msg_info.msg->body;
|
pjsip_msg_body *body = rdata->msg_info.msg->body;
|
||||||
|
|
||||||
pjsip_tx_data *tdata;
|
|
||||||
|
|
||||||
char buf[body ? body->len : 0];
|
char buf[body ? body->len : 0];
|
||||||
char *cur = buf;
|
char *cur = buf;
|
||||||
char *line;
|
char *line;
|
||||||
|
|
||||||
char event = '\0';
|
char event = '\0';
|
||||||
unsigned int duration = 0;
|
unsigned int duration = 100;
|
||||||
|
|
||||||
if (!body || !ast_sip_is_content_type(&body->content_type, "application", "dtmf-relay")) {
|
char is_dtmf = is_media_type(rdata, "dtmf");
|
||||||
|
|
||||||
|
if (!is_dtmf && !is_media_type(rdata, "dtmf-relay")) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!body || !body->len) {
|
||||||
|
/* need to return 200 OK on empty body */
|
||||||
|
send_response(session, rdata, 200);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
body->print_body(body, buf, body->len);
|
body->print_body(body, buf, body->len);
|
||||||
|
|
||||||
while ((line = strsep(&cur, "\r\n"))) {
|
if (is_dtmf) {
|
||||||
char *c;
|
/* directly use what is in the message body */
|
||||||
|
event = get_event(cur);
|
||||||
|
} else { /* content type = application/dtmf-relay */
|
||||||
|
while ((line = strsep(&cur, "\r\n"))) {
|
||||||
|
char *c;
|
||||||
|
|
||||||
if (!(c = strchr(line, '='))) {
|
if (!(c = strchr(line, '='))) {
|
||||||
continue;
|
continue;
|
||||||
}
|
|
||||||
*c++ = '\0';
|
|
||||||
|
|
||||||
c = ast_skip_blanks(c);
|
|
||||||
|
|
||||||
if (!strcasecmp(line, "signal")) {
|
|
||||||
if (c[0] == '!' || c[0] == '*' || c[0] == '#' ||
|
|
||||||
('0' <= c[0] && c[0] <= '9') ||
|
|
||||||
('A' <= c[0] && c[0] <= 'D') ||
|
|
||||||
('a' <= c[0] && c[0] <= 'd')) {
|
|
||||||
event = c[0];
|
|
||||||
} else {
|
|
||||||
ast_log(LOG_ERROR, "Invalid DTMF event signal in INFO message.\n");
|
|
||||||
res = -1;
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
} else if (!strcasecmp(line, "duration")) {
|
|
||||||
sscanf(c, "%30u", &duration);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!duration) {
|
*c++ = '\0';
|
||||||
duration = 100;
|
c = ast_skip_blanks(c);
|
||||||
|
|
||||||
|
if (!strcasecmp(line, "signal")) {
|
||||||
|
if (!(event = get_event(c))) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
} else if (!strcasecmp(line, "duration")) {
|
||||||
|
sscanf(c, "%30u", &duration);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (event == '!') {
|
if (event == '!') {
|
||||||
struct ast_frame f = { AST_FRAME_CONTROL, { AST_CONTROL_FLASH, } };
|
struct ast_frame f = { AST_FRAME_CONTROL, { AST_CONTROL_FLASH, } };
|
||||||
|
|
||||||
ast_queue_frame(session->channel, &f);
|
ast_queue_frame(session->channel, &f);
|
||||||
} else if (event != '\0') {
|
} else if (event != '\0') {
|
||||||
struct ast_frame f = { AST_FRAME_DTMF, };
|
struct ast_frame f = { AST_FRAME_DTMF, };
|
||||||
f.len = duration;
|
f.len = duration;
|
||||||
f.subclass.integer = event;
|
f.subclass.integer = event;
|
||||||
|
|
||||||
ast_queue_frame(session->channel, &f);
|
ast_queue_frame(session->channel, &f);
|
||||||
} else {
|
} else {
|
||||||
res = -1;
|
ast_log(LOG_ERROR, "Invalid DTMF event signal in INFO message.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pjsip_dlg_create_response(session->inv_session->dlg, rdata, !res ? 200 : 500, NULL, &tdata) == PJ_SUCCESS) {
|
send_response(session, rdata, event ? 200 : 500);
|
||||||
struct pjsip_transaction *tsx = pjsip_rdata_get_tsx(rdata);
|
return event ? 0 : -1;
|
||||||
|
|
||||||
pjsip_dlg_send_response(session->inv_session->dlg, tsx, tdata);
|
|
||||||
}
|
|
||||||
|
|
||||||
return res;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct ast_sip_session_supplement dtmf_info_supplement = {
|
static struct ast_sip_session_supplement dtmf_info_supplement = {
|
||||||
|
Reference in New Issue
Block a user