2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2006, Digium, Inc.
6 * Mark Spencer <markster@digium.com>
8 * Author: Ben Miller <bgmiller@dccinc.com>
9 * With TONS of help from Mark!
11 * See http://www.asterisk.org for more information about
12 * the Asterisk project. Please do not directly contact
13 * any of the maintainers of this project for assistance;
14 * the project provides a web site, mailing lists and IRC
15 * channels for your use.
17 * This program is free software, distributed under the terms of
18 * the GNU General Public License Version 2. See the LICENSE file
19 * at the top of the source tree.
24 * \brief ParkAndAnnounce application for Asterisk
26 * \author Ben Miller <bgmiller@dccinc.com>
27 * \arg With TONS of help from Mark!
29 * \ingroup applications
34 ASTERISK_FILE_VERSION(__FILE__
, "$Revision$")
40 #include <sys/types.h>
42 #include "asterisk/file.h"
43 #include "asterisk/logger.h"
44 #include "asterisk/channel.h"
45 #include "asterisk/pbx.h"
46 #include "asterisk/module.h"
47 #include "asterisk/features.h"
48 #include "asterisk/options.h"
49 #include "asterisk/logger.h"
50 #include "asterisk/say.h"
51 #include "asterisk/lock.h"
52 #include "asterisk/utils.h"
54 static char *app
= "ParkAndAnnounce";
56 static char *synopsis
= "Park and Announce";
58 static char *descrip
=
59 " ParkAndAnnounce(announce:template|timeout|dial|[return_context]):\n"
60 "Park a call into the parkinglot and announce the call to another channel.\n"
62 "announce template: Colon-separated list of files to announce. The word PARKED\n"
63 " will be replaced by a say_digits of the extension in which\n"
64 " the call is parked.\n"
65 "timeout: Time in seconds before the call returns into the return\n"
67 "dial: The app_dial style resource to call to make the\n"
68 " announcement. Console/dsp calls the console.\n"
69 "return_context: The goto-style label to jump the call back into after\n"
70 " timeout. Default <priority+1>.\n"
72 "The variable ${PARKEDAT} will contain the parking extension into which the\n"
73 "call was placed. Use with the Local channel to allow the dialplan to make\n"
74 "use of this information.\n";
77 static int parkandannounce_exec(struct ast_channel
*chan
, void *data
)
81 int lot
, timeout
= 0, dres
;
82 char *working
, *context
, *exten
, *priority
, *dial
, *dialtech
, *dialstr
;
83 char *template, *tpl_working
, *tpl_current
;
89 struct ast_channel
*dchan
;
90 struct outgoing_helper oh
;
93 struct ast_module_user
*u
;
95 if (ast_strlen_zero(data
)) {
96 ast_log(LOG_WARNING
, "ParkAndAnnounce requires arguments: (announce:template|timeout|dial|[return_context])\n");
100 u
= ast_module_user_add(chan
);
102 s
= ast_strdupa(data
);
104 template=strsep(&s
,"|");
106 ast_log(LOG_WARNING
, "PARK: An announce template must be defined\n");
107 ast_module_user_remove(u
);
112 timeout
= atoi(strsep(&s
, "|"));
115 dial
=strsep(&s
, "|");
117 ast_log(LOG_WARNING
, "PARK: A dial resource must be specified i.e: Console/dsp or Zap/g1/5551212\n");
118 ast_module_user_remove(u
);
121 dialtech
=strsep(&dial
, "/");
123 ast_verbose( VERBOSE_PREFIX_3
"Dial Tech,String: (%s,%s)\n", dialtech
,dialstr
);
128 if(return_context
!= NULL
) {
129 /* set the return context. Code borrowed from the Goto builtin */
131 working
= return_context
;
132 context
= strsep(&working
, "|");
133 exten
= strsep(&working
, "|");
135 /* Only a priority in this one */
140 priority
= strsep(&working
, "|");
142 /* Only an extension and priority in this one */
148 if(atoi(priority
) < 0) {
149 ast_log(LOG_WARNING
, "Priority '%s' must be a number > 0\n", priority
);
150 ast_module_user_remove(u
);
153 /* At this point we have a priority and maybe an extension and a context */
154 chan
->priority
= atoi(priority
);
156 ast_copy_string(chan
->exten
, exten
, sizeof(chan
->exten
));
158 ast_copy_string(chan
->context
, context
, sizeof(chan
->context
));
159 } else { /* increment the priority by default*/
163 if(option_verbose
> 2) {
164 ast_verbose( VERBOSE_PREFIX_3
"Return Context: (%s,%s,%d) ID: %s\n", chan
->context
,chan
->exten
, chan
->priority
, chan
->cid
.cid_num
);
165 if(!ast_exists_extension(chan
, chan
->context
, chan
->exten
, chan
->priority
, chan
->cid
.cid_num
)) {
166 ast_verbose( VERBOSE_PREFIX_3
"Warning: Return Context Invalid, call will return to default|s\n");
170 /* we are using masq_park here to protect * from touching the channel once we park it. If the channel comes out of timeout
171 before we are done announcing and the channel is messed with, Kablooeee. So we use Masq to prevent this. */
173 ast_masq_park_call(chan
, NULL
, timeout
, &lot
);
177 ast_verbose( VERBOSE_PREFIX_3
"Call Parking Called, lot: %d, timeout: %d, context: %s\n", lot
, timeout
, return_context
);
179 /* Now place the call to the extention */
181 snprintf(buf
, sizeof(buf
), "%d", lot
);
182 memset(&oh
, 0, sizeof(oh
));
183 oh
.parent_channel
= chan
;
184 oh
.vars
= ast_variable_new("_PARKEDAT", buf
);
185 dchan
= __ast_request_and_dial(dialtech
, AST_FORMAT_SLINEAR
, dialstr
,30000, &outstate
, chan
->cid
.cid_num
, chan
->cid
.cid_name
, &oh
);
188 if(dchan
->_state
== AST_STATE_UP
) {
189 if(option_verbose
> 3)
190 ast_verbose(VERBOSE_PREFIX_4
"Channel %s was answered.\n", dchan
->name
);
192 if(option_verbose
> 3)
193 ast_verbose(VERBOSE_PREFIX_4
"Channel %s was never answered.\n", dchan
->name
);
194 ast_log(LOG_WARNING
, "PARK: Channel %s was never answered for the announce.\n", dchan
->name
);
196 ast_module_user_remove(u
);
200 ast_log(LOG_WARNING
, "PARK: Unable to allocate announce channel.\n");
201 ast_module_user_remove(u
);
205 ast_stopstream(dchan
);
207 /* now we have the call placed and are ready to play stuff to it */
209 ast_verbose(VERBOSE_PREFIX_4
"Announce Template:%s\n", template);
211 tpl_working
= template;
212 tpl_current
=strsep(&tpl_working
, ":");
214 while(tpl_current
&& looptemp
< sizeof(tmp
)) {
215 tmp
[looptemp
]=tpl_current
;
217 tpl_current
=strsep(&tpl_working
,":");
220 for(i
=0; i
<looptemp
; i
++) {
221 ast_verbose(VERBOSE_PREFIX_4
"Announce:%s\n", tmp
[i
]);
222 if(!strcmp(tmp
[i
], "PARKED")) {
223 ast_say_digits(dchan
, lot
, "", dchan
->language
);
225 dres
= ast_streamfile(dchan
, tmp
[i
], dchan
->language
);
227 dres
= ast_waitstream(dchan
, "");
229 ast_log(LOG_WARNING
, "ast_streamfile of %s failed on %s\n", tmp
[i
], dchan
->name
);
235 ast_stopstream(dchan
);
238 ast_module_user_remove(u
);
243 static int unload_module(void)
247 res
= ast_unregister_application(app
);
249 ast_module_user_hangup_all();
254 static int load_module(void)
256 /* return ast_register_application(app, park_exec); */
257 return ast_register_application(app
, parkandannounce_exec
, synopsis
, descrip
);
260 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY
, "Call Parking and Announce Application");