| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | static char *app = "UserEvent"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static char *synopsis = "Send an arbitrary event to the manager interface"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static char *descrip =  | 
					
						
							| 
									
										
										
										
											2007-07-31 01:10:47 +00:00
										 |  |  | "  UserEvent(eventname[,body]): Sends an arbitrary event to the manager\n" | 
					
						
							| 
									
										
										
										
											2006-05-20 13:29:22 +00:00
										 |  |  | "interface, with an optional body representing additional arguments.  The\n" | 
					
						
							|  |  |  | "body may be specified as a | delimeted list of headers. Each additional\n" | 
					
						
							|  |  |  | "argument will be placed on a new line in the event. The format of the\n" | 
					
						
							|  |  |  | "event will be:\n" | 
					
						
							|  |  |  | "    Event: UserEvent\n" | 
					
						
							|  |  |  | "    UserEvent: <specified event name>\n" | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  | "    [body]\n" | 
					
						
							| 
									
										
										
										
											2006-05-20 13:29:22 +00:00
										 |  |  | "If no body is specified, only Event and UserEvent headers will be present.\n"; | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int userevent_exec(struct ast_channel *chan, void *data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-05-20 13:29:22 +00:00
										 |  |  | 	char *parse, buf[2048] = ""; | 
					
						
							|  |  |  | 	int x, buflen = 0; | 
					
						
							|  |  |  | 	AST_DECLARE_APP_ARGS(args, | 
					
						
							|  |  |  | 		AST_APP_ARG(eventname); | 
					
						
							|  |  |  | 		AST_APP_ARG(extra)[100]; | 
					
						
							|  |  |  | 	); | 
					
						
							| 
									
										
										
										
											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"); | 
					
						
							| 
									
										
										
										
											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++) { | 
					
						
							|  |  |  | 		ast_copy_string(buf + buflen, args.extra[x], sizeof(buf) - buflen - 2); | 
					
						
							|  |  |  | 		buflen += strlen(args.extra[x]); | 
					
						
							|  |  |  | 		ast_copy_string(buf + buflen, "\r\n", 3); | 
					
						
							|  |  |  | 		buflen += 2; | 
					
						
							| 
									
										
										
										
											2004-06-21 23:00:00 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-31 18:18:58 +00:00
										 |  |  | 	manager_event(EVENT_FLAG_USER, "UserEvent", "UserEvent: %s\r\n%s", args.eventname, buf); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | { | 
					
						
							|  |  |  | 	return ast_register_application(app, userevent_exec, synopsis, descrip); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Custom User Event Application"); |