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
|
|
|
*
|
2005-01-21 07:06:25 +00:00
|
|
|
* Changes Copyright (c) 2004 - 2005 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* HasVoicemail application
|
2003-09-26 03:39:58 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-09-29 20:13:54 +00:00
|
|
|
#include <sys/types.h>
|
2005-06-06 22:39:32 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
|
|
|
|
#include "asterisk.h"
|
|
|
|
|
|
|
|
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
|
|
|
|
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"
|
2003-09-26 03:39:58 +00:00
|
|
|
|
2004-05-01 05:54:50 +00:00
|
|
|
static char *tdesc = "Indicator for whether a voice mailbox has messages in a given folder.";
|
|
|
|
static char *app_hasvoicemail = "HasVoicemail";
|
|
|
|
static char *hasvoicemail_synopsis = "Conditionally branches to priority + 101";
|
|
|
|
static char *hasvoicemail_descrip =
|
|
|
|
"HasVoicemail(vmbox[@context][:folder][|varname])\n"
|
|
|
|
" Branches to priority + 101, if there is voicemail in folder indicated."
|
|
|
|
" Optionally sets <varname> to the number of messages in that folder."
|
|
|
|
" Assumes folder of INBOX if not specified.\n";
|
|
|
|
|
2003-09-26 03:39:58 +00:00
|
|
|
static char *app_hasnewvoicemail = "HasNewVoicemail";
|
|
|
|
static char *hasnewvoicemail_synopsis = "Conditionally branches to priority + 101";
|
|
|
|
static char *hasnewvoicemail_descrip =
|
2004-10-03 21:23:54 +00:00
|
|
|
"HasNewVoicemail(vmbox[/folder][@context][|varname])\n"
|
|
|
|
" Branches to priority + 101, if there is voicemail in folder 'folder' or INBOX.\n"
|
|
|
|
"if folder is not specified. Optionally sets <varname> to the number of messages\n"
|
|
|
|
"in that folder.\n";
|
2003-09-26 03:39:58 +00:00
|
|
|
|
|
|
|
STANDARD_LOCAL_USER;
|
|
|
|
|
|
|
|
LOCAL_USER_DECL;
|
|
|
|
|
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
|
|
|
{
|
|
|
|
int res=0;
|
|
|
|
struct localuser *u;
|
2004-10-03 21:23:54 +00:00
|
|
|
char vmpath[256], *temps, *input, *varname = NULL, *vmbox, *context = "default";
|
|
|
|
char *vmfolder;
|
2003-09-26 03:39:58 +00:00
|
|
|
DIR *vmdir;
|
|
|
|
struct dirent *vment;
|
|
|
|
int vmcount = 0;
|
|
|
|
|
|
|
|
if (!data) {
|
2004-05-01 05:54:50 +00:00
|
|
|
ast_log(LOG_WARNING, "HasVoicemail requires an argument (vm-box[@context][:folder]|varname)\n");
|
2003-09-26 03:39:58 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
LOCAL_USER_ADD(u);
|
|
|
|
|
2003-09-29 20:13:54 +00:00
|
|
|
input = ast_strdupa((char *)data);
|
2003-09-26 03:39:58 +00:00
|
|
|
if (input) {
|
2004-10-03 05:38:27 +00:00
|
|
|
temps = input;
|
|
|
|
if ((temps = strsep(&input, "|"))) {
|
|
|
|
if (input && !ast_strlen_zero(input))
|
2004-05-01 05:54:50 +00:00
|
|
|
varname = input;
|
2004-10-03 05:38:27 +00:00
|
|
|
input = temps;
|
|
|
|
}
|
|
|
|
if ((temps = strsep(&input, ":"))) {
|
|
|
|
if (input && !ast_strlen_zero(input))
|
2004-05-01 05:54:50 +00:00
|
|
|
vmfolder = input;
|
2004-10-03 05:38:27 +00:00
|
|
|
input = temps;
|
2003-09-26 03:39:58 +00:00
|
|
|
}
|
2004-10-03 05:38:27 +00:00
|
|
|
if ((vmbox = strsep(&input, "@")))
|
|
|
|
if (input && !ast_strlen_zero(input))
|
|
|
|
context = input;
|
|
|
|
if (!vmbox)
|
|
|
|
vmbox = input;
|
2004-10-03 21:23:54 +00:00
|
|
|
vmfolder = strchr(vmbox, '/');
|
|
|
|
if (vmfolder) {
|
|
|
|
*vmfolder = '\0';
|
|
|
|
vmfolder++;
|
|
|
|
} else
|
|
|
|
vmfolder = "INBOX";
|
2004-05-01 05:54:50 +00:00
|
|
|
snprintf(vmpath,sizeof(vmpath), "%s/voicemail/%s/%s/%s", (char *)ast_config_AST_SPOOL_DIR, context, vmbox, vmfolder);
|
2003-09-26 03:39:58 +00:00
|
|
|
if (!(vmdir = opendir(vmpath))) {
|
|
|
|
ast_log(LOG_NOTICE, "Voice mailbox %s at %s does not exist\n", vmbox, vmpath);
|
|
|
|
} else {
|
|
|
|
|
|
|
|
/* No matter what the format of VM, there will always be a .txt file for each message. */
|
|
|
|
while ((vment = readdir(vmdir)))
|
|
|
|
if (!strncmp(vment->d_name + 7,".txt",4))
|
|
|
|
vmcount++;
|
|
|
|
closedir(vmdir);
|
|
|
|
}
|
|
|
|
/* Set the count in the channel variable */
|
|
|
|
if (varname) {
|
|
|
|
char tmp[12];
|
2004-07-14 07:22:30 +00:00
|
|
|
snprintf(tmp, sizeof(tmp), "%d", vmcount);
|
2003-09-26 03:39:58 +00:00
|
|
|
pbx_builtin_setvar_helper(chan, varname, tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vmcount > 0) {
|
|
|
|
/* Branch to the next extension */
|
2005-09-07 19:13:00 +00:00
|
|
|
if (!ast_goto_if_exists(chan, chan->context, chan->exten, chan->priority + 101))
|
2003-09-26 03:39:58 +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);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ast_log(LOG_ERROR, "Out of memory error\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
LOCAL_USER_REMOVE(u);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
int unload_module(void)
|
|
|
|
{
|
2004-05-01 05:54:50 +00:00
|
|
|
int res;
|
2003-09-26 03:39:58 +00:00
|
|
|
STANDARD_HANGUP_LOCALUSERS;
|
2004-05-01 05:54:50 +00:00
|
|
|
res = ast_unregister_application(app_hasvoicemail);
|
|
|
|
res |= ast_unregister_application(app_hasnewvoicemail);
|
|
|
|
return res;
|
2003-09-26 03:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int load_module(void)
|
|
|
|
{
|
2004-05-01 05:54:50 +00:00
|
|
|
int res;
|
|
|
|
res = ast_register_application(app_hasvoicemail, hasvoicemail_exec, hasvoicemail_synopsis, hasvoicemail_descrip);
|
|
|
|
res |= ast_register_application(app_hasnewvoicemail, hasvoicemail_exec, hasnewvoicemail_synopsis, hasnewvoicemail_descrip);
|
|
|
|
return res;
|
2003-09-26 03:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
char *description(void)
|
|
|
|
{
|
|
|
|
return tdesc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int usecount(void)
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
STANDARD_USECOUNT(res);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *key()
|
|
|
|
{
|
|
|
|
return ASTERISK_GPL_KEY;
|
|
|
|
}
|