2 * Asterisk -- A telephony toolkit for Linux.
4 * A full-featured Find-Me/Follow-Me Application
6 * Copyright (C) 2005-2006, BJ Weschke All Rights Reserved.
8 * BJ Weschke <bweschke@btwtech.com>
10 * This code is released by the author with no restrictions on usage.
12 * See http://www.asterisk.org for more information about
13 * the Asterisk project. Please do not directly contact
14 * any of the maintainers of this project for assistance;
15 * the project provides a web site, mailing lists and IRC
16 * channels for your use.
22 * \brief Find-Me Follow-Me application
24 * \author BJ Weschke <bweschke@btwtech.com>
26 * \ingroup applications
31 ASTERISK_FILE_VERSION(__FILE__, "$revision$")
39 #include "asterisk/lock.h"
40 #include "asterisk/file.h"
41 #include "asterisk/logger.h"
42 #include "asterisk/channel.h"
43 #include "asterisk/pbx.h"
44 #include "asterisk/options.h"
45 #include "asterisk/module.h"
46 #include "asterisk/translate.h"
47 #include "asterisk/say.h"
48 #include "asterisk/features.h"
49 #include "asterisk/musiconhold.h"
50 #include "asterisk/cli.h"
51 #include "asterisk/manager.h"
52 #include "asterisk/config.h"
53 #include "asterisk/monitor.h"
54 #include "asterisk/utils.h"
55 #include "asterisk/causes.h"
56 #include "asterisk/astdb.h"
57 #include "asterisk/app.h"
59 static char *app = "FollowMe";
60 static char *synopsis =
62 static char *descrip =
63 " FollowMe(followmeid|options):\n"
64 "This application performs Find-Me/Follow-Me functionality for the caller\n"
65 "as defined in the profile matching the <followmeid> parameter in\n"
66 "followme.conf. If the specified <followmeid> profile doesn't exist in\n"
67 "followme.conf, execution will be returned to the dialplan and call\n"
68 "execution will continue at the next priority.\n\n"
70 " s - Playback the incoming status message prior to starting the follow-me step(s)\n"
71 " a - Record the caller's name so it can be announced to the callee on each step\n"
72 " n - Playback the unreachable status message if we've run out of steps to reach the\n"
73 " or the callee has elected not to be reachable.\n"
79 char number[512]; /*!< Phone Number(s) and/or Extension(s) */
80 long timeout; /*!< Dial Timeout, if used. */
81 int order; /*!< The order to dial in */
82 AST_LIST_ENTRY(number) entry; /*!< Next Number record */
85 struct ast_call_followme {
87 char name[AST_MAX_EXTENSION]; /*!< Name - FollowMeID */
88 char moh[AST_MAX_CONTEXT]; /*!< Music On Hold Class to be used */
89 char context[AST_MAX_CONTEXT]; /*!< Context to dial from */
90 unsigned int active; /*!< Profile is active (1), or disabled (0). */
91 char takecall[20]; /*!< Digit mapping to take a call */
92 char nextindp[20]; /*!< Digit mapping to decline a call */
93 char callfromprompt[AST_CONFIG_MAX_PATH];
94 char norecordingprompt[AST_CONFIG_MAX_PATH];
95 char optionsprompt[AST_CONFIG_MAX_PATH];
96 char plsholdprompt[AST_CONFIG_MAX_PATH];
97 char statusprompt[AST_CONFIG_MAX_PATH];
98 char sorryprompt[AST_CONFIG_MAX_PATH];
100 AST_LIST_HEAD_NOLOCK(numbers, number) numbers; /*!< Head of the list of follow-me numbers */
101 AST_LIST_HEAD_NOLOCK(blnumbers, number) blnumbers; /*!< Head of the list of black-listed numbers */
102 AST_LIST_HEAD_NOLOCK(wlnumbers, number) wlnumbers; /*!< Head of the list of white-listed numbers */
103 AST_LIST_ENTRY(ast_call_followme) entry; /*!< Next Follow-Me record */
107 struct ast_channel *chan;
109 AST_LIST_HEAD_NOLOCK(cnumbers, number) cnumbers;
111 char context[AST_MAX_CONTEXT];
112 char namerecloc[AST_MAX_CONTEXT];
113 struct ast_channel *outbound;
114 char takecall[20]; /*!< Digit mapping to take a call */
115 char nextindp[20]; /*!< Digit mapping to decline a call */
116 char callfromprompt[AST_CONFIG_MAX_PATH];
117 char norecordingprompt[AST_CONFIG_MAX_PATH];
118 char optionsprompt[AST_CONFIG_MAX_PATH];
119 char plsholdprompt[AST_CONFIG_MAX_PATH];
120 char statusprompt[AST_CONFIG_MAX_PATH];
121 char sorryprompt[AST_CONFIG_MAX_PATH];
122 struct ast_flags followmeflags;
126 struct ast_channel *ochan;
133 AST_LIST_ENTRY(findme_user) entry;
137 FOLLOWMEFLAG_STATUSMSG = (1 << 0),
138 FOLLOWMEFLAG_RECORDNAME = (1 << 1),
139 FOLLOWMEFLAG_UNREACHABLEMSG = (1 << 2)
142 AST_APP_OPTIONS(followme_opts, {
143 AST_APP_OPTION('s', FOLLOWMEFLAG_STATUSMSG ),
144 AST_APP_OPTION('a', FOLLOWMEFLAG_RECORDNAME ),
145 AST_APP_OPTION('n', FOLLOWMEFLAG_UNREACHABLEMSG ),
148 static int ynlongest = 0;
149 static char toast[80];
150 static time_t start_time, answer_time, end_time;
152 static char *featuredigittostr;
153 static int featuredigittimeout = 5000; /*!< Feature Digit Timeout */
154 static const char *defaultmoh = "default"; /*!< Default Music-On-Hold Class */
156 static char takecall[20] = "1", nextindp[20] = "2";
157 static char callfromprompt[AST_CONFIG_MAX_PATH] = "followme/call-from";
158 static char norecordingprompt[AST_CONFIG_MAX_PATH] = "followme/no-recording";
159 static char optionsprompt[AST_CONFIG_MAX_PATH] = "followme/followme-options";
160 static char plsholdprompt[AST_CONFIG_MAX_PATH] = "followme/pls-hold-while-try";
161 static char statusprompt[AST_CONFIG_MAX_PATH] = "followme/followme-status";
162 static char sorryprompt[AST_CONFIG_MAX_PATH] = "followme/followme-sorry";
165 static AST_LIST_HEAD_STATIC(followmes, ast_call_followme);
166 AST_LIST_HEAD_NOLOCK(findme_user_listptr, findme_user);
168 static void free_numbers(struct ast_call_followme *f)
170 /* Free numbers attached to the profile */
173 while ((prev = AST_LIST_REMOVE_HEAD(&f->numbers, entry)))
174 /* Free the number */
176 AST_LIST_HEAD_INIT_NOLOCK(&f->numbers);
178 while ((prev = AST_LIST_REMOVE_HEAD(&f->blnumbers, entry)))
179 /* Free the blacklisted number */
181 AST_LIST_HEAD_INIT_NOLOCK(&f->blnumbers);
183 while ((prev = AST_LIST_REMOVE_HEAD(&f->wlnumbers, entry)))
184 /* Free the whitelisted number */
186 AST_LIST_HEAD_INIT_NOLOCK(&f->wlnumbers);
191 static struct ast_call_followme *alloc_profile(const char *fmname)
193 struct ast_call_followme *f;
195 f = ast_calloc(1, sizeof(*f));
197 ast_mutex_init(&f->lock);
198 ast_copy_string(f->name, fmname, sizeof(f->name));
199 ast_copy_string(f->moh, "", sizeof(f->moh));
200 ast_copy_string(f->context, "", sizeof(f->context));
201 ast_copy_string(f->takecall, takecall, sizeof(f->takecall));
202 ast_copy_string(f->nextindp, nextindp, sizeof(f->nextindp));
203 ast_copy_string(f->callfromprompt, callfromprompt, sizeof(f->callfromprompt));
204 ast_copy_string(f->norecordingprompt, norecordingprompt, sizeof(f->norecordingprompt));
205 ast_copy_string(f->optionsprompt, optionsprompt, sizeof(f->optionsprompt));
206 ast_copy_string(f->plsholdprompt, plsholdprompt, sizeof(f->plsholdprompt));
207 ast_copy_string(f->statusprompt, statusprompt, sizeof(f->statusprompt));
208 ast_copy_string(f->sorryprompt, sorryprompt, sizeof(f->sorryprompt));
209 AST_LIST_HEAD_INIT_NOLOCK(&f->numbers);
210 AST_LIST_HEAD_INIT_NOLOCK(&f->blnumbers);
211 AST_LIST_HEAD_INIT_NOLOCK(&f->wlnumbers);
216 static void init_profile(struct ast_call_followme *f)
219 ast_copy_string(f->moh, defaultmoh, sizeof(f->moh));
224 static void profile_set_param(struct ast_call_followme *f, const char *param, const char *val, int linenum, int failunknown)
227 if (!strcasecmp(param, "musicclass") || !strcasecmp(param, "musiconhold") || !strcasecmp(param, "music"))
228 ast_copy_string(f->moh, val, sizeof(f->moh));
229 else if (!strcasecmp(param, "context")) {
230 ast_copy_string(f->context, val, sizeof(f->context));
231 } else if (!strcasecmp(param, "takecall")) {
232 ast_copy_string(f->takecall, val, sizeof(f->takecall));
233 } else if (!strcasecmp(param, "declinecall")) {
234 ast_copy_string(f->nextindp, val, sizeof(f->nextindp));
235 } else if (!strcasecmp(param, "call-from-prompt")) {
236 ast_copy_string(f->callfromprompt, val, sizeof(f->callfromprompt));
237 } else if (!strcasecmp(param, "followme-recording-prompt")) {
238 ast_copy_string(f->norecordingprompt, val, sizeof(f->norecordingprompt));
239 } else if (!strcasecmp(param, "followme-options-prompt")) {
240 ast_copy_string(f->optionsprompt, val, sizeof(f->optionsprompt));
241 } else if (!strcasecmp(param, "followme-pls-hold-prompt")) {
242 ast_copy_string(f->plsholdprompt, val, sizeof(f->plsholdprompt));
243 } else if (!strcasecmp(param, "followme-status-prompt")) {
244 ast_copy_string(f->statusprompt, val, sizeof(f->statusprompt));
245 } else if (!strcasecmp(param, "followme-sorry-prompt")) {
246 ast_copy_string(f->sorryprompt, val, sizeof(f->sorryprompt));
247 } else if (failunknown) {
249 ast_log(LOG_WARNING, "Unknown keyword in profile '%s': %s at line %d of followme.conf\n", f->name, param, linenum);
251 ast_log(LOG_WARNING, "Unknown keyword in profile '%s': %s\n", f->name, param);
255 static struct number *create_followme_number(char *number, int timeout, int numorder)
260 /* Add a new number */
262 cur = ast_calloc(1, sizeof(*cur));
265 cur->timeout = timeout;
266 if ((tmp = strchr(number, ','))) {
269 ast_copy_string(cur->number, number, sizeof(cur->number));
270 cur->order = numorder;
272 ast_log(LOG_DEBUG, "Created a number, %s, order of , %d, with a timeout of %ld.\n", cur->number, cur->order, cur->timeout);
278 static int reload_followme(void)
280 struct ast_call_followme *f;
281 struct ast_config *cfg;
283 struct ast_variable *var;
284 struct number *cur, *nm;
291 char *declinecallstr;
294 cfg = ast_config_load("followme.conf");
296 ast_log(LOG_WARNING, "No follow me config file (followme.conf), so no follow me\n");
300 AST_LIST_LOCK(&followmes);
302 /* Reset Global Var Values */
303 featuredigittimeout = 5000;
305 /* Mark all profiles as inactive for the moment */
306 AST_LIST_TRAVERSE(&followmes, f, entry) {
309 featuredigittostr = ast_variable_retrieve(cfg, "general", "featuredigittimeout");
311 if (!ast_strlen_zero(featuredigittostr))
312 if (!scanf("%d", &featuredigittimeout))
313 featuredigittimeout = 5000;
315 takecallstr = ast_variable_retrieve(cfg, "general", "takecall");
316 if (!ast_strlen_zero(takecallstr))
317 ast_copy_string(takecall, takecallstr, sizeof(takecall));
319 declinecallstr = ast_variable_retrieve(cfg, "general", "declinecall");
320 if (!ast_strlen_zero(declinecallstr))
321 ast_copy_string(nextindp, declinecallstr, sizeof(nextindp));
323 tmpstr = ast_variable_retrieve(cfg, "general", "call-from-prompt");
324 if (!ast_strlen_zero(tmpstr))
325 ast_copy_string(callfromprompt, tmpstr, sizeof(callfromprompt));
327 tmpstr = ast_variable_retrieve(cfg, "general", "followme-norecording-prompt");
328 if (!ast_strlen_zero(tmpstr))
329 ast_copy_string(norecordingprompt, tmpstr, sizeof(norecordingprompt));
331 tmpstr = ast_variable_retrieve(cfg, "general", "followme-options-prompt");
332 if (!ast_strlen_zero(tmpstr))
333 ast_copy_string(optionsprompt, tmpstr, sizeof(optionsprompt));
335 tmpstr = ast_variable_retrieve(cfg, "general", "followme-pls-hold-prompt");
336 if (!ast_strlen_zero(tmpstr))
337 ast_copy_string(plsholdprompt, tmpstr, sizeof(plsholdprompt));
339 tmpstr = ast_variable_retrieve(cfg, "general", "followme-status-prompt");
340 if (!ast_strlen_zero(tmpstr))
341 ast_copy_string(statusprompt, tmpstr, sizeof(statusprompt));
343 tmpstr = ast_variable_retrieve(cfg, "general", "followme-sorry-prompt");
344 if (!ast_strlen_zero(tmpstr))
345 ast_copy_string(sorryprompt, tmpstr, sizeof(sorryprompt));
347 /* Chug through config file */
348 cat = ast_category_browse(cfg, NULL);
350 /* Define a new profile */
351 /* Look for an existing one */
352 AST_LIST_TRAVERSE(&followmes, f, entry) {
353 if (!strcasecmp(f->name, cat))
357 ast_log(LOG_DEBUG, "New profile %s.\n", cat);
360 f = alloc_profile(cat);
367 ast_mutex_lock(&f->lock);
368 /* Re-initialize the profile */
371 var = ast_variable_browse(cfg, cat);
373 if (!strcasecmp(var->name, "number")) {
374 /* Add a new number */
375 ast_copy_string(numberstr, var->value, sizeof(numberstr));
376 if ((tmp = strchr(numberstr, ','))) {
379 timeoutstr = ast_strdupa(tmp);
380 if ((tmp = strchr(timeoutstr, ','))) {
383 numorder = atoi(tmp);
388 timeout = atoi(timeoutstr);
398 AST_LIST_TRAVERSE(&f->numbers, nm, entry)
402 cur = create_followme_number(numberstr, timeout, numorder);
403 AST_LIST_INSERT_TAIL(&f->numbers, cur, entry);
405 profile_set_param(f, var->name, var->value, var->lineno, 1);
407 ast_log(LOG_DEBUG, "Logging parameter %s with value %s from lineno %d\n", var->name, var->value, var->lineno);
410 } /* End while(var) loop */
413 ast_mutex_unlock(&f->lock);
415 AST_LIST_INSERT_HEAD(&followmes, f, entry);
418 cat = ast_category_browse(cfg, cat);
420 ast_config_destroy(cfg);
422 AST_LIST_UNLOCK(&followmes);
427 static void clear_caller(struct findme_user *tmpuser)
429 struct ast_channel *outbound;
431 if (tmpuser && tmpuser->ochan && tmpuser->state >= 0) {
432 outbound = tmpuser->ochan;
433 if (!outbound->cdr) {
434 outbound->cdr = ast_cdr_alloc();
436 ast_cdr_init(outbound->cdr, outbound);
440 snprintf(tmp, sizeof(tmp), "%s/%s", "Local", tmpuser->dialarg);
441 ast_cdr_setapp(outbound->cdr,"FollowMe",tmp);
442 ast_cdr_update(outbound);
443 ast_cdr_start(outbound->cdr);
444 ast_cdr_end(outbound->cdr);
445 /* If the cause wasn't handled properly */
446 if (ast_cdr_disposition(outbound->cdr,outbound->hangupcause))
447 ast_cdr_failed(outbound->cdr);
449 ast_log(LOG_WARNING, "Unable to create Call Detail Record\n");
450 ast_hangup(tmpuser->ochan);
455 static void clear_calling_tree(struct findme_user_listptr *findme_user_list)
457 struct findme_user *tmpuser;
459 AST_LIST_TRAVERSE(findme_user_list, tmpuser, entry) {
460 clear_caller(tmpuser);
461 tmpuser->cleared = 1;
468 static struct ast_channel *wait_for_winner(struct findme_user_listptr *findme_user_list, struct number *nm, struct ast_channel *caller, char *namerecloc, int *status, struct fm_args *tpargs)
470 struct ast_channel *watchers[256];
472 struct ast_channel *winner;
476 struct findme_user *tmpuser;
478 int livechannels = 0;
480 long totalwait = 0, wtd, towas = 0;
482 char *pressbuttonname;
484 /* ------------ wait_for_winner_channel start --------------- */
486 callfromname = ast_strdupa(tpargs->callfromprompt);
487 pressbuttonname = ast_strdupa(tpargs->optionsprompt);
489 if (!AST_LIST_EMPTY(findme_user_list))
492 if (option_verbose > 2)
493 ast_verbose(VERBOSE_PREFIX_3 "Original caller hungup. Cleanup.\n");
494 clear_calling_tree(findme_user_list);
498 totalwait = nm->timeout * 1000;
504 watchers[0] = caller;
508 AST_LIST_TRAVERSE(findme_user_list, tmpuser, entry) {
509 if (tmpuser->state >= 0 && tmpuser->ochan) {
510 if (tmpuser->state == 3) {
511 tmpuser->digts += (towas - wtd);
513 if (tmpuser->digts && (tmpuser->digts > featuredigittimeout)) {
514 if (option_verbose > 2)
515 ast_verbose(VERBOSE_PREFIX_3 "We've been waiting for digits longer than we should have.\n");
516 if (!ast_strlen_zero(namerecloc)) {
519 if (!ast_streamfile(tmpuser->ochan, callfromname, tmpuser->ochan->language)) {
520 ast_sched_runq(tmpuser->ochan->sched);
522 ast_log(LOG_WARNING, "Unable to playback %s.\n", callfromname);
528 if (!ast_streamfile(tmpuser->ochan, tpargs->norecordingprompt, tmpuser->ochan->language))
529 ast_sched_runq(tmpuser->ochan->sched);
531 ast_log(LOG_WARNING, "Unable to playback %s.\n", tpargs->norecordingprompt);
536 if (tmpuser->ochan->stream) {
537 ast_sched_runq(tmpuser->ochan->sched);
538 tmpto = ast_sched_wait(tmpuser->ochan->sched);
539 if (tmpto > 0 && tmpto < to)
541 else if (tmpto < 0 && !tmpuser->ochan->timingfunc) {
542 ast_stopstream(tmpuser->ochan);
543 if (tmpuser->state == 1) {
544 if (option_verbose > 2)
545 ast_verbose(VERBOSE_PREFIX_3 "Playback of the call-from file appears to be done.\n");
546 if (!ast_streamfile(tmpuser->ochan, namerecloc, tmpuser->ochan->language)) {
549 ast_log(LOG_NOTICE, "Unable to playback %s. Maybe the caller didn't record their name?\n", namerecloc);
550 memset(tmpuser->yn, 0, sizeof(tmpuser->yn));
552 if (!ast_streamfile(tmpuser->ochan, pressbuttonname, tmpuser->ochan->language))
555 ast_log(LOG_WARNING, "Unable to playback %s.\n", pressbuttonname);
559 } else if (tmpuser->state == 2) {
560 if (option_verbose > 2)
561 ast_verbose(VERBOSE_PREFIX_3 "Playback of name file appears to be done.\n");
562 memset(tmpuser->yn, 0, sizeof(tmpuser->yn));
564 if (!ast_streamfile(tmpuser->ochan, pressbuttonname, tmpuser->ochan->language)) {
570 } else if (tmpuser->state == 3) {
571 if (option_verbose > 2)
572 ast_verbose(VERBOSE_PREFIX_3 "Playback of the next step file appears to be done.\n");
577 watchers[pos++] = tmpuser->ochan;
588 winner = ast_waitfor_n(watchers, pos, &to);
592 if (totalwait <= 0) {
593 if (option_verbose > 2)
594 ast_verbose(VERBOSE_PREFIX_3 "We've hit our timeout for this step. Drop everyone and move on to the next one. %ld\n", totalwait);
595 clear_calling_tree(findme_user_list);
599 /* Need to find out which channel this is */
601 while ((winner != watchers[dg]) && (dg < 256))
603 AST_LIST_TRAVERSE(findme_user_list, tmpuser, entry)
604 if (tmpuser->ochan == winner)
606 f = ast_read(winner);
608 if (f->frametype == AST_FRAME_CONTROL) {
609 switch(f->subclass) {
610 case AST_CONTROL_HANGUP:
611 if (option_verbose > 2)
612 ast_verbose( VERBOSE_PREFIX_3 "%s received a hangup frame.\n", winner->name);
614 if (option_verbose > 2)
615 ast_verbose( VERBOSE_PREFIX_3 "The calling channel hungup. Need to drop everyone else.\n");
616 clear_calling_tree(findme_user_list);
620 case AST_CONTROL_ANSWER:
621 if (option_verbose > 2)
622 ast_verbose( VERBOSE_PREFIX_3 "%s answered %s\n", winner->name, caller->name);
623 /* If call has been answered, then the eventual hangup is likely to be normal hangup */
624 winner->hangupcause = AST_CAUSE_NORMAL_CLEARING;
625 caller->hangupcause = AST_CAUSE_NORMAL_CLEARING;
626 if (option_verbose > 2)
627 ast_verbose( VERBOSE_PREFIX_3 "Starting playback of %s\n", callfromname);
629 if (!ast_strlen_zero(namerecloc)) {
630 if (!ast_streamfile(winner, callfromname, winner->language)) {
631 ast_sched_runq(winner->sched);
634 ast_log(LOG_WARNING, "Unable to playback %s.\n", callfromname);
640 if (!ast_streamfile(tmpuser->ochan, tpargs->norecordingprompt, tmpuser->ochan->language))
641 ast_sched_runq(tmpuser->ochan->sched);
643 ast_log(LOG_WARNING, "Unable to playback %s.\n", tpargs->norecordingprompt);
650 case AST_CONTROL_BUSY:
651 if (option_verbose > 2)
652 ast_verbose( VERBOSE_PREFIX_3 "%s is busy\n", winner->name);
654 case AST_CONTROL_CONGESTION:
655 if (option_verbose > 2)
656 ast_verbose( VERBOSE_PREFIX_3 "%s is circuit-busy\n", winner->name);
658 case AST_CONTROL_RINGING:
659 if (option_verbose > 2)
660 ast_verbose( VERBOSE_PREFIX_3 "%s is ringing\n", winner->name);
662 case AST_CONTROL_PROGRESS:
663 if (option_verbose > 2)
664 ast_verbose ( VERBOSE_PREFIX_3 "%s is making progress passing it to %s\n", winner->name,caller->name);
666 case AST_CONTROL_VIDUPDATE:
667 if (option_verbose > 2)
668 ast_verbose ( VERBOSE_PREFIX_3 "%s requested a video update, passing it to %s\n", winner->name,caller->name);
670 case AST_CONTROL_PROCEEDING:
671 if (option_verbose > 2)
672 ast_verbose ( VERBOSE_PREFIX_3 "%s is proceeding passing it to %s\n", winner->name,caller->name);
674 case AST_CONTROL_HOLD:
675 if (option_verbose > 2)
676 ast_verbose(VERBOSE_PREFIX_3 "Call on %s placed on hold\n", winner->name);
678 case AST_CONTROL_UNHOLD:
679 if (option_verbose > 2)
680 ast_verbose(VERBOSE_PREFIX_3 "Call on %s left from hold\n", winner->name);
682 case AST_CONTROL_OFFHOOK:
683 case AST_CONTROL_FLASH:
684 /* Ignore going off hook and flash */
687 if (option_verbose > 2)
688 ast_verbose( VERBOSE_PREFIX_3 "%s stopped sounds\n", winner->name);
692 ast_log(LOG_DEBUG, "Dunno what to do with control type %d\n", f->subclass);
696 if (tmpuser && tmpuser->state == 3 && f->frametype == AST_FRAME_DTMF) {
698 ast_stopstream(winner);
701 ast_log(LOG_DEBUG, "DTMF received: %c\n",(char) f->subclass);
702 tmpuser->yn[tmpuser->ynidx] = (char) f->subclass;
705 ast_log(LOG_DEBUG, "DTMF string: %s\n", tmpuser->yn);
706 if (tmpuser->ynidx >= ynlongest) {
708 ast_log(LOG_DEBUG, "reached longest possible match - doing evals\n");
709 if (!strcmp(tmpuser->yn, tpargs->takecall)) {
711 ast_log(LOG_DEBUG, "Match to take the call!\n");
713 return tmpuser->ochan;
715 if (!strcmp(tmpuser->yn, tpargs->nextindp)) {
717 ast_log(LOG_DEBUG, "Next in dial plan step requested.\n");
730 ast_log(LOG_DEBUG, "we didn't get a frame. hanging up. dg is %d\n",dg);
732 clear_calling_tree(findme_user_list);
739 ast_log(LOG_DEBUG, "live channels left %d\n", livechannels);
741 if (option_verbose > 2)
742 ast_verbose(VERBOSE_PREFIX_3 "no live channels left. exiting.\n");
751 ast_log(LOG_DEBUG, "timed out waiting for action\n");
757 if (option_verbose > 2)
758 ast_verbose(VERBOSE_PREFIX_3 "couldn't reach at this number.\n");
761 /* --- WAIT FOR WINNER NUMBER END! -----------*/
765 static void findmeexec(struct fm_args *tpargs)
768 struct ast_channel *outbound;
769 struct ast_channel *caller;
770 struct ast_channel *winner = NULL;
774 struct findme_user *tmpuser;
775 struct findme_user *fmuser;
776 struct findme_user *headuser;
777 struct findme_user_listptr *findme_user_list;
780 findme_user_list = ast_calloc(1, sizeof(*findme_user_list));
781 AST_LIST_HEAD_INIT_NOLOCK(findme_user_list);
783 /* We're going to figure out what the longest possible string of digits to collect is */
785 if (strlen(tpargs->takecall) > ynlongest)
786 ynlongest = strlen(tpargs->takecall);
787 if (strlen(tpargs->nextindp) > ynlongest)
788 ynlongest = strlen(tpargs->nextindp);
791 caller = tpargs->chan;
792 AST_LIST_TRAVERSE(&tpargs->cnumbers, nm, entry)
793 if (nm->order == idx)
799 ast_log(LOG_DEBUG, "Number %s timeout %ld\n",nm->number,nm->timeout);
802 number = ast_strdupa(nm->number);
804 ast_log(LOG_DEBUG, "examining %s\n", number);
806 rest = strchr(number, '&');
812 if (!strcmp(tpargs->context, ""))
813 sprintf(dialarg, "%s", number);
815 sprintf(dialarg, "%s@%s", number, tpargs->context);
817 tmpuser = ast_calloc(1, sizeof(*tmpuser));
819 ast_log(LOG_WARNING, "Out of memory!\n");
823 outbound = ast_request("Local", ast_best_codec(caller->nativeformats), dialarg, &dg);
825 ast_set_callerid(outbound, caller->cid.cid_num, caller->cid.cid_name, caller->cid.cid_num);
826 ast_channel_inherit_variables(tpargs->chan, outbound);
827 if (option_verbose > 2)
828 ast_verbose(VERBOSE_PREFIX_3 "calling %s\n", dialarg);
829 if (!ast_call(outbound,dialarg,0)) {
830 tmpuser->ochan = outbound;
832 tmpuser->cleared = 0;
833 ast_copy_string(tmpuser->dialarg, dialarg, sizeof(dialarg));
834 AST_LIST_INSERT_TAIL(findme_user_list, tmpuser, entry);
836 if (option_verbose > 2)
837 ast_verbose(VERBOSE_PREFIX_3 "couldn't reach at this number.\n");
839 if (!outbound->cdr) {
840 outbound->cdr = ast_cdr_alloc();
844 ast_cdr_init(outbound->cdr, outbound);
845 snprintf(tmp, sizeof(tmp), "%s/%s", "Local", dialarg);
846 ast_cdr_setapp(outbound->cdr, "FollowMe", tmp);
847 ast_cdr_update(outbound);
848 ast_cdr_start(outbound->cdr);
849 ast_cdr_end(outbound->cdr);
850 /* If the cause wasn't handled properly */
851 if (ast_cdr_disposition(outbound->cdr,outbound->hangupcause))
852 ast_cdr_failed(outbound->cdr);
854 ast_log(LOG_WARNING, "Unable to create Call Detail Record\n");
855 ast_hangup(outbound);
862 ast_log(LOG_WARNING, "Unable to allocate a channel for Local/%s cause: %s\n", dialarg, ast_cause2str(dg));
868 if (!AST_LIST_EMPTY(findme_user_list))
869 winner = wait_for_winner(findme_user_list, nm, caller, tpargs->namerecloc, &status, tpargs);
872 AST_LIST_TRAVERSE_SAFE_BEGIN(findme_user_list, fmuser, entry) {
873 if (!fmuser->cleared && fmuser->ochan != winner)
874 clear_caller(fmuser);
875 AST_LIST_REMOVE_CURRENT(findme_user_list, entry);
878 AST_LIST_TRAVERSE_SAFE_END
891 AST_LIST_TRAVERSE(&tpargs->cnumbers, nm, entry)
892 if (nm->order == idx)
896 free(findme_user_list);
900 tpargs->status = 100;
901 tpargs->outbound = winner;
909 static int app_exec(struct ast_channel *chan, void *data)
911 struct fm_args targs;
912 struct ast_bridge_config config;
913 struct ast_call_followme *f;
914 struct number *nm, *newnm;
918 char namerecloc[255];
920 struct ast_channel *caller;
921 struct ast_channel *outbound;
923 AST_DECLARE_APP_ARGS(args,
924 AST_APP_ARG(followmeid);
925 AST_APP_ARG(options);
928 if (!(argstr = ast_strdupa((char *)data))) {
929 ast_log(LOG_ERROR, "Out of memory!\n");
934 ast_log(LOG_WARNING, "%s requires an argument (followmeid)\n",app);
940 AST_STANDARD_APP_ARGS(args, argstr);
942 if (!ast_strlen_zero(args.followmeid))
944 AST_LIST_LOCK(&followmes);
945 AST_LIST_TRAVERSE(&followmes, f, entry) {
946 if (!strcasecmp(f->name, args.followmeid) && (f->active))
949 AST_LIST_UNLOCK(&followmes);
952 ast_log(LOG_DEBUG, "New profile %s.\n", args.followmeid);
955 ast_log(LOG_WARNING, "Profile requested, %s, not found in the configuration.", args.followmeid);
961 /* XXX TODO: Reinsert the db check value to see whether or not follow-me is on or off */
965 ast_app_parse_options(followme_opts, &targs.followmeflags, NULL, args.options);
968 /* Lock the profile lock and copy out everything we need to run with before unlocking it again */
969 ast_mutex_lock(&f->lock);
970 targs.mohclass = ast_strdupa(f->moh);
971 ast_copy_string(targs.context, f->context, sizeof(targs.context));
972 ast_copy_string(targs.takecall, f->takecall, sizeof(targs.takecall));
973 ast_copy_string(targs.nextindp, f->nextindp, sizeof(targs.nextindp));
974 ast_copy_string(targs.callfromprompt, f->callfromprompt, sizeof(targs.callfromprompt));
975 ast_copy_string(targs.norecordingprompt, f->norecordingprompt, sizeof(targs.norecordingprompt));
976 ast_copy_string(targs.optionsprompt, f->optionsprompt, sizeof(targs.optionsprompt));
977 ast_copy_string(targs.plsholdprompt, f->plsholdprompt, sizeof(targs.plsholdprompt));
978 ast_copy_string(targs.statusprompt, f->statusprompt, sizeof(targs.statusprompt));
979 ast_copy_string(targs.sorryprompt, f->sorryprompt, sizeof(targs.sorryprompt));
980 /* Copy the numbers we're going to use into another list in case the master list should get modified
981 (and locked) while we're trying to do a follow-me */
982 AST_LIST_HEAD_INIT_NOLOCK(&targs.cnumbers);
983 AST_LIST_TRAVERSE(&f->numbers, nm, entry) {
984 newnm = create_followme_number(nm->number, nm->timeout, nm->order);
985 AST_LIST_INSERT_TAIL(&targs.cnumbers, newnm, entry);
987 ast_mutex_unlock(&f->lock);
989 if (targs.followmeflags.flags & FOLLOWMEFLAG_STATUSMSG)
990 ast_stream_and_wait(chan, targs.statusprompt, chan->language, "");
992 snprintf(namerecloc,sizeof(namerecloc),"%s/followme.%s",ast_config_AST_SPOOL_DIR,chan->uniqueid);
995 if (targs.followmeflags.flags & FOLLOWMEFLAG_RECORDNAME)
996 if (ast_play_and_record(chan, "vm-rec-name", namerecloc, 5, "sln", &duration, 128, 0, NULL) < 0)
999 /* The following call looks like we're going to playback the file, but we're actually */
1000 /* just checking to see if we *can* play it. */
1001 if (ast_streamfile(chan, namerecloc, chan->language))
1002 ast_copy_string(namerecloc, "", sizeof(namerecloc));
1004 ast_stopstream(chan);
1006 if (ast_streamfile(chan, targs.plsholdprompt, chan->language))
1008 if (ast_waitstream(chan, "") < 0)
1010 if (!strcmp(targs.mohclass, ""))
1011 ast_moh_start(chan, NULL);
1013 ast_moh_start(chan, targs.mohclass);
1019 ast_copy_string(targs.namerecloc, namerecloc, sizeof(targs.namerecloc));
1023 AST_LIST_TRAVERSE_SAFE_BEGIN(&targs.cnumbers, nm, entry) {
1024 AST_LIST_REMOVE_CURRENT(&targs.cnumbers, entry);
1027 AST_LIST_TRAVERSE_SAFE_END
1029 if (!ast_strlen_zero(namerecloc))
1032 if (targs.status != 100)
1035 if (targs.followmeflags.flags & FOLLOWMEFLAG_UNREACHABLEMSG)
1036 ast_stream_and_wait(chan, targs.sorryprompt, chan->language, "");
1043 outbound = targs.outbound;
1044 /* Bridge the two channels. */
1046 memset(&config,0,sizeof(struct ast_bridge_config));
1047 ast_set_flag(&(config.features_callee), AST_FEATURE_REDIRECT);
1048 ast_set_flag(&(config.features_callee), AST_FEATURE_AUTOMON);
1049 ast_set_flag(&(config.features_caller), AST_FEATURE_AUTOMON);
1051 ast_moh_stop(caller);
1052 /* Be sure no generators are left on it */
1053 ast_deactivate_generator(caller);
1054 /* Make sure channels are compatible */
1055 res = ast_channel_make_compatible(caller, outbound);
1057 ast_log(LOG_WARNING, "Had to drop call because I couldn't make %s compatible with %s\n", caller->name, outbound->name);
1058 ast_hangup(outbound);
1062 res = ast_bridge_call(caller,outbound,&config);
1064 snprintf(toast, sizeof(toast), "%ld", (long)(end_time - start_time));
1065 pbx_builtin_setvar_helper(caller, "DIALEDTIME", toast);
1066 snprintf(toast, sizeof(toast), "%ld", (long)(end_time - answer_time));
1067 pbx_builtin_setvar_helper(caller, "ANSWEREDTIME", toast);
1069 ast_hangup(outbound);
1077 LOCAL_USER_REMOVE(u);
1081 static int unload_module(void *mod)
1083 struct ast_call_followme *f;
1084 STANDARD_HANGUP_LOCALUSERS;
1085 ast_unregister_application(app);
1086 /* Free Memory. Yeah! I'm free! */
1087 AST_LIST_LOCK(&followmes);
1088 AST_LIST_TRAVERSE_SAFE_BEGIN(&followmes, f, entry) {
1090 AST_LIST_REMOVE_CURRENT(&followmes, entry);
1093 AST_LIST_TRAVERSE_SAFE_END
1094 AST_LIST_UNLOCK(&followmes);
1098 static int load_module(void *mod)
1101 return ast_register_application(app, app_exec, synopsis, descrip);
1104 static const char *description(void)
1106 return "Find-Me/Follow-Me Application";
1109 static int reload(void *mod)
1115 static const char *key(void)
1117 return ASTERISK_GPL_KEY;
1120 STD_MOD(MOD_1, reload, NULL, NULL);