Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include "asterisk.h"
00031
00032 ASTERISK_FILE_VERSION(__FILE__, "$Revision: 305889 $")
00033
00034 #include "asterisk/file.h"
00035 #include "asterisk/channel.h"
00036 #include "asterisk/pbx.h"
00037 #include "asterisk/module.h"
00038 #include "asterisk/app.h"
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073 static const char *app = "SendText";
00074
00075 static int sendtext_exec(struct ast_channel *chan, void *data)
00076 {
00077 int res = 0;
00078 char *status = "UNSUPPORTED";
00079 char *parse = NULL;
00080 AST_DECLARE_APP_ARGS(args,
00081 AST_APP_ARG(text);
00082 );
00083
00084
00085
00086 if (!data) {
00087 ast_log(LOG_WARNING, "SendText requires an argument (text)\n");
00088 return -1;
00089 } else
00090 parse = ast_strdupa(data);
00091
00092 AST_STANDARD_APP_ARGS(args, parse);
00093
00094 ast_channel_lock(chan);
00095 if (!chan->tech->send_text) {
00096 ast_channel_unlock(chan);
00097
00098 pbx_builtin_setvar_helper(chan, "SENDTEXTSTATUS", status);
00099 return 0;
00100 }
00101 status = "FAILURE";
00102 res = ast_sendtext(chan, args.text);
00103 if (!res)
00104 status = "SUCCESS";
00105 ast_channel_unlock(chan);
00106 pbx_builtin_setvar_helper(chan, "SENDTEXTSTATUS", status);
00107 return 0;
00108 }
00109
00110 static int unload_module(void)
00111 {
00112 return ast_unregister_application(app);
00113 }
00114
00115 static int load_module(void)
00116 {
00117 return ast_register_application_xml(app, sendtext_exec);
00118 }
00119
00120 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Send Text Applications");