Sat Apr 26 2014 22:01:27

Asterisk developer's documentation


app_page.c
Go to the documentation of this file.
00001 /*
00002  * Asterisk -- An open source telephony toolkit.
00003  *
00004  * Copyright (c) 2004 - 2006 Digium, Inc.  All rights reserved.
00005  *
00006  * Mark Spencer <markster@digium.com>
00007  *
00008  * This code is released under the GNU General Public License
00009  * version 2.0.  See LICENSE for more information.
00010  *
00011  * See http://www.asterisk.org for more information about
00012  * the Asterisk project. Please do not directly contact
00013  * any of the maintainers of this project for assistance;
00014  * the project provides a web site, mailing lists and IRC
00015  * channels for your use.
00016  *
00017  */
00018 
00019 /*! \file
00020  *
00021  * \brief page() - Paging application
00022  *
00023  * \author Mark Spencer <markster@digium.com>
00024  *
00025  * \ingroup applications
00026  */
00027 
00028 /*** MODULEINFO
00029    <depend>app_confbridge</depend>
00030    <support_level>core</support_level>
00031  ***/
00032 
00033 #include "asterisk.h"
00034 
00035 ASTERISK_FILE_VERSION(__FILE__, "$Revision: 380894 $")
00036 
00037 #include "asterisk/channel.h"
00038 #include "asterisk/pbx.h"
00039 #include "asterisk/module.h"
00040 #include "asterisk/file.h"
00041 #include "asterisk/app.h"
00042 #include "asterisk/chanvars.h"
00043 #include "asterisk/utils.h"
00044 #include "asterisk/devicestate.h"
00045 #include "asterisk/dial.h"
00046 
00047 /*** DOCUMENTATION
00048    <application name="Page" language="en_US">
00049       <synopsis>
00050          Page series of phones
00051       </synopsis>
00052       <syntax>
00053          <parameter name="Technology/Resource" required="true" argsep="&amp;">
00054             <argument name="Technology/Resource" required="true">
00055                <para>Specification of the device(s) to dial. These must be in the format of
00056                <literal>Technology/Resource</literal>, where <replaceable>Technology</replaceable>
00057                represents a particular channel driver, and <replaceable>Resource</replaceable> represents a resource
00058                available to that particular channel driver.</para>
00059             </argument>
00060             <argument name="Technology2/Resource2" multiple="true">
00061                <para>Optional extra devices to dial in parallel</para>
00062                <para>If you need more than one, enter them as Technology2/Resource2&amp;
00063                Technology3/Resourse3&amp;.....</para>
00064             </argument>
00065          </parameter>
00066          <parameter name="options">
00067             <optionlist>
00068                <option name="d">
00069                   <para>Full duplex audio</para>
00070                </option>
00071                <option name="i">
00072                   <para>Ignore attempts to forward the call</para>
00073                </option>
00074                <option name="q">
00075                   <para>Quiet, do not play beep to caller</para>
00076                </option>
00077                <option name="r">
00078                   <para>Record the page into a file (<literal>CONFBRIDGE(bridge,record_conference)</literal>)</para>
00079                </option>
00080                <option name="s">
00081                   <para>Only dial a channel if its device state says that it is <literal>NOT_INUSE</literal></para>
00082                </option>
00083                <option name="A">
00084                   <argument name="x" required="true">
00085                      <para>The announcement to playback to all devices</para>
00086                   </argument>
00087                   <para>Play an announcement to all paged participants</para>
00088                </option>
00089                <option name="n">
00090                   <para>Do not play announcement to caller (alters <literal>A(x)</literal> behavior)</para>
00091                </option>
00092             </optionlist>
00093          </parameter>
00094          <parameter name="timeout">
00095             <para>Specify the length of time that the system will attempt to connect a call.
00096             After this duration, any page calls that have not been answered will be hung up by the
00097             system.</para>
00098          </parameter>
00099       </syntax>
00100       <description>
00101          <para>Places outbound calls to the given <replaceable>technology</replaceable>/<replaceable>resource</replaceable>
00102          and dumps them into a conference bridge as muted participants. The original
00103          caller is dumped into the conference as a speaker and the room is
00104          destroyed when the original caller leaves.</para>
00105       </description>
00106       <see-also>
00107          <ref type="application">ConfBridge</ref>
00108       </see-also>
00109    </application>
00110  ***/
00111 static const char * const app_page= "Page";
00112 
00113 enum page_opt_flags {
00114    PAGE_DUPLEX = (1 << 0),
00115    PAGE_QUIET = (1 << 1),
00116    PAGE_RECORD = (1 << 2),
00117    PAGE_SKIP = (1 << 3),
00118    PAGE_IGNORE_FORWARDS = (1 << 4),
00119    PAGE_ANNOUNCE = (1 << 5),
00120    PAGE_NOCALLERANNOUNCE = (1 << 6),
00121 };
00122 
00123 enum {
00124    OPT_ARG_ANNOUNCE = 0,
00125    OPT_ARG_ARRAY_SIZE = 1,
00126 };
00127 
00128 AST_APP_OPTIONS(page_opts, {
00129    AST_APP_OPTION('d', PAGE_DUPLEX),
00130    AST_APP_OPTION('q', PAGE_QUIET),
00131    AST_APP_OPTION('r', PAGE_RECORD),
00132    AST_APP_OPTION('s', PAGE_SKIP),
00133    AST_APP_OPTION('i', PAGE_IGNORE_FORWARDS),
00134    AST_APP_OPTION_ARG('A', PAGE_ANNOUNCE, OPT_ARG_ANNOUNCE),
00135    AST_APP_OPTION('n', PAGE_NOCALLERANNOUNCE),
00136 });
00137 
00138 /* We use this structure as a way to pass this to all dialed channels */
00139 struct page_options {
00140    char *opts[OPT_ARG_ARRAY_SIZE];
00141    struct ast_flags flags;
00142 };
00143 
00144 /*!
00145  * \internal
00146  * \brief Setup the page bridge profile.
00147  *
00148  * \param chan Setup bridge profile on this channel.
00149  * \param options Options to setup bridge profile.
00150  *
00151  * \return Nothing
00152  */
00153 static void setup_profile_bridge(struct ast_channel *chan, struct page_options *options)
00154 {
00155    /* Use default_bridge as a starting point */
00156    ast_func_write(chan, "CONFBRIDGE(bridge,template)", "");
00157    if (ast_test_flag(&options->flags, PAGE_RECORD)) {
00158       ast_func_write(chan, "CONFBRIDGE(bridge,record_conference)", "yes");
00159    }
00160 }
00161 
00162 /*!
00163  * \internal
00164  * \brief Setup the paged user profile.
00165  *
00166  * \param chan Setup user profile on this channel.
00167  * \param options Options to setup paged user profile.
00168  *
00169  * \return Nothing
00170  */
00171 static void setup_profile_paged(struct ast_channel *chan, struct page_options *options)
00172 {
00173    /* Use default_user as a starting point */
00174    ast_func_write(chan, "CONFBRIDGE(user,template)", "");
00175    ast_func_write(chan, "CONFBRIDGE(user,quiet)", "yes");
00176    ast_func_write(chan, "CONFBRIDGE(user,end_marked)", "yes");
00177    if (!ast_test_flag(&options->flags, PAGE_DUPLEX)) {
00178       ast_func_write(chan, "CONFBRIDGE(user,startmuted)", "yes");
00179    }
00180    if (ast_test_flag(&options->flags, PAGE_ANNOUNCE)
00181       && !ast_strlen_zero(options->opts[OPT_ARG_ANNOUNCE])) {
00182       ast_func_write(chan, "CONFBRIDGE(user,announcement)", options->opts[OPT_ARG_ANNOUNCE]);
00183    }
00184 }
00185 
00186 /*!
00187  * \internal
00188  * \brief Setup the caller user profile.
00189  *
00190  * \param chan Setup user profile on this channel.
00191  * \param options Options to setup caller user profile.
00192  *
00193  * \return Nothing
00194  */
00195 static void setup_profile_caller(struct ast_channel *chan, struct page_options *options)
00196 {
00197    /* Use default_user as a starting point if not already setup. */
00198    ast_func_write(chan, "CONFBRIDGE(user,template)", "");
00199    ast_func_write(chan, "CONFBRIDGE(user,quiet)", "yes");
00200    ast_func_write(chan, "CONFBRIDGE(user,marked)", "yes");
00201    if (!ast_test_flag(&options->flags, PAGE_NOCALLERANNOUNCE)
00202       && ast_test_flag(&options->flags, PAGE_ANNOUNCE)
00203       && !ast_strlen_zero(options->opts[OPT_ARG_ANNOUNCE])) {
00204       ast_func_write(chan, "CONFBRIDGE(user,announcement)", options->opts[OPT_ARG_ANNOUNCE]);
00205    }
00206 }
00207 
00208 static void page_state_callback(struct ast_dial *dial)
00209 {
00210    struct ast_channel *chan;
00211    struct page_options *options;
00212 
00213    if (ast_dial_state(dial) != AST_DIAL_RESULT_ANSWERED ||
00214        !(chan = ast_dial_answered(dial)) ||
00215        !(options = ast_dial_get_user_data(dial))) {
00216       return;
00217    }
00218 
00219    setup_profile_bridge(chan, options);
00220    setup_profile_paged(chan, options);
00221 }
00222 
00223 static int page_exec(struct ast_channel *chan, const char *data)
00224 {
00225    char *tech, *resource, *tmp;
00226    char confbridgeopts[128], originator[AST_CHANNEL_NAME];
00227    struct page_options options = { { 0, }, { 0, } };
00228    unsigned int confid = ast_random();
00229    struct ast_app *app;
00230    int res = 0, pos = 0, i = 0;
00231    struct ast_dial **dial_list;
00232    unsigned int num_dials;
00233    int timeout = 0;
00234    char *parse;
00235 
00236    AST_DECLARE_APP_ARGS(args,
00237       AST_APP_ARG(devices);
00238       AST_APP_ARG(options);
00239       AST_APP_ARG(timeout);
00240    );
00241 
00242    if (ast_strlen_zero(data)) {
00243       ast_log(LOG_WARNING, "This application requires at least one argument (destination(s) to page)\n");
00244       return -1;
00245    }
00246 
00247    if (!(app = pbx_findapp("ConfBridge"))) {
00248       ast_log(LOG_WARNING, "There is no ConfBridge application available!\n");
00249       return -1;
00250    };
00251 
00252    parse = ast_strdupa(data);
00253 
00254    AST_STANDARD_APP_ARGS(args, parse);
00255 
00256    ast_copy_string(originator, ast_channel_name(chan), sizeof(originator));
00257    if ((tmp = strchr(originator, '-'))) {
00258       *tmp = '\0';
00259    }
00260 
00261    if (!ast_strlen_zero(args.options)) {
00262       ast_app_parse_options(page_opts, &options.flags, options.opts, args.options);
00263    }
00264 
00265    if (!ast_strlen_zero(args.timeout)) {
00266       timeout = atoi(args.timeout);
00267    }
00268 
00269    snprintf(confbridgeopts, sizeof(confbridgeopts), "ConfBridge,%u", confid);
00270 
00271    /* Count number of extensions in list by number of ampersands + 1 */
00272    num_dials = 1;
00273    tmp = args.devices;
00274    while (*tmp) {
00275       if (*tmp == '&') {
00276          num_dials++;
00277       }
00278       tmp++;
00279    }
00280 
00281    if (!(dial_list = ast_calloc(num_dials, sizeof(struct ast_dial *)))) {
00282       ast_log(LOG_ERROR, "Can't allocate %ld bytes for dial list\n", (long)(sizeof(struct ast_dial *) * num_dials));
00283       return -1;
00284    }
00285 
00286    /* Go through parsing/calling each device */
00287    while ((tech = strsep(&args.devices, "&"))) {
00288       int state = 0;
00289       struct ast_dial *dial = NULL;
00290 
00291       /* don't call the originating device */
00292       if (!strcasecmp(tech, originator))
00293          continue;
00294 
00295       /* If no resource is available, continue on */
00296       if (!(resource = strchr(tech, '/'))) {
00297          ast_log(LOG_WARNING, "Incomplete destination '%s' supplied.\n", tech);
00298          continue;
00299       }
00300 
00301       /* Ensure device is not in use if skip option is enabled */
00302       if (ast_test_flag(&options.flags, PAGE_SKIP)) {
00303          state = ast_device_state(tech);
00304          if (state == AST_DEVICE_UNKNOWN) {
00305             ast_log(LOG_WARNING, "Destination '%s' has device state '%s'. Paging anyway.\n", tech, ast_devstate2str(state));
00306          } else if (state != AST_DEVICE_NOT_INUSE) {
00307             ast_log(LOG_WARNING, "Destination '%s' has device state '%s'.\n", tech, ast_devstate2str(state));
00308             continue;
00309          }
00310       }
00311 
00312       *resource++ = '\0';
00313 
00314       /* Create a dialing structure */
00315       if (!(dial = ast_dial_create())) {
00316          ast_log(LOG_WARNING, "Failed to create dialing structure.\n");
00317          continue;
00318       }
00319 
00320       /* Append technology and resource */
00321       if (ast_dial_append(dial, tech, resource) == -1) {
00322          ast_log(LOG_ERROR, "Failed to add %s to outbound dial\n", tech);
00323          ast_dial_destroy(dial);
00324          continue;
00325       }
00326 
00327       /* Set ANSWER_EXEC as global option */
00328       ast_dial_option_global_enable(dial, AST_DIAL_OPTION_ANSWER_EXEC, confbridgeopts);
00329 
00330       if (timeout) {
00331          ast_dial_set_global_timeout(dial, timeout * 1000);
00332       }
00333 
00334       if (ast_test_flag(&options.flags, PAGE_IGNORE_FORWARDS)) {
00335          ast_dial_option_global_enable(dial, AST_DIAL_OPTION_DISABLE_CALL_FORWARDING, NULL);
00336       }
00337 
00338       ast_dial_set_state_callback(dial, &page_state_callback);
00339       ast_dial_set_user_data(dial, &options);
00340 
00341       /* Run this dial in async mode */
00342       ast_dial_run(dial, chan, 1);
00343 
00344       /* Put in our dialing array */
00345       dial_list[pos++] = dial;
00346    }
00347 
00348    if (!ast_test_flag(&options.flags, PAGE_QUIET)) {
00349       res = ast_streamfile(chan, "beep", ast_channel_language(chan));
00350       if (!res)
00351          res = ast_waitstream(chan, "");
00352    }
00353 
00354    if (!res) {
00355       setup_profile_bridge(chan, &options);
00356       setup_profile_caller(chan, &options);
00357 
00358       snprintf(confbridgeopts, sizeof(confbridgeopts), "%u", confid);
00359       pbx_exec(chan, app, confbridgeopts);
00360    }
00361 
00362    /* Go through each dial attempt cancelling, joining, and destroying */
00363    for (i = 0; i < pos; i++) {
00364       struct ast_dial *dial = dial_list[i];
00365 
00366       /* We have to wait for the async thread to exit as it's possible ConfBridge won't throw them out immediately */
00367       ast_dial_join(dial);
00368 
00369       /* Hangup all channels */
00370       ast_dial_hangup(dial);
00371 
00372       /* Destroy dialing structure */
00373       ast_dial_destroy(dial);
00374    }
00375 
00376    ast_free(dial_list);
00377 
00378    return -1;
00379 }
00380 
00381 static int unload_module(void)
00382 {
00383    return ast_unregister_application(app_page);
00384 }
00385 
00386 static int load_module(void)
00387 {
00388    return ast_register_application_xml(app_page, page_exec);
00389 }
00390 
00391 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Page Multiple Phones");
00392