Asterisk - The Open Source Telephony Project  18.5.0
func_vmcount.c
Go to the documentation of this file.
1 /*
2  * Asterisk -- An open source telephony toolkit.
3  *
4  * Copyright (c) 2006 Tilghman Lesher. All rights reserved.
5  *
6  * Tilghman Lesher <[email protected]>
7  *
8  * See http://www.asterisk.org for more information about
9  * the Asterisk project. Please do not directly contact
10  * any of the maintainers of this project for assistance;
11  * the project provides a web site, mailing lists and IRC
12  * channels for your use.
13  *
14  * This program is free software, distributed under the terms of
15  * the GNU General Public License Version 2. See the LICENSE file
16  * at the top of the source tree.
17  */
18 
19 /*! \file
20  *
21  * \brief VMCOUNT dialplan function
22  *
23  * \author Tilghman Lesher <[email protected]>
24  *
25  * \ingroup functions
26  */
27 
28 /*** MODULEINFO
29  <support_level>core</support_level>
30  ***/
31 
32 #include "asterisk.h"
33 
34 #include <dirent.h>
35 
36 #include "asterisk/file.h"
37 #include "asterisk/channel.h"
38 #include "asterisk/pbx.h"
39 #include "asterisk/module.h"
40 #include "asterisk/lock.h"
41 #include "asterisk/utils.h"
42 #include "asterisk/app.h"
43 
44 /*** DOCUMENTATION
45  <function name="VMCOUNT" language="en_US">
46  <synopsis>
47  Count the voicemails in a specified mailbox.
48  </synopsis>
49  <syntax>
50  <parameter name="vmbox" required="true" />
51  <parameter name="folder" required="false">
52  <para>If not specified, defaults to <literal>INBOX</literal></para>
53  </parameter>
54  </syntax>
55  <description>
56  <para>Count the number of voicemails in a specified mailbox, you could also specify
57  the mailbox <replaceable>folder</replaceable>.</para>
58  <para>Example: <literal>exten => s,1,Set(foo=${VMCOUNT(125@default)})</literal></para>
59  </description>
60  </function>
61  ***/
62 
63 static int acf_vmcount_exec(struct ast_channel *chan, const char *cmd, char *argsstr, char *buf, size_t len)
64 {
66  AST_APP_ARG(vmbox);
67  AST_APP_ARG(folder);
68  );
69 
70  buf[0] = '\0';
71 
72  if (ast_strlen_zero(argsstr))
73  return -1;
74 
75  AST_STANDARD_APP_ARGS(args, argsstr);
76 
77  if (ast_strlen_zero(args.vmbox)) {
78  return -1;
79  }
80 
81  if (ast_strlen_zero(args.folder)) {
82  args.folder = "INBOX";
83  }
84 
85  snprintf(buf, len, "%d", ast_app_messagecount(args.vmbox, args.folder));
86 
87  return 0;
88 }
89 
91  .name = "VMCOUNT",
92  .read = acf_vmcount_exec,
93  .read_max = 12,
94 };
95 
96 static int unload_module(void)
97 {
98  return ast_custom_function_unregister(&acf_vmcount);
99 }
100 
101 static int load_module(void)
102 {
103  return ast_custom_function_register(&acf_vmcount);
104 }
105 
106 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Indicator for whether a voice mailbox has messages in a given folder.");
const char * name
Definition: pbx.h:119
Main Channel structure associated with a channel.
#define AST_MODULE_INFO_STANDARD(keystr, desc)
Definition: module.h:567
Asterisk locking-related definitions:
Asterisk main include file. File version handling, generic pbx functions.
static int load_module(void)
Definition: func_vmcount.c:101
char buf[BUFSIZE]
Definition: eagi_proxy.c:66
#define AST_STANDARD_APP_ARGS(args, parse)
Performs the &#39;standard&#39; argument separation process for an application.
Generic File Format Support. Should be included by clients of the file handling routines. File service providers should instead include mod_format.h.
const char * args
int ast_custom_function_unregister(struct ast_custom_function *acf)
Unregister a custom function.
Utility functions.
#define ast_strlen_zero(foo)
Definition: strings.h:52
static int acf_vmcount_exec(struct ast_channel *chan, const char *cmd, char *argsstr, char *buf, size_t len)
Definition: func_vmcount.c:63
General Asterisk PBX channel definitions.
Data structure associated with a custom dialplan function.
Definition: pbx.h:118
Core PBX routines and definitions.
static int len(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t buflen)
static int unload_module(void)
Definition: func_vmcount.c:96
int ast_app_messagecount(const char *mailbox_id, const char *folder)
Get the number of messages in a given mailbox folder.
Definition: main/app.c:718
#define ASTERISK_GPL_KEY
The text the key() function should return.
Definition: module.h:46
Asterisk module definitions.
#define AST_DECLARE_APP_ARGS(name, arglist)
Declare a structure to hold an application&#39;s arguments.
Application convenience functions, designed to give consistent look and feel to Asterisk apps...
#define ast_custom_function_register(acf)
Register a custom function.
Definition: pbx.h:1508
static struct ast_custom_function acf_vmcount
Definition: func_vmcount.c:90
#define AST_APP_ARG(name)
Define an application argument.