aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormattf <mattf@f38db490-d61c-443f-a65b-d21fe96a405b>2004-09-10 02:31:30 +0000
committermattf <mattf@f38db490-d61c-443f-a65b-d21fe96a405b>2004-09-10 02:31:30 +0000
commita1f2f5b139f245001c0b680c57d41091cfeef015 (patch)
tree89009b6de69a5df0f0ffce7f18d1c2005e7fbf9f /apps
parent1598b09e629fb7311ea241e436136d60c9e183e2 (diff)
macro support in the dial command
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3757 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_dial.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 0bc754c3f..9ffd1d5a2 100755
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -67,6 +67,7 @@ static char *descrip =
" that are assigned to you.\n"
" 'r' -- indicate ringing to the calling party, pass no audio until answered.\n"
" 'm' -- provide hold music to the calling party until answered.\n"
+" 'M(x) -- Executes the macro (x) upon connect of the call\n"
" 'h' -- allow callee to hang up by hitting *.\n"
" 'H' -- allow caller to hang up by hitting *.\n"
" 'C' -- reset call detail record for this call.\n"
@@ -420,6 +421,7 @@ static int dial_exec(struct ast_channel *chan, void *data)
int allowredir_out=0;
int allowdisconnect_in=0;
int allowdisconnect_out=0;
+ int hasmacro = 0;
int privacy=0;
int announce=0;
int resetcdr=0;
@@ -448,6 +450,7 @@ static int dial_exec(struct ast_channel *chan, void *data)
char *sdtmfptr;
char sdtmfdata[256] = "";
char *stack,*var;
+ char *mac = NULL, macroname[256] = "";
char status[256]="";
char toast[80];
int play_to_caller=0,play_to_callee=0;
@@ -610,6 +613,27 @@ static int dial_exec(struct ast_channel *chan, void *data)
announce = 0;
}
}
+
+ /* Get the macroname from the dial option string */
+ if ((mac = strstr(transfer, "M("))) {
+ hasmacro = 1;
+ strncpy(macroname, mac + 2, sizeof(macroname) - 1);
+ while (*mac && (*mac != ')'))
+ *(mac++) = 'X';
+ if (*mac)
+ *mac = 'X';
+ else {
+ ast_log(LOG_WARNING, "Could not find macro to which we should jump.\n");
+ hasmacro = 0;
+ }
+ mac = strchr(macroname, ')');
+ if (mac)
+ *mac = '\0';
+ else {
+ ast_log(LOG_WARNING, "Macro flag set without trailing ')'\n");
+ hasmacro = 0;
+ }
+ }
/* Extract privacy info from transfer */
if ((s = strstr(transfer, "P("))) {
privacy = 1;
@@ -907,6 +931,32 @@ static int dial_exec(struct ast_channel *chan, void *data)
} else
res = 0;
+ if (hasmacro && macroname) {
+ void *app = NULL;
+
+ res = ast_autoservice_start(chan);
+ if (res) {
+ ast_log(LOG_ERROR, "Unable to start autoservice on calling channel\n");
+ res = -1;
+ }
+
+ app = pbx_findapp("Macro");
+
+ if (app && !res) {
+ res = pbx_exec(peer, app, macroname, 1);
+ ast_log(LOG_DEBUG, "Macro exited with status %d\n", res);
+ res = 0;
+ } else {
+ ast_log(LOG_ERROR, "Could not find application Macro\n");
+ res = -1;
+ }
+
+ if (ast_autoservice_stop(chan) < 0) {
+ ast_log(LOG_ERROR, "Could not stop autoservice on calling channel\n");
+ res = -1;
+ }
+ }
+
if (!res) {
if (calldurationlimit > 0) {
time(&now);