2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2006, Digium, Inc.
6 * Mark Spencer <markster@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 Open Settlement Protocol Lookup
23 * \author Mark Spencer <markster@digium.com>
25 * \ingroup applications
36 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
38 #include "asterisk/lock.h"
39 #include "asterisk/file.h"
40 #include "asterisk/logger.h"
41 #include "asterisk/channel.h"
42 #include "asterisk/pbx.h"
43 #include "asterisk/options.h"
44 #include "asterisk/config.h"
45 #include "asterisk/module.h"
46 #include "asterisk/utils.h"
47 #include "asterisk/causes.h"
48 #include "asterisk/astosp.h"
49 #include "asterisk/app.h"
50 #include "asterisk/options.h"
52 static char *tdesc = "OSP Lookup";
54 static char *app = "OSPLookup";
55 static char *app2 = "OSPNext";
56 static char *app3 = "OSPFinish";
58 static char *synopsis = "Lookup number in OSP";
59 static char *synopsis2 = "Lookup next OSP entry";
60 static char *synopsis3 = "Record OSP entry";
62 static char *descrip =
63 " OSPLookup(exten[|provider[|options]]): Looks up an extension via OSP and sets\n"
64 "the variables, where 'n' is the number of the result beginning with 1:\n"
65 " ${OSPTECH}: The technology to use for the call\n"
66 " ${OSPDEST}: The destination to use for the call\n"
67 " ${OSPTOKEN}: The actual OSP token as a string\n"
68 " ${OSPHANDLE}: The OSP Handle for anything remaining\n"
69 " ${OSPRESULTS}: The number of OSP results total remaining\n"
71 "The option string may contain the following character:\n"
72 " 'j' -- jump to n+101 priority if the lookup was NOT successful\n"
73 "This application sets the following channel variable upon completion:\n"
74 " OSPLOOKUPSTATUS The status of the OSP Lookup attempt as a text string, one of\n"
75 " SUCCESS | FAILED \n";
78 static char *descrip2 =
79 " OSPNext(cause[|options]): Looks up the next OSP Destination for ${OSPHANDLE}\n"
80 "See OSPLookup for more information\n"
82 "The option string may contain the following character:\n"
83 " 'j' -- jump to n+101 priority if the lookup was NOT successful\n"
84 "This application sets the following channel variable upon completion:\n"
85 " OSPNEXTSTATUS The status of the OSP Next attempt as a text string, one of\n"
86 " SUCCESS | FAILED \n";
88 static char *descrip3 =
89 " OSPFinish(status[|options]): Records call state for ${OSPHANDLE}, according to\n"
90 "status, which should be one of BUSY, CONGESTION, ANSWER, NOANSWER, or CHANUNAVAIL\n"
91 "or coincidentally, just what the Dial application stores in its ${DIALSTATUS}.\n"
93 "The option string may contain the following character:\n"
94 " 'j' -- jump to n+101 priority if the finish attempt was NOT successful\n"
95 "This application sets the following channel variable upon completion:\n"
96 " OSPFINISHSTATUS The status of the OSP Finish attempt as a text string, one of\n"
97 " SUCCESS | FAILED \n";
101 static int str2cause(char *cause)
103 if (!strcasecmp(cause, "BUSY"))
104 return AST_CAUSE_BUSY;
105 if (!strcasecmp(cause, "CONGESTION"))
106 return AST_CAUSE_CONGESTION;
107 if (!strcasecmp(cause, "ANSWER"))
108 return AST_CAUSE_NORMAL;
109 if (!strcasecmp(cause, "CANCEL"))
110 return AST_CAUSE_NORMAL;
111 if (!strcasecmp(cause, "NOANSWER"))
112 return AST_CAUSE_NOANSWER;
113 if (!strcasecmp(cause, "NOCHANAVAIL"))
114 return AST_CAUSE_CONGESTION;
115 ast_log(LOG_WARNING, "Unknown cause '%s', using NORMAL\n", cause);
116 return AST_CAUSE_NORMAL;
119 static int osplookup_exec(struct ast_channel *chan, void *data)
124 struct ast_osp_result result;
125 int priority_jump = 0;
126 AST_DECLARE_APP_ARGS(args,
127 AST_APP_ARG(extension);
128 AST_APP_ARG(provider);
129 AST_APP_ARG(options);
132 if (ast_strlen_zero(data)) {
133 ast_log(LOG_WARNING, "OSPLookup requires an argument OSPLookup(exten[|provider[|options]])\n");
139 if (!(temp = ast_strdupa(data))) {
140 LOCAL_USER_REMOVE(u);
144 AST_STANDARD_APP_ARGS(args, temp);
147 if (strchr(args.options, 'j'))
151 ast_log(LOG_DEBUG, "Whoo hoo, looking up OSP on '%s' via '%s'\n", args.extension, args.provider ? args.provider : "<default>");
152 if ((res = ast_osp_lookup(chan, args.provider, args.extension, chan->cid.cid_num, &result)) > 0) {
154 snprintf(tmp, sizeof(tmp), "%d", result.handle);
155 pbx_builtin_setvar_helper(chan, "_OSPHANDLE", tmp);
156 pbx_builtin_setvar_helper(chan, "_OSPTECH", result.tech);
157 pbx_builtin_setvar_helper(chan, "_OSPDEST", result.dest);
158 pbx_builtin_setvar_helper(chan, "_OSPTOKEN", result.token);
159 snprintf(tmp, sizeof(tmp), "%d", result.numresults);
160 pbx_builtin_setvar_helper(chan, "_OSPRESULTS", tmp);
161 pbx_builtin_setvar_helper(chan, "OSPLOOKUPSTATUS", "SUCCESS");
165 ast_log(LOG_NOTICE, "OSP Lookup failed for '%s' (provider '%s')\n", args.extension, args.provider ? args.provider : "<default>");
166 pbx_builtin_setvar_helper(chan, "OSPLOOKUPSTATUS", "FAILED");
168 ast_log(LOG_DEBUG, "Got hangup on '%s' while doing OSP Lookup for '%s' (provider '%s')!\n", chan->name, args.extension, args.provider ? args.provider : "<default>" );
171 /* Look for a "busy" place */
172 if (priority_jump || ast_opt_priority_jumping)
173 ast_goto_if_exists(chan, chan->context, chan->exten, chan->priority + 101);
176 LOCAL_USER_REMOVE(u);
180 static int ospnext_exec(struct ast_channel *chan, void *data)
187 struct ast_osp_result result;
188 int priority_jump = 0;
189 AST_DECLARE_APP_ARGS(args,
191 AST_APP_ARG(options);
194 if (ast_strlen_zero(data)) {
195 ast_log(LOG_WARNING, "OSPNext should have an argument (cause[|options])\n");
201 if (!(temp = ast_strdupa(data))) {
202 LOCAL_USER_REMOVE(u);
206 AST_STANDARD_APP_ARGS(args, temp);
209 if (strchr(args.options, 'j'))
213 cause = str2cause(args.cause);
214 val = pbx_builtin_getvar_helper(chan, "OSPHANDLE");
216 if (!ast_strlen_zero(val) && (sscanf(val, "%d", &result.handle) == 1) && (result.handle > -1)) {
217 val = pbx_builtin_getvar_helper(chan, "OSPRESULTS");
218 if (ast_strlen_zero(val) || (sscanf(val, "%d", &result.numresults) != 1)) {
219 result.numresults = 0;
221 if ((res = ast_osp_next(&result, cause)) > 0) {
223 snprintf(tmp, sizeof(tmp), "%d", result.handle);
224 pbx_builtin_setvar_helper(chan, "_OSPHANDLE", tmp);
225 pbx_builtin_setvar_helper(chan, "_OSPTECH", result.tech);
226 pbx_builtin_setvar_helper(chan, "_OSPDEST", result.dest);
227 pbx_builtin_setvar_helper(chan, "_OSPTOKEN", result.token);
228 snprintf(tmp, sizeof(tmp), "%d", result.numresults);
229 pbx_builtin_setvar_helper(chan, "_OSPRESULTS", tmp);
230 pbx_builtin_setvar_helper(chan, "OSPNEXTSTATUS", "SUCCESS");
234 if (result.handle < 0)
235 ast_log(LOG_NOTICE, "OSP Lookup Next failed for handle '%d'\n", result.handle);
237 ast_log(LOG_DEBUG, "No OSP handle specified\n");
238 pbx_builtin_setvar_helper(chan, "OSPNEXTSTATUS", "FAILED");
240 ast_log(LOG_DEBUG, "Got hangup on '%s' while doing OSP Next!\n", chan->name);
243 /* Look for a "busy" place */
244 if (priority_jump || ast_opt_priority_jumping)
245 ast_goto_if_exists(chan, chan->context, chan->exten, chan->priority + 101);
248 LOCAL_USER_REMOVE(u);
252 static int ospfinished_exec(struct ast_channel *chan, void *data)
259 time_t start=0, duration=0;
260 struct ast_osp_result result;
261 int priority_jump = 0;
262 AST_DECLARE_APP_ARGS(args,
264 AST_APP_ARG(options);
267 if (ast_strlen_zero(data)) {
268 ast_log(LOG_WARNING, "OSPFinish should have an argument (status[|options])\n");
274 if (!(temp = ast_strdupa(data))) {
275 LOCAL_USER_REMOVE(u);
279 AST_STANDARD_APP_ARGS(args, temp);
282 if (strchr(args.options, 'j'))
287 start = chan->cdr->answer.tv_sec;
289 duration = time(NULL) - start;
293 ast_log(LOG_WARNING, "OSPFinish called on channel '%s' with no CDR!\n", chan->name);
295 cause = str2cause(args.status);
296 val = pbx_builtin_getvar_helper(chan, "OSPHANDLE");
298 if (!ast_strlen_zero(val) && (sscanf(val, "%d", &result.handle) == 1) && (result.handle > -1)) {
299 if (!ast_osp_terminate(result.handle, cause, start, duration)) {
300 pbx_builtin_setvar_helper(chan, "_OSPHANDLE", "");
301 pbx_builtin_setvar_helper(chan, "OSPFINISHSTATUS", "SUCCESS");
306 if (result.handle > -1)
307 ast_log(LOG_NOTICE, "OSP Finish failed for handle '%d'\n", result.handle);
309 ast_log(LOG_DEBUG, "No OSP handle specified\n");
310 pbx_builtin_setvar_helper(chan, "OSPFINISHSTATUS", "FAILED");
312 ast_log(LOG_DEBUG, "Got hangup on '%s' while doing OSP Terminate!\n", chan->name);
315 /* Look for a "busy" place */
316 if (priority_jump || ast_opt_priority_jumping)
317 ast_goto_if_exists(chan, chan->context, chan->exten, chan->priority + 101);
320 LOCAL_USER_REMOVE(u);
325 int unload_module(void)
329 res = ast_unregister_application(app3);
330 res |= ast_unregister_application(app2);
331 res |= ast_unregister_application(app);
333 STANDARD_HANGUP_LOCALUSERS;
338 int load_module(void)
342 res = ast_register_application(app, osplookup_exec, synopsis, descrip);
343 res |= ast_register_application(app2, ospnext_exec, synopsis2, descrip2);
344 res |= ast_register_application(app3, ospfinished_exec, synopsis3, descrip3);
355 char *description(void)
363 STANDARD_USECOUNT(res);
369 return ASTERISK_GPL_KEY;