2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 2011, Digium, Inc.
6 * David Vossel <dvossel@digium.com>
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.
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.
21 * \brief Custom presence provider
26 <support_level>core</support_level>
31 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
33 #include "asterisk/module.h"
34 #include "asterisk/channel.h"
35 #include "asterisk/pbx.h"
36 #include "asterisk/utils.h"
37 #include "asterisk/linkedlists.h"
38 #include "asterisk/presencestate.h"
39 #include "asterisk/cli.h"
40 #include "asterisk/astdb.h"
41 #include "asterisk/app.h"
43 #include "asterisk/test.h"
44 #include "asterisk/event.h"
45 #include <semaphore.h>
49 <function name="PRESENCE_STATE" language="en_US">
51 Get or Set a presence state.
54 <parameter name="provider" required="true">
55 <para>The provider of the presence, such as <literal>CustomPresence</literal></para>
57 <parameter name="field" required="true">
58 <para>Which field of the presence state information is wanted.</para>
61 <para>The current presence, such as <literal>away</literal></para>
63 <option name="subtype">
64 <para>Further information about the current presence</para>
66 <option name="message">
67 <para>A custom message that may indicate further details about the presence</para>
71 <parameter name="options" required="false">
74 <para>Base-64 encode the data.</para>
80 <para>The PRESENCE_STATE function can be used to retrieve the presence from any
81 presence provider. For example:</para>
82 <para>NoOp(SIP/mypeer has presence ${PRESENCE_STATE(SIP/mypeer,value)})</para>
83 <para>NoOp(Conference number 1234 has presence message ${PRESENCE_STATE(MeetMe:1234,message)})</para>
84 <para>The PRESENCE_STATE function can also be used to set custom presence state from
85 the dialplan. The <literal>CustomPresence:</literal> prefix must be used. For example:</para>
86 <para>Set(PRESENCE_STATE(CustomPresence:lamp1)=away,temporary,Out to lunch)</para>
87 <para>Set(PRESENCE_STATE(CustomPresence:lamp2)=dnd,,Trying to get work done)</para>
88 <para>You can subscribe to the status of a custom presence state using a hint in
90 <para>exten => 1234,hint,CustomPresence:lamp1</para>
91 <para>The possible values for both uses of this function are:</para>
92 <para>not_set | unavailable | available | away | xa | chat | dnd</para>
98 static const char astdb_family[] = "CustomPresence";
100 static int presence_read(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t len)
103 char *message = NULL;
104 char *subtype = NULL;
106 int base64encode = 0;
107 AST_DECLARE_APP_ARGS(args,
108 AST_APP_ARG(provider);
110 AST_APP_ARG(options);
113 if (ast_strlen_zero(data)) {
114 ast_log(LOG_WARNING, "PRESENCE_STATE reading requires an argument \n");
118 parse = ast_strdupa(data);
120 AST_STANDARD_APP_ARGS(args, parse);
122 if (ast_strlen_zero(args.provider) || ast_strlen_zero(args.field)) {
123 ast_log(LOG_WARNING, "PRESENCE_STATE reading requires both presence provider and presence field arguments. \n");
127 state = ast_presence_state_nocache(args.provider, &subtype, &message);
128 if (state == AST_PRESENCE_INVALID) {
129 ast_log(LOG_WARNING, "PRESENCE_STATE unknown \n");
133 if (!(ast_strlen_zero(args.options)) && (strchr(args.options, 'e'))) {
137 if (!ast_strlen_zero(subtype) && !strcasecmp(args.field, "subtype")) {
139 ast_base64encode(buf, (unsigned char *) subtype, strlen(subtype), len);
141 ast_copy_string(buf, subtype, len);
143 } else if (!ast_strlen_zero(message) && !strcasecmp(args.field, "message")) {
145 ast_base64encode(buf, (unsigned char *) message, strlen(message), len);
147 ast_copy_string(buf, message, len);
150 } else if (!strcasecmp(args.field, "value")) {
151 ast_copy_string(buf, ast_presence_state2str(state), len);
160 static int parse_data(char *data, enum ast_presence_state *state, char **subtype, char **message, char **options)
164 /* data syntax is state,subtype,message,options */
169 state_str = strsep(&data, ",");
170 if (ast_strlen_zero(state_str)) {
171 return -1; /* state is required */
174 *state = ast_presence_state_val(state_str);
176 /* not a valid state */
177 if (*state == AST_PRESENCE_INVALID) {
178 ast_log(LOG_WARNING, "Unknown presence state value %s\n", state_str);
182 if (!(*subtype = strsep(&data,","))) {
187 if (!(*message = strsep(&data, ","))) {
192 if (!(*options = strsep(&data, ","))) {
197 if (!ast_strlen_zero(*options) && !(strchr(*options, 'e'))) {
198 ast_log(LOG_NOTICE, "Invalid options '%s'\n", *options);
205 static int presence_write(struct ast_channel *chan, const char *cmd, char *data, const char *value)
207 size_t len = strlen("CustomPresence:");
209 char *args = ast_strdupa(value);
210 enum ast_presence_state state;
211 char *options, *message, *subtype;
213 if (strncasecmp(data, "CustomPresence:", len)) {
214 ast_log(LOG_WARNING, "The PRESENCE_STATE function can only set CustomPresence: presence providers.\n");
218 if (ast_strlen_zero(data)) {
219 ast_log(LOG_WARNING, "PRESENCE_STATE function called with no custom device name!\n");
223 if (parse_data(args, &state, &subtype, &message, &options)) {
224 ast_log(LOG_WARNING, "Invalid arguments to PRESENCE_STATE\n");
228 ast_db_put(astdb_family, data, value);
230 ast_presence_state_changed_literal(state, subtype, message, tmp);
235 static enum ast_presence_state custom_presence_callback(const char *data, char **subtype, char **message)
238 enum ast_presence_state state;
243 ast_db_get(astdb_family, data, buf, sizeof(buf));
245 if (parse_data(buf, &state, &_subtype, &_message, &_options)) {
246 return AST_PRESENCE_INVALID;
249 if ((strchr(_options, 'e'))) {
251 if (ast_strlen_zero(_subtype)) {
254 memset(tmp, 0, sizeof(tmp));
255 ast_base64decode((unsigned char *) tmp, _subtype, sizeof(tmp) - 1);
256 *subtype = ast_strdup(tmp);
259 if (ast_strlen_zero(_message)) {
262 memset(tmp, 0, sizeof(tmp));
263 ast_base64decode((unsigned char *) tmp, _message, sizeof(tmp) - 1);
264 *message = ast_strdup(tmp);
267 *subtype = ast_strlen_zero(_subtype) ? NULL : ast_strdup(_subtype);
268 *message = ast_strlen_zero(_message) ? NULL : ast_strdup(_message);
273 static struct ast_custom_function presence_function = {
274 .name = "PRESENCE_STATE",
275 .read = presence_read,
276 .write = presence_write,
279 static char *handle_cli_presencestate_list(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
281 struct ast_db_entry *db_entry, *db_tree;
285 e->command = "presencestate list";
287 "Usage: presencestate list\n"
288 " List all custom presence states that have been set by using\n"
289 " the PRESENCE_STATE dialplan function.\n";
295 if (a->argc != e->args) {
296 return CLI_SHOWUSAGE;
300 "---------------------------------------------------------------------\n"
301 "--- Custom Presence States ------------------------------------------\n"
302 "---------------------------------------------------------------------\n"
305 db_entry = db_tree = ast_db_gettree(astdb_family, NULL);
307 ast_cli(a->fd, "No custom presence states defined\n");
310 for (; db_entry; db_entry = db_entry->next) {
311 const char *object_name = strrchr(db_entry->key, '/') + 1;
312 char state_info[1301];
313 enum ast_presence_state state;
318 ast_copy_string(state_info, db_entry->data, sizeof(state_info));
319 if (parse_data(state_info, &state, &subtype, &message, &options)) {
320 ast_log(LOG_WARNING, "Invalid CustomPresence entry %s encountered\n", db_entry->data);
324 if (object_name <= (const char *) 1) {
327 ast_cli(a->fd, "--- Name: 'CustomPresence:%s'\n"
329 " --- Subtype: '%s'\n"
330 " --- Message: '%s'\n"
331 " --- Base64 Encoded: '%s'\n"
334 ast_presence_state2str(state),
337 AST_CLI_YESNO(strchr(options, 'e')));
339 ast_db_freetree(db_tree);
343 "---------------------------------------------------------------------\n"
344 "---------------------------------------------------------------------\n"
350 static char *handle_cli_presencestate_change(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
353 const char *dev, *state, *full_dev;
354 enum ast_presence_state state_val;
362 e->command = "presencestate change";
364 "Usage: presencestate change <entity> <state>[,<subtype>[,message[,options]]]\n"
365 " Change a custom presence to a new state.\n"
366 " The possible values for the state are:\n"
367 "NOT_SET | UNAVAILABLE | AVAILABLE | AWAY | XA | CHAT | DND\n"
368 "Optionally, a custom subtype and message may be provided, along with any options\n"
369 "accepted by func_presencestate. If the subtype or message provided contain spaces,\n"
370 "be sure to enclose the data in quotation marks (\"\")\n"
373 " presencestate change CustomPresence:mystate1 AWAY\n"
374 " presencestate change CustomPresence:mystate1 AVAILABLE\n"
375 " presencestate change CustomPresence:mystate1 \"Away,upstairs,eating lunch\"\n"
380 static const char * const cmds[] = { "NOT_SET", "UNAVAILABLE", "AVAILABLE", "AWAY",
381 "XA", "CHAT", "DND", NULL };
383 if (a->pos == e->args + 1) {
384 return ast_cli_complete(a->word, cmds, a->n);
391 if (a->argc != e->args + 2) {
392 return CLI_SHOWUSAGE;
395 len = strlen("CustomPresence:");
396 full_dev = dev = a->argv[e->args];
397 state = a->argv[e->args + 1];
399 if (strncasecmp(dev, "CustomPresence:", len)) {
400 ast_cli(a->fd, "The presencestate command can only be used to set 'CustomPresence:' presence state!\n");
405 if (ast_strlen_zero(dev)) {
406 return CLI_SHOWUSAGE;
409 args = ast_strdupa(state);
410 if (parse_data(args, &state_val, &subtype, &message, &options)) {
411 return CLI_SHOWUSAGE;
414 if (state_val == AST_PRESENCE_NOT_SET) {
415 return CLI_SHOWUSAGE;
418 ast_cli(a->fd, "Changing %s to %s\n", dev, args);
420 ast_db_put(astdb_family, dev, state);
422 ast_presence_state_changed_literal(state_val, subtype, message, full_dev);
427 static struct ast_cli_entry cli_funcpresencestate[] = {
428 AST_CLI_DEFINE(handle_cli_presencestate_list, "List currently know custom presence states"),
429 AST_CLI_DEFINE(handle_cli_presencestate_change, "Change a custom presence state"),
432 #ifdef TEST_FRAMEWORK
444 AST_TEST_DEFINE(test_valid_parse_data)
447 enum ast_presence_state state;
451 enum ast_test_result_state res = AST_TEST_PASS;
453 struct test_string tests [] = {
462 { AST_PRESENCE_NOT_SET,
469 { AST_PRESENCE_UNAVAILABLE,
476 { AST_PRESENCE_AVAILABLE,
503 { "away,down the hall",
510 { "away,down the hall,Quarterly financial meeting",
513 "Quarterly financial meeting",
517 { "away,,Quarterly financial meeting",
520 "Quarterly financial meeting",
531 { "away,down the hall,,e",
538 { "away,down the hall,Quarterly financial meeting,e",
541 "Quarterly financial meeting",
545 { "away,,Quarterly financial meeting,e",
548 "Quarterly financial meeting",
556 info->name = "parse_valid_presence_data";
557 info->category = "/funcs/func_presence/";
558 info->summary = "PRESENCESTATE parsing test";
560 "Ensure that parsing function accepts proper values, and gives proper outputs";
561 return AST_TEST_NOT_RUN;
566 for (i = 0; i < ARRAY_LEN(tests); ++i) {
568 char *parse_string = ast_strdup(tests[i].parse_string);
573 parse_result = parse_data(parse_string, &state, &subtype, &message, &options);
574 if (parse_result == -1) {
576 ast_free(parse_string);
579 if (tests[i].outputs.value != state ||
580 strcmp(tests[i].outputs.subtype, subtype) ||
581 strcmp(tests[i].outputs.message, message) ||
582 strcmp(tests[i].outputs.options, options)) {
584 ast_free(parse_string);
587 ast_free(parse_string);
593 AST_TEST_DEFINE(test_invalid_parse_data)
596 enum ast_presence_state state;
600 enum ast_test_result_state res = AST_TEST_PASS;
606 /* XXX The following actually is parsed correctly. Should that
614 info->name = "parse_invalid_presence_data";
615 info->category = "/funcs/func_presence/";
616 info->summary = "PRESENCESTATE parsing test";
618 "Ensure that parsing function rejects improper values";
619 return AST_TEST_NOT_RUN;
624 for (i = 0; i < ARRAY_LEN(tests); ++i) {
626 char *parse_string = ast_strdup(tests[i]);
631 parse_result = parse_data(parse_string, &state, &subtype, &message, &options);
632 if (parse_result == 0) {
633 ast_log(LOG_WARNING, "Invalid string parsing failed on %s\n", tests[i]);
635 ast_free(parse_string);
638 ast_free(parse_string);
644 struct test_cb_data {
645 enum ast_presence_state presence;
646 const char *provider;
649 /* That's right. I'm using a semaphore */
653 static void test_cb(const struct ast_event *event, void *userdata)
655 struct test_cb_data *cb_data = userdata;
656 cb_data->presence = ast_event_get_ie_uint(event, AST_EVENT_IE_PRESENCE_STATE);
657 cb_data->provider = ast_strdup(ast_event_get_ie_str(event, AST_EVENT_IE_PRESENCE_PROVIDER));
658 cb_data->subtype = ast_strdup(ast_event_get_ie_str(event, AST_EVENT_IE_PRESENCE_SUBTYPE));
659 cb_data->message = ast_strdup(ast_event_get_ie_str(event, AST_EVENT_IE_PRESENCE_MESSAGE));
660 sem_post(&cb_data->sem);
663 /* XXX This test could probably stand to be moved since
664 * it does not test func_presencestate but rather code in
665 * presencestate.h and presencestate.c. However, the convenience
666 * of presence_write() makes this a nice location for this test.
668 AST_TEST_DEFINE(test_presence_state_change)
670 struct ast_event_sub *test_sub;
671 struct test_cb_data *cb_data;
675 info->name = "test_presence_state_change";
676 info->category = "/funcs/func_presence/";
677 info->summary = "presence state change subscription";
679 "Ensure that presence state changes are communicated to subscribers";
680 return AST_TEST_NOT_RUN;
685 cb_data = ast_calloc(1, sizeof(*cb_data));
687 return AST_TEST_FAIL;
690 if (!(test_sub = ast_event_subscribe(AST_EVENT_PRESENCE_STATE,
691 test_cb, "Test presence state callbacks", cb_data, AST_EVENT_IE_END))) {
692 return AST_TEST_FAIL;
695 if (sem_init(&cb_data->sem, 0, 0)) {
696 return AST_TEST_FAIL;
699 presence_write(NULL, "PRESENCESTATE", "CustomPresence:TestPresenceStateChange", "away,down the hall,Quarterly financial meeting");
700 sem_wait(&cb_data->sem);
701 if (cb_data->presence != AST_PRESENCE_AWAY ||
702 strcmp(cb_data->provider, "CustomPresence:TestPresenceStateChange") ||
703 strcmp(cb_data->subtype, "down the hall") ||
704 strcmp(cb_data->message, "Quarterly financial meeting")) {
705 return AST_TEST_FAIL;
708 ast_free((char *)cb_data->provider);
709 ast_free((char *)cb_data->subtype);
710 ast_free((char *)cb_data->message);
711 ast_free((char *)cb_data);
713 ast_db_del("CustomPresence", "TestPresenceStateChange");
715 return AST_TEST_PASS;
720 static int unload_module(void)
724 res |= ast_custom_function_unregister(&presence_function);
725 res |= ast_presence_state_prov_del("CustomPresence");
726 res |= ast_cli_unregister_multiple(cli_funcpresencestate, ARRAY_LEN(cli_funcpresencestate));
727 #ifdef TEST_FRAMEWORK
728 AST_TEST_UNREGISTER(test_valid_parse_data);
729 AST_TEST_UNREGISTER(test_invalid_parse_data);
730 AST_TEST_UNREGISTER(test_presence_state_change);
735 static int load_module(void)
738 struct ast_db_entry *db_entry, *db_tree;
740 /* Populate the presence state cache on the system with all of the currently
741 * known custom presence states. */
742 db_entry = db_tree = ast_db_gettree(astdb_family, NULL);
743 for (; db_entry; db_entry = db_entry->next) {
744 const char *dev_name = strrchr(db_entry->key, '/') + 1;
745 char state_info[1301];
746 enum ast_presence_state state;
750 if (dev_name <= (const char *) 1) {
753 ast_copy_string(state_info, db_entry->data, sizeof(state_info));
754 if (parse_data(state_info, &state, &subtype, &message, &options)) {
755 ast_log(LOG_WARNING, "Invalid CustomPresence entry %s encountered\n", db_entry->data);
758 ast_presence_state_changed(state, subtype, message, "CustomPresence:%s", dev_name);
760 ast_db_freetree(db_tree);
763 res |= ast_custom_function_register(&presence_function);
764 res |= ast_presence_state_prov_add("CustomPresence", custom_presence_callback);
765 res |= ast_cli_register_multiple(cli_funcpresencestate, ARRAY_LEN(cli_funcpresencestate));
766 #ifdef TEST_FRAMEWORK
767 AST_TEST_REGISTER(test_valid_parse_data);
768 AST_TEST_REGISTER(test_invalid_parse_data);
769 AST_TEST_REGISTER(test_presence_state_change);
775 AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "Gets or sets a presence state in the dialplan",
777 .unload = unload_module,
778 .load_pri = AST_MODPRI_DEVSTATE_PROVIDER,