2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (c) 2004 - 2006 Digium, Inc. All rights reserved.
6 * Mark Spencer <markster@digium.com>
8 * This code is released under the GNU General Public License
9 * version 2.0. See LICENSE for more information.
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.
21 * \brief page() - Paging application
23 * \author Mark Spencer <markster@digium.com>
25 * \ingroup applications
29 <depend>app_confbridge</depend>
30 <support_level>core</support_level>
35 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
37 #include "asterisk/channel.h"
38 #include "asterisk/pbx.h"
39 #include "asterisk/module.h"
40 #include "asterisk/file.h"
41 #include "asterisk/app.h"
42 #include "asterisk/chanvars.h"
43 #include "asterisk/utils.h"
44 #include "asterisk/devicestate.h"
45 #include "asterisk/dial.h"
48 <application name="Page" language="en_US">
53 <parameter name="Technology/Resource" required="true" argsep="&">
54 <argument name="Technology/Resource" required="true">
55 <para>Specification of the device(s) to dial. These must be in the format of
56 <literal>Technology/Resource</literal>, where <replaceable>Technology</replaceable>
57 represents a particular channel driver, and <replaceable>Resource</replaceable> represents a resource
58 available to that particular channel driver.</para>
60 <argument name="Technology2/Resource2" multiple="true">
61 <para>Optional extra devices to dial in parallel</para>
62 <para>If you need more than one, enter them as Technology2/Resource2&
63 Technology3/Resourse3&.....</para>
66 <parameter name="options">
68 <option name="b" argsep="^">
69 <para>Before initiating an outgoing call, Gosub to the specified
70 location using the newly created channel. The Gosub will be
71 executed for each destination channel.</para>
72 <argument name="context" required="false" />
73 <argument name="exten" required="false" />
74 <argument name="priority" required="true" hasparams="optional" argsep="^">
75 <argument name="arg1" multiple="true" required="true" />
76 <argument name="argN" />
79 <option name="B" argsep="^">
80 <para>Before initiating the outgoing call(s), Gosub to the specified
81 location using the current channel.</para>
82 <argument name="context" required="false" />
83 <argument name="exten" required="false" />
84 <argument name="priority" required="true" hasparams="optional" argsep="^">
85 <argument name="arg1" multiple="true" required="true" />
86 <argument name="argN" />
90 <para>Full duplex audio</para>
93 <para>Ignore attempts to forward the call</para>
96 <para>Quiet, do not play beep to caller</para>
99 <para>Record the page into a file (<literal>CONFBRIDGE(bridge,record_conference)</literal>)</para>
102 <para>Only dial a channel if its device state says that it is <literal>NOT_INUSE</literal></para>
105 <argument name="x" required="true">
106 <para>The announcement to playback to all devices</para>
108 <para>Play an announcement to all paged participants</para>
111 <para>Do not play announcement to caller (alters <literal>A(x)</literal> behavior)</para>
115 <parameter name="timeout">
116 <para>Specify the length of time that the system will attempt to connect a call.
117 After this duration, any page calls that have not been answered will be hung up by the
122 <para>Places outbound calls to the given <replaceable>technology</replaceable>/<replaceable>resource</replaceable>
123 and dumps them into a conference bridge as muted participants. The original
124 caller is dumped into the conference as a speaker and the room is
125 destroyed when the original caller leaves.</para>
128 <ref type="application">ConfBridge</ref>
132 static const char * const app_page= "Page";
134 enum page_opt_flags {
135 PAGE_DUPLEX = (1 << 0),
136 PAGE_QUIET = (1 << 1),
137 PAGE_RECORD = (1 << 2),
138 PAGE_SKIP = (1 << 3),
139 PAGE_IGNORE_FORWARDS = (1 << 4),
140 PAGE_ANNOUNCE = (1 << 5),
141 PAGE_NOCALLERANNOUNCE = (1 << 6),
142 PAGE_PREDIAL_CALLEE = (1 << 7),
143 PAGE_PREDIAL_CALLER = (1 << 8),
147 OPT_ARG_ANNOUNCE = 0,
148 OPT_ARG_PREDIAL_CALLEE = 1,
149 OPT_ARG_PREDIAL_CALLER = 2,
150 OPT_ARG_ARRAY_SIZE = 3,
153 AST_APP_OPTIONS(page_opts, {
154 AST_APP_OPTION_ARG('b', PAGE_PREDIAL_CALLEE, OPT_ARG_PREDIAL_CALLEE),
155 AST_APP_OPTION_ARG('B', PAGE_PREDIAL_CALLER, OPT_ARG_PREDIAL_CALLER),
156 AST_APP_OPTION('d', PAGE_DUPLEX),
157 AST_APP_OPTION('q', PAGE_QUIET),
158 AST_APP_OPTION('r', PAGE_RECORD),
159 AST_APP_OPTION('s', PAGE_SKIP),
160 AST_APP_OPTION('i', PAGE_IGNORE_FORWARDS),
161 AST_APP_OPTION_ARG('A', PAGE_ANNOUNCE, OPT_ARG_ANNOUNCE),
162 AST_APP_OPTION('n', PAGE_NOCALLERANNOUNCE),
165 /* We use this structure as a way to pass this to all dialed channels */
166 struct page_options {
167 char *opts[OPT_ARG_ARRAY_SIZE];
168 struct ast_flags flags;
173 * \brief Setup the page bridge profile.
175 * \param chan Setup bridge profile on this channel.
176 * \param options Options to setup bridge profile.
180 static void setup_profile_bridge(struct ast_channel *chan, struct page_options *options)
182 /* Use default_bridge as a starting point */
183 ast_func_write(chan, "CONFBRIDGE(bridge,template)", "");
184 if (ast_test_flag(&options->flags, PAGE_RECORD)) {
185 ast_func_write(chan, "CONFBRIDGE(bridge,record_conference)", "yes");
191 * \brief Setup the paged user profile.
193 * \param chan Setup user profile on this channel.
194 * \param options Options to setup paged user profile.
198 static void setup_profile_paged(struct ast_channel *chan, struct page_options *options)
200 /* Use default_user as a starting point */
201 ast_func_write(chan, "CONFBRIDGE(user,template)", "");
202 ast_func_write(chan, "CONFBRIDGE(user,quiet)", "yes");
203 ast_func_write(chan, "CONFBRIDGE(user,end_marked)", "yes");
204 if (!ast_test_flag(&options->flags, PAGE_DUPLEX)) {
205 ast_func_write(chan, "CONFBRIDGE(user,startmuted)", "yes");
207 if (ast_test_flag(&options->flags, PAGE_ANNOUNCE)
208 && !ast_strlen_zero(options->opts[OPT_ARG_ANNOUNCE])) {
209 ast_func_write(chan, "CONFBRIDGE(user,announcement)", options->opts[OPT_ARG_ANNOUNCE]);
215 * \brief Setup the caller user profile.
217 * \param chan Setup user profile on this channel.
218 * \param options Options to setup caller user profile.
222 static void setup_profile_caller(struct ast_channel *chan, struct page_options *options)
224 /* Use default_user as a starting point if not already setup. */
225 ast_func_write(chan, "CONFBRIDGE(user,template)", "");
226 ast_func_write(chan, "CONFBRIDGE(user,quiet)", "yes");
227 ast_func_write(chan, "CONFBRIDGE(user,marked)", "yes");
228 if (!ast_test_flag(&options->flags, PAGE_NOCALLERANNOUNCE)
229 && ast_test_flag(&options->flags, PAGE_ANNOUNCE)
230 && !ast_strlen_zero(options->opts[OPT_ARG_ANNOUNCE])) {
231 ast_func_write(chan, "CONFBRIDGE(user,announcement)", options->opts[OPT_ARG_ANNOUNCE]);
235 static void page_state_callback(struct ast_dial *dial)
237 struct ast_channel *chan;
238 struct page_options *options;
240 if (ast_dial_state(dial) != AST_DIAL_RESULT_ANSWERED ||
241 !(chan = ast_dial_answered(dial)) ||
242 !(options = ast_dial_get_user_data(dial))) {
246 setup_profile_bridge(chan, options);
247 setup_profile_paged(chan, options);
250 static int page_exec(struct ast_channel *chan, const char *data)
252 char *tech, *resource, *tmp;
253 char confbridgeopts[128], originator[AST_CHANNEL_NAME];
254 struct page_options options = { { 0, }, { 0, } };
255 unsigned int confid = ast_random();
257 int res = 0, pos = 0, i = 0;
258 struct ast_dial **dial_list;
259 unsigned int num_dials;
263 AST_DECLARE_APP_ARGS(args,
264 AST_APP_ARG(devices);
265 AST_APP_ARG(options);
266 AST_APP_ARG(timeout);
269 if (ast_strlen_zero(data)) {
270 ast_log(LOG_WARNING, "This application requires at least one argument (destination(s) to page)\n");
274 if (!(app = pbx_findapp("ConfBridge"))) {
275 ast_log(LOG_WARNING, "There is no ConfBridge application available!\n");
279 parse = ast_strdupa(data);
281 AST_STANDARD_APP_ARGS(args, parse);
283 ast_copy_string(originator, ast_channel_name(chan), sizeof(originator));
284 if ((tmp = strchr(originator, '-'))) {
288 if (!ast_strlen_zero(args.options)) {
289 ast_app_parse_options(page_opts, &options.flags, options.opts, args.options);
292 if (!ast_strlen_zero(args.timeout)) {
293 timeout = atoi(args.timeout);
296 snprintf(confbridgeopts, sizeof(confbridgeopts), "ConfBridge,%u", confid);
298 /* Count number of extensions in list by number of ampersands + 1 */
308 if (!(dial_list = ast_calloc(num_dials, sizeof(struct ast_dial *)))) {
309 ast_log(LOG_ERROR, "Can't allocate %ld bytes for dial list\n", (long)(sizeof(struct ast_dial *) * num_dials));
313 if (ast_test_flag(&options.flags, PAGE_PREDIAL_CALLER)
314 && !ast_strlen_zero(options.opts[OPT_ARG_PREDIAL_CALLER])) {
315 ast_replace_subargument_delimiter(options.opts[OPT_ARG_PREDIAL_CALLER]);
316 ast_app_exec_sub(NULL, chan, options.opts[OPT_ARG_PREDIAL_CALLER], 0);
319 /* Go through parsing/calling each device */
320 while ((tech = strsep(&args.devices, "&"))) {
322 struct ast_dial *dial = NULL;
324 /* don't call the originating device */
325 if (!strcasecmp(tech, originator))
328 /* If no resource is available, continue on */
329 if (!(resource = strchr(tech, '/'))) {
330 ast_log(LOG_WARNING, "Incomplete destination '%s' supplied.\n", tech);
334 /* Ensure device is not in use if skip option is enabled */
335 if (ast_test_flag(&options.flags, PAGE_SKIP)) {
336 state = ast_device_state(tech);
337 if (state == AST_DEVICE_UNKNOWN) {
338 ast_log(LOG_WARNING, "Destination '%s' has device state '%s'. Paging anyway.\n", tech, ast_devstate2str(state));
339 } else if (state != AST_DEVICE_NOT_INUSE) {
340 ast_log(LOG_WARNING, "Destination '%s' has device state '%s'.\n", tech, ast_devstate2str(state));
347 /* Create a dialing structure */
348 if (!(dial = ast_dial_create())) {
349 ast_log(LOG_WARNING, "Failed to create dialing structure.\n");
353 /* Append technology and resource */
354 if (ast_dial_append(dial, tech, resource) == -1) {
355 ast_log(LOG_ERROR, "Failed to add %s to outbound dial\n", tech);
356 ast_dial_destroy(dial);
360 /* Set ANSWER_EXEC as global option */
361 ast_dial_option_global_enable(dial, AST_DIAL_OPTION_ANSWER_EXEC, confbridgeopts);
363 if (ast_test_flag(&options.flags, PAGE_PREDIAL_CALLEE)
364 && !ast_strlen_zero(options.opts[OPT_ARG_PREDIAL_CALLEE])) {
365 ast_dial_option_global_enable(dial, AST_DIAL_OPTION_PREDIAL, options.opts[OPT_ARG_PREDIAL_CALLEE]);
369 ast_dial_set_global_timeout(dial, timeout * 1000);
372 if (ast_test_flag(&options.flags, PAGE_IGNORE_FORWARDS)) {
373 ast_dial_option_global_enable(dial, AST_DIAL_OPTION_DISABLE_CALL_FORWARDING, NULL);
376 ast_dial_set_state_callback(dial, &page_state_callback);
377 ast_dial_set_user_data(dial, &options);
379 /* Run this dial in async mode */
380 ast_dial_run(dial, chan, 1);
382 /* Put in our dialing array */
383 dial_list[pos++] = dial;
386 if (!ast_test_flag(&options.flags, PAGE_QUIET)) {
387 res = ast_streamfile(chan, "beep", ast_channel_language(chan));
389 res = ast_waitstream(chan, "");
393 setup_profile_bridge(chan, &options);
394 setup_profile_caller(chan, &options);
396 snprintf(confbridgeopts, sizeof(confbridgeopts), "%u", confid);
397 pbx_exec(chan, app, confbridgeopts);
400 /* Go through each dial attempt cancelling, joining, and destroying */
401 for (i = 0; i < pos; i++) {
402 struct ast_dial *dial = dial_list[i];
404 /* We have to wait for the async thread to exit as it's possible ConfBridge won't throw them out immediately */
407 /* Hangup all channels */
408 ast_dial_hangup(dial);
410 /* Destroy dialing structure */
411 ast_dial_destroy(dial);
419 static int unload_module(void)
421 return ast_unregister_application(app_page);
424 static int load_module(void)
426 return ast_register_application_xml(app_page, page_exec);
429 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Page Multiple Phones");