| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-09-15 15:44:26 +00:00
										 |  |  |  * Asterisk -- An open source telephony toolkit. | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-09-15 15:44:26 +00:00
										 |  |  |  * Copyright (C) 1999 - 2005, Digium, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * See http://www.asterisk.org for more information about
 | 
					
						
							|  |  |  |  * the Asterisk project. Please do not directly contact | 
					
						
							|  |  |  |  * any of the maintainers of this project for assistance; | 
					
						
							|  |  |  |  * the project provides a web site, mailing lists and IRC | 
					
						
							|  |  |  |  * channels for your use. | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is free software, distributed under the terms of | 
					
						
							| 
									
										
										
										
											2005-09-15 15:44:26 +00:00
										 |  |  |  * the GNU General Public License Version 2. See the LICENSE file | 
					
						
							|  |  |  |  * at the top of the source tree. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-24 20:12:06 +00:00
										 |  |  | /*! \file
 | 
					
						
							| 
									
										
										
										
											2005-09-15 15:44:26 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-10-24 20:12:06 +00:00
										 |  |  |  * \brief UserEvent application -- send manager event | 
					
						
							| 
									
										
										
										
											2005-09-15 15:44:26 +00:00
										 |  |  |  *  | 
					
						
							| 
									
										
										
										
											2005-11-06 15:09:47 +00:00
										 |  |  |  * \ingroup applications | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-07 18:54:56 +00:00
										 |  |  | #include "asterisk.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ASTERISK_FILE_VERSION(__FILE__, "$Revision$") | 
					
						
							| 
									
										
										
										
											2005-09-15 15:44:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-21 06:02:45 +00:00
										 |  |  | #include "asterisk/pbx.h"
 | 
					
						
							|  |  |  | #include "asterisk/module.h"
 | 
					
						
							|  |  |  | #include "asterisk/manager.h"
 | 
					
						
							| 
									
										
										
										
											2006-05-20 13:29:22 +00:00
										 |  |  | #include "asterisk/app.h"
 | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | /*** DOCUMENTATION
 | 
					
						
							|  |  |  | 	<application name="UserEvent" language="en_US"> | 
					
						
							|  |  |  | 		<synopsis> | 
					
						
							|  |  |  | 			Send an arbitrary event to the manager interface. | 
					
						
							|  |  |  | 		</synopsis> | 
					
						
							|  |  |  | 		<syntax> | 
					
						
							|  |  |  | 			<parameter name="eventname" required="true" /> | 
					
						
							|  |  |  | 			<parameter name="body" /> | 
					
						
							|  |  |  | 		</syntax> | 
					
						
							|  |  |  | 		<description> | 
					
						
							|  |  |  | 			<para>Sends an arbitrary event to the manager interface, with an optional | 
					
						
							|  |  |  | 			<replaceable>body</replaceable> representing additional arguments. The | 
					
						
							|  |  |  | 			<replaceable>body</replaceable> may be specified as | 
					
						
							| 
									
										
										
										
											2010-03-18 17:52:35 +00:00
										 |  |  | 			a <literal>,</literal> delimited list of headers. Each additional | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 			argument will be placed on a new line in the event. The format of the | 
					
						
							|  |  |  | 			event will be:</para> | 
					
						
							|  |  |  | 			<para>    Event: UserEvent</para> | 
					
						
							|  |  |  | 			<para>    UserEvent: <specified event name></para> | 
					
						
							|  |  |  | 			<para>    [body]</para> | 
					
						
							|  |  |  | 			<para>If no <replaceable>body</replaceable> is specified, only Event and UserEvent headers will be present.</para> | 
					
						
							|  |  |  | 		</description> | 
					
						
							|  |  |  | 	</application> | 
					
						
							|  |  |  |  ***/ | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | static char *app = "UserEvent"; | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-21 21:13:09 +00:00
										 |  |  | static int userevent_exec(struct ast_channel *chan, const char *data) | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-01-19 20:05:52 +00:00
										 |  |  | 	char *parse; | 
					
						
							|  |  |  | 	int x; | 
					
						
							| 
									
										
										
										
											2006-05-20 13:29:22 +00:00
										 |  |  | 	AST_DECLARE_APP_ARGS(args, | 
					
						
							|  |  |  | 		AST_APP_ARG(eventname); | 
					
						
							|  |  |  | 		AST_APP_ARG(extra)[100]; | 
					
						
							|  |  |  | 	); | 
					
						
							| 
									
										
										
										
											2009-01-19 20:05:52 +00:00
										 |  |  | 	struct ast_str *body = ast_str_create(16); | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-26 19:48:14 +00:00
										 |  |  | 	if (ast_strlen_zero(data)) { | 
					
						
							| 
									
										
										
										
											2007-07-31 01:10:47 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "UserEvent requires an argument (eventname,optional event body)\n"); | 
					
						
							| 
									
										
										
										
											2009-01-19 20:05:52 +00:00
										 |  |  | 		ast_free(body); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!body) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "Unable to allocate buffer\n"); | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-20 13:29:22 +00:00
										 |  |  | 	parse = ast_strdupa(data); | 
					
						
							| 
									
										
										
										
											2005-10-19 18:19:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-20 13:29:22 +00:00
										 |  |  | 	AST_STANDARD_APP_ARGS(args, parse); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (x = 0; x < args.argc - 1; x++) { | 
					
						
							| 
									
										
										
										
											2009-01-19 20:05:52 +00:00
										 |  |  | 		ast_str_append(&body, 0, "%s\r\n", args.extra[x]); | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-19 20:05:52 +00:00
										 |  |  | 	manager_event(EVENT_FLAG_USER, "UserEvent", "UserEvent: %s\r\n%s", args.eventname, ast_str_buffer(body)); | 
					
						
							|  |  |  | 	ast_free(body); | 
					
						
							| 
									
										
										
										
											2006-05-20 13:29:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | static int unload_module(void) | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-16 13:35:20 +00:00
										 |  |  | 	return ast_unregister_application(app); | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | static int load_module(void) | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-11-01 21:10:07 +00:00
										 |  |  | 	return ast_register_application_xml(app, userevent_exec); | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Custom User Event Application"); |