| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-09-15 15:44:26 +00:00
										 |  |  |  * Asterisk -- An open source telephony toolkit. | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-02-12 04:28:58 +00:00
										 |  |  |  * Changes Copyright (c) 2004 - 2006 Todd Freeman <freeman@andrews.edu> | 
					
						
							| 
									
										
										
										
											2004-05-01 05:54:50 +00:00
										 |  |  |  *  | 
					
						
							|  |  |  |  * 95% based on HasNewVoicemail by: | 
					
						
							|  |  |  |  *  | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  |  * Copyright (c) 2003 Tilghman Lesher.  All rights reserved. | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * Tilghman Lesher <asterisk-hasnewvoicemail-app@the-tilghman.com> | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-09-15 15:44:26 +00:00
										 |  |  |  * 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. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software, distributed under the terms of | 
					
						
							|  |  |  |  * 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 HasVoicemail application | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-12-30 21:18:06 +00:00
										 |  |  |  * \author Todd Freeman <freeman@andrews.edu> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * \note 95% based on HasNewVoicemail by | 
					
						
							|  |  |  |  * Tilghman Lesher <asterisk-hasnewvoicemail-app@the-tilghman.com> | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-11-06 15:09:47 +00:00
										 |  |  |  * \ingroup applications | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-07 18:54:56 +00:00
										 |  |  | #include "asterisk.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ASTERISK_FILE_VERSION(__FILE__, "$Revision$") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-06-06 22:39:32 +00:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							| 
									
										
										
										
											2005-11-08 04:48:00 +00:00
										 |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2005-06-06 22:39:32 +00:00
										 |  |  | #include <string.h>
 | 
					
						
							| 
									
										
										
										
											2005-11-08 04:48:00 +00:00
										 |  |  | #include <unistd.h>
 | 
					
						
							| 
									
										
										
										
											2005-06-06 22:39:32 +00:00
										 |  |  | #include <dirent.h>
 | 
					
						
							| 
									
										
										
										
											2005-11-08 04:48:00 +00:00
										 |  |  | #include <sys/types.h>
 | 
					
						
							| 
									
										
										
										
											2005-06-06 22:39:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-21 06:02:45 +00:00
										 |  |  | #include "asterisk/file.h"
 | 
					
						
							|  |  |  | #include "asterisk/logger.h"
 | 
					
						
							|  |  |  | #include "asterisk/channel.h"
 | 
					
						
							|  |  |  | #include "asterisk/pbx.h"
 | 
					
						
							|  |  |  | #include "asterisk/module.h"
 | 
					
						
							|  |  |  | #include "asterisk/lock.h"
 | 
					
						
							|  |  |  | #include "asterisk/utils.h"
 | 
					
						
							| 
									
										
										
										
											2005-11-06 19:36:27 +00:00
										 |  |  | #include "asterisk/app.h"
 | 
					
						
							|  |  |  | #include "asterisk/options.h"
 | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-01 05:54:50 +00:00
										 |  |  | static char *app_hasvoicemail = "HasVoicemail"; | 
					
						
							| 
									
										
										
										
											2005-11-06 19:36:27 +00:00
										 |  |  | static char *hasvoicemail_synopsis = "Conditionally branches to priority + 101 with the right options set"; | 
					
						
							| 
									
										
										
										
											2004-05-01 05:54:50 +00:00
										 |  |  | static char *hasvoicemail_descrip = | 
					
						
							| 
									
										
										
										
											2005-11-06 19:36:27 +00:00
										 |  |  | "HasVoicemail(vmbox[/folder][@context][|varname[|options]])\n" | 
					
						
							| 
									
										
										
										
											2004-05-01 05:54:50 +00:00
										 |  |  | "  Optionally sets <varname> to the number of messages in that folder." | 
					
						
							| 
									
										
										
										
											2005-11-06 19:36:27 +00:00
										 |  |  | "  Assumes folder of INBOX if not specified.\n" | 
					
						
							|  |  |  | "  The option string may contain zero or the following character:\n" | 
					
						
							|  |  |  | "	'j' -- jump to priority n+101, if there is voicemail in the folder indicated.\n" | 
					
						
							|  |  |  | "  This application sets the following channel variable upon completion:\n" | 
					
						
							|  |  |  | "	HASVMSTATUS		The result of the voicemail check returned as a text string as follows\n" | 
					
						
							| 
									
										
										
										
											2007-03-15 23:11:33 +00:00
										 |  |  | "		<# of messages in the folder, 0 for NONE>\n" | 
					
						
							|  |  |  | "\nThis application has been deprecated in favor of the VMCOUNT() function\n"; | 
					
						
							| 
									
										
										
										
											2004-05-01 05:54:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | static char *app_hasnewvoicemail = "HasNewVoicemail"; | 
					
						
							| 
									
										
										
										
											2005-11-06 19:36:27 +00:00
										 |  |  | static char *hasnewvoicemail_synopsis = "Conditionally branches to priority + 101 with the right options set"; | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | static char *hasnewvoicemail_descrip = | 
					
						
							| 
									
										
										
										
											2005-11-06 19:36:27 +00:00
										 |  |  | "HasNewVoicemail(vmbox[/folder][@context][|varname[|options]])\n" | 
					
						
							|  |  |  | "Assumes folder 'INBOX' if folder is not specified. Optionally sets <varname> to the number of messages\n"  | 
					
						
							|  |  |  | "in that folder.\n" | 
					
						
							|  |  |  | "  The option string may contain zero of the following character:\n" | 
					
						
							| 
									
										
										
										
											2005-11-20 05:22:26 +00:00
										 |  |  | "	'j' -- jump to priority n+101, if there is new voicemail in folder 'folder' or INBOX\n" | 
					
						
							| 
									
										
										
										
											2005-11-06 19:36:27 +00:00
										 |  |  | "  This application sets the following channel variable upon completion:\n" | 
					
						
							|  |  |  | "	HASVMSTATUS		The result of the new voicemail check returned as a text string as follows\n" | 
					
						
							| 
									
										
										
										
											2007-03-15 23:11:33 +00:00
										 |  |  | "		<# of messages in the folder, 0 for NONE>\n" | 
					
						
							|  |  |  | "\nThis application has been deprecated in favor of the VMCOUNT() function\n"; | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-01 05:54:50 +00:00
										 |  |  | static int hasvoicemail_exec(struct ast_channel *chan, void *data) | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | 	struct ast_module_user *u; | 
					
						
							| 
									
										
										
										
											2005-11-06 19:36:27 +00:00
										 |  |  | 	char *input, *varname = NULL, *vmbox, *context = "default"; | 
					
						
							| 
									
										
										
										
											2004-10-03 21:23:54 +00:00
										 |  |  | 	char *vmfolder; | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | 	int vmcount = 0; | 
					
						
							| 
									
										
										
										
											2005-10-05 01:37:48 +00:00
										 |  |  | 	static int dep_warning = 0; | 
					
						
							| 
									
										
										
										
											2005-11-06 19:36:27 +00:00
										 |  |  | 	int priority_jump = 0; | 
					
						
							|  |  |  | 	char tmp[12]; | 
					
						
							|  |  |  | 	AST_DECLARE_APP_ARGS(args, | 
					
						
							|  |  |  | 		AST_APP_ARG(vmbox); | 
					
						
							|  |  |  | 		AST_APP_ARG(varname); | 
					
						
							|  |  |  | 		AST_APP_ARG(options); | 
					
						
							|  |  |  | 	); | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-19 18:19:02 +00:00
										 |  |  | 	if (!dep_warning) { | 
					
						
							|  |  |  | 		ast_log(LOG_WARNING, "The applications HasVoicemail and HasNewVoicemail have been deprecated.  Please use the VMCOUNT() function instead.\n"); | 
					
						
							|  |  |  | 		dep_warning = 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | 	if (!data) { | 
					
						
							| 
									
										
										
										
											2005-11-06 19:36:27 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "HasVoicemail requires an argument (vm-box[/folder][@context][|varname[|options]])\n"); | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-10-05 01:37:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | 	u = ast_module_user_add(chan); | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-10 13:22:15 +00:00
										 |  |  | 	input = ast_strdupa(data); | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-06 19:36:27 +00:00
										 |  |  | 	AST_STANDARD_APP_ARGS(args, input); | 
					
						
							| 
									
										
										
										
											2005-10-05 01:37:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-18 18:28:52 +00:00
										 |  |  | 	vmbox = strsep(&args.vmbox, "@"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!ast_strlen_zero(args.vmbox)) | 
					
						
							|  |  |  | 		context = args.vmbox; | 
					
						
							| 
									
										
										
										
											2005-10-05 01:37:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	vmfolder = strchr(vmbox, '/'); | 
					
						
							|  |  |  | 	if (vmfolder) { | 
					
						
							|  |  |  | 		*vmfolder = '\0'; | 
					
						
							|  |  |  | 		vmfolder++; | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2005-10-05 01:37:48 +00:00
										 |  |  | 		vmfolder = "INBOX"; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-06 19:36:27 +00:00
										 |  |  | 	if (args.options) { | 
					
						
							|  |  |  | 		if (strchr(args.options, 'j')) | 
					
						
							|  |  |  | 			priority_jump = 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-19 18:21:31 +00:00
										 |  |  | 	vmcount = ast_app_messagecount(context, vmbox, vmfolder); | 
					
						
							| 
									
										
										
										
											2005-10-05 01:37:48 +00:00
										 |  |  | 	/* Set the count in the channel variable */ | 
					
						
							|  |  |  | 	if (varname) { | 
					
						
							|  |  |  | 		snprintf(tmp, sizeof(tmp), "%d", vmcount); | 
					
						
							|  |  |  | 		pbx_builtin_setvar_helper(chan, varname, tmp); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (vmcount > 0) { | 
					
						
							|  |  |  | 		/* Branch to the next extension */ | 
					
						
							| 
									
										
										
										
											2005-12-04 20:40:46 +00:00
										 |  |  | 		if (priority_jump || ast_opt_priority_jumping) { | 
					
						
							| 
									
										
										
										
											2005-11-20 05:22:26 +00:00
										 |  |  | 			if (ast_goto_if_exists(chan, chan->context, chan->exten, chan->priority + 101))  | 
					
						
							| 
									
										
										
										
											2005-11-06 19:36:27 +00:00
										 |  |  | 				ast_log(LOG_WARNING, "VM box %s@%s has new voicemail, but extension %s, priority %d doesn't exist\n", vmbox, context, chan->exten, chan->priority + 101); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-06 19:36:27 +00:00
										 |  |  | 	snprintf(tmp, sizeof(tmp), "%d", vmcount); | 
					
						
							|  |  |  | 	pbx_builtin_setvar_helper(chan, "HASVMSTATUS", tmp); | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | 	ast_module_user_remove(u); | 
					
						
							| 
									
										
										
										
											2005-11-06 19:36:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-05 01:37:48 +00:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-13 20:55:13 +00:00
										 |  |  | static int acf_vmcount_exec(struct ast_channel *chan, char *cmd, char *argsstr, char *buf, size_t len) | 
					
						
							| 
									
										
										
										
											2005-10-05 01:37:48 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | 	struct ast_module_user *u; | 
					
						
							| 
									
										
										
										
											2006-02-12 04:28:58 +00:00
										 |  |  | 	char *context; | 
					
						
							| 
									
										
										
										
											2005-11-30 19:20:28 +00:00
										 |  |  | 	AST_DECLARE_APP_ARGS(args, | 
					
						
							|  |  |  | 		AST_APP_ARG(vmbox); | 
					
						
							|  |  |  | 		AST_APP_ARG(folder); | 
					
						
							|  |  |  | 	); | 
					
						
							| 
									
										
										
										
											2005-10-05 01:37:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | 	u = ast_module_user_add(chan); | 
					
						
							| 
									
										
										
										
											2005-10-05 01:37:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-19 18:19:02 +00:00
										 |  |  | 	buf[0] = '\0'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-30 19:20:28 +00:00
										 |  |  | 	AST_STANDARD_APP_ARGS(args, argsstr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (strchr(args.vmbox, '@')) { | 
					
						
							|  |  |  | 		context = args.vmbox; | 
					
						
							|  |  |  | 		args.vmbox = strsep(&context, "@"); | 
					
						
							| 
									
										
										
										
											2005-10-05 01:37:48 +00:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		context = "default"; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-30 19:20:28 +00:00
										 |  |  | 	if (ast_strlen_zero(args.folder)) { | 
					
						
							|  |  |  | 		args.folder = "INBOX"; | 
					
						
							| 
									
										
										
										
											2005-10-05 01:37:48 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-19 18:21:31 +00:00
										 |  |  | 	snprintf(buf, len, "%d", ast_app_messagecount(context, args.vmbox, args.folder)); | 
					
						
							| 
									
										
										
										
											2005-10-19 18:19:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | 	ast_module_user_remove(u); | 
					
						
							| 
									
										
										
										
											2005-10-19 18:19:02 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2006-02-12 04:28:58 +00:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-10-05 01:37:48 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct ast_custom_function acf_vmcount = { | 
					
						
							|  |  |  | 	.name = "VMCOUNT", | 
					
						
							|  |  |  | 	.synopsis = "Counts the voicemail in a specified mailbox", | 
					
						
							|  |  |  | 	.syntax = "VMCOUNT(vmbox[@context][|folder])", | 
					
						
							|  |  |  | 	.desc = | 
					
						
							| 
									
										
										
										
											2005-10-18 22:52:21 +00:00
										 |  |  | 	"  context - defaults to \"default\"\n" | 
					
						
							|  |  |  | 	"  folder  - defaults to \"INBOX\"\n", | 
					
						
							| 
									
										
										
										
											2005-10-05 01:37:48 +00:00
										 |  |  | 	.read = acf_vmcount_exec, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | static int unload_module(void) | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2004-05-01 05:54:50 +00:00
										 |  |  | 	int res; | 
					
						
							| 
									
										
										
										
											2005-10-18 22:52:21 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2005-10-05 01:37:48 +00:00
										 |  |  | 	res = ast_custom_function_unregister(&acf_vmcount); | 
					
						
							|  |  |  | 	res |= ast_unregister_application(app_hasvoicemail); | 
					
						
							| 
									
										
										
										
											2004-05-01 05:54:50 +00:00
										 |  |  | 	res |= ast_unregister_application(app_hasnewvoicemail); | 
					
						
							| 
									
										
										
										
											2005-10-18 22:52:21 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | 	ast_module_user_hangup_all(); | 
					
						
							| 
									
										
										
										
											2005-10-18 22:52:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-01 05:54:50 +00:00
										 |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | static int load_module(void) | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2004-05-01 05:54:50 +00:00
										 |  |  | 	int res; | 
					
						
							| 
									
										
										
										
											2005-10-18 22:52:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-05 01:37:48 +00:00
										 |  |  | 	res = ast_custom_function_register(&acf_vmcount); | 
					
						
							|  |  |  | 	res |= ast_register_application(app_hasvoicemail, hasvoicemail_exec, hasvoicemail_synopsis, hasvoicemail_descrip); | 
					
						
							| 
									
										
										
										
											2004-05-01 05:54:50 +00:00
										 |  |  | 	res |= ast_register_application(app_hasnewvoicemail, hasvoicemail_exec, hasnewvoicemail_synopsis, hasnewvoicemail_descrip); | 
					
						
							| 
									
										
										
										
											2005-10-18 22:52:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-01 05:54:50 +00:00
										 |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											2003-09-26 03:39:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 02:11:39 +00:00
										 |  |  | AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Indicator for whether a voice mailbox has messages in a given folder."); |