app_url.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 1999 - 2005, Digium, Inc.
  5. *
  6. * Mark Spencer <markster@digium.com>
  7. *
  8. * See http://www.asterisk.org for more information about
  9. * the Asterisk project. Please do not directly contact
  10. * any of the maintainers of this project for assistance;
  11. * the project provides a web site, mailing lists and IRC
  12. * channels for your use.
  13. *
  14. * This program is free software, distributed under the terms of
  15. * the GNU General Public License Version 2. See the LICENSE file
  16. * at the top of the source tree.
  17. */
  18. /*! \file
  19. *
  20. * \brief App to transmit a URL
  21. *
  22. * \author Mark Spencer <markster@digium.com>
  23. *
  24. * \ingroup applications
  25. */
  26. /*** MODULEINFO
  27. <support_level>extended</support_level>
  28. <defaultenabled>no</defaultenabled>
  29. ***/
  30. #include "asterisk.h"
  31. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  32. #include "asterisk/pbx.h"
  33. #include "asterisk/module.h"
  34. #include "asterisk/app.h"
  35. #include "asterisk/channel.h"
  36. /*** DOCUMENTATION
  37. <application name="SendURL" language="en_US">
  38. <synopsis>
  39. Send a URL.
  40. </synopsis>
  41. <syntax>
  42. <parameter name="URL" required="true" />
  43. <parameter name="option">
  44. <optionlist>
  45. <option name="w">
  46. <para>Execution will wait for an acknowledgement that the
  47. URL has been loaded before continuing.</para>
  48. </option>
  49. </optionlist>
  50. </parameter>
  51. </syntax>
  52. <description>
  53. <para>Requests client go to <replaceable>URL</replaceable> (IAX2) or sends the
  54. URL to the client (other channels).</para>
  55. <para>Result is returned in the <variable>SENDURLSTATUS</variable> channel variable:</para>
  56. <variablelist>
  57. <variable name="SENDURLSTATUS">
  58. <value name="SUCCESS">
  59. URL successfully sent to client.
  60. </value>
  61. <value name="FAILURE">
  62. Failed to send URL.
  63. </value>
  64. <value name="NOLOAD">
  65. Client failed to load URL (wait enabled).
  66. </value>
  67. <value name="UNSUPPORTED">
  68. Channel does not support URL transport.
  69. </value>
  70. </variable>
  71. </variablelist>
  72. <para>SendURL continues normally if the URL was sent correctly or if the channel
  73. does not support HTML transport. Otherwise, the channel is hung up.</para>
  74. </description>
  75. <see-also>
  76. <ref type="application">SendImage</ref>
  77. <ref type="application">SendText</ref>
  78. </see-also>
  79. </application>
  80. ***/
  81. static char *app = "SendURL";
  82. enum option_flags {
  83. OPTION_WAIT = (1 << 0),
  84. };
  85. AST_APP_OPTIONS(app_opts,{
  86. AST_APP_OPTION('w', OPTION_WAIT),
  87. });
  88. static int sendurl_exec(struct ast_channel *chan, const char *data)
  89. {
  90. int res = 0;
  91. char *tmp;
  92. struct ast_frame *f;
  93. char *status = "FAILURE";
  94. char *opts[0];
  95. struct ast_flags flags = { 0 };
  96. AST_DECLARE_APP_ARGS(args,
  97. AST_APP_ARG(url);
  98. AST_APP_ARG(options);
  99. );
  100. if (ast_strlen_zero(data)) {
  101. ast_log(LOG_WARNING, "SendURL requires an argument (URL)\n");
  102. pbx_builtin_setvar_helper(chan, "SENDURLSTATUS", status);
  103. return -1;
  104. }
  105. tmp = ast_strdupa(data);
  106. AST_STANDARD_APP_ARGS(args, tmp);
  107. if (args.argc == 2)
  108. ast_app_parse_options(app_opts, &flags, opts, args.options);
  109. if (!ast_channel_supports_html(chan)) {
  110. /* Does not support transport */
  111. pbx_builtin_setvar_helper(chan, "SENDURLSTATUS", "UNSUPPORTED");
  112. return 0;
  113. }
  114. res = ast_channel_sendurl(chan, args.url);
  115. if (res == -1) {
  116. pbx_builtin_setvar_helper(chan, "SENDURLSTATUS", "FAILURE");
  117. return res;
  118. }
  119. status = "SUCCESS";
  120. if (ast_test_flag(&flags, OPTION_WAIT)) {
  121. for(;;) {
  122. /* Wait for an event */
  123. res = ast_waitfor(chan, -1);
  124. if (res < 0)
  125. break;
  126. f = ast_read(chan);
  127. if (!f) {
  128. res = -1;
  129. status = "FAILURE";
  130. break;
  131. }
  132. if (f->frametype == AST_FRAME_HTML) {
  133. switch (f->subclass.integer) {
  134. case AST_HTML_LDCOMPLETE:
  135. res = 0;
  136. ast_frfree(f);
  137. status = "NOLOAD";
  138. goto out;
  139. break;
  140. case AST_HTML_NOSUPPORT:
  141. /* Does not support transport */
  142. status = "UNSUPPORTED";
  143. res = 0;
  144. ast_frfree(f);
  145. goto out;
  146. break;
  147. default:
  148. ast_log(LOG_WARNING, "Don't know what to do with HTML subclass %d\n", f->subclass.integer);
  149. };
  150. }
  151. ast_frfree(f);
  152. }
  153. }
  154. out:
  155. pbx_builtin_setvar_helper(chan, "SENDURLSTATUS", status);
  156. return res;
  157. }
  158. static int unload_module(void)
  159. {
  160. return ast_unregister_application(app);
  161. }
  162. static int load_module(void)
  163. {
  164. return ast_register_application_xml(app, sendurl_exec);
  165. }
  166. AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Send URL Applications");