Asterisk - The Open Source Telephony Project GIT-master-8924258
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Modules Pages
app_transfer.c
Go to the documentation of this file.
1/*
2 * Asterisk -- An open source telephony toolkit.
3 *
4 * Copyright (C) 1999 - 2005, Digium, Inc.
5 *
6 * Mark Spencer <markster@digium.com>
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 Transfer a caller
22 *
23 * \author Mark Spencer <markster@digium.com>
24 *
25 * Requires transfer support from channel driver
26 *
27 * \ingroup applications
28 */
29
30/*** MODULEINFO
31 <support_level>core</support_level>
32 ***/
33
34#include "asterisk.h"
35
36#include "asterisk/pbx.h"
37#include "asterisk/module.h"
38#include "asterisk/app.h"
39#include "asterisk/channel.h"
40
41/*** DOCUMENTATION
42 <application name="Transfer" language="en_US">
43 <since>
44 <version>0.5.0</version>
45 </since>
46 <synopsis>
47 Transfer caller to remote extension.
48 </synopsis>
49 <syntax>
50 <parameter name="dest" required="true" argsep="">
51 <argument name="Tech/" />
52 <argument name="destination" required="true" />
53 </parameter>
54 </syntax>
55 <description>
56 <para>Requests the remote caller be transferred
57 to a given destination. If TECH (SIP, IAX2, etc) is used, only
58 an incoming call with the same channel technology will be transferred.
59 Note that for SIP, if you transfer before call is setup, a 302 redirect
60 SIP message will be returned to the caller.</para>
61 <para>The result of the application will be reported in the <variable>TRANSFERSTATUS</variable>
62 channel variable:</para>
63 <variablelist>
64 <variable name="TRANSFERSTATUS">
65 <value name="SUCCESS">
66 Transfer succeeded.
67 </value>
68 <value name="FAILURE">
69 Transfer failed.
70 </value>
71 <value name="UNSUPPORTED">
72 Transfer unsupported by channel driver.
73 </value>
74 </variable>
75 <variable name="TRANSFERSTATUSPROTOCOL">
76 <value name="0">
77 No error.
78 </value>
79 <value name="3xx-6xx">
80 SIP example - Error result code.
81 </value>
82 </variable>
83 </variablelist>
84 </description>
85 </application>
86 ***/
87
88static const char * const app = "Transfer";
89
90static int transfer_exec(struct ast_channel *chan, const char *data)
91{
92 int res;
93 int len;
94 char *slash;
95 char *tech = NULL;
96 char *dest = NULL;
97 char *status;
98 char *parse;
99 int protocol = 0;
100 char status_protocol[20];
102 AST_APP_ARG(dest);
103 );
104
105 if (ast_strlen_zero((char *)data)) {
106 ast_log(LOG_WARNING, "Transfer requires an argument ([Tech/]destination)\n");
107 pbx_builtin_setvar_helper(chan, "TRANSFERSTATUS", "FAILURE");
108 snprintf(status_protocol, sizeof(status_protocol), "%d", protocol);
109 pbx_builtin_setvar_helper(chan, "TRANSFERSTATUSPROTOCOL", status_protocol);
110 return 0;
111 } else
112 parse = ast_strdupa(data);
113
115
116 dest = args.dest;
117
118 if ((slash = strchr(dest, '/')) && (len = (slash - dest))) {
119 tech = dest;
120 dest = slash + 1;
121 /* Allow execution only if the Tech/destination agrees with the type of the channel */
122 if (strncasecmp(ast_channel_tech(chan)->type, tech, len)) {
123 pbx_builtin_setvar_helper(chan, "TRANSFERSTATUS", "FAILURE");
124 snprintf(status_protocol, sizeof(status_protocol), "%d", protocol);
125 pbx_builtin_setvar_helper(chan, "TRANSFERSTATUSPROTOCOL", status_protocol);
126 return 0;
127 }
128 }
129
130 /* Check if the channel supports transfer before we try it */
131 if (!ast_channel_tech(chan)->transfer) {
132 pbx_builtin_setvar_helper(chan, "TRANSFERSTATUS", "UNSUPPORTED");
133 snprintf(status_protocol, sizeof(status_protocol), "%d", protocol);
134 pbx_builtin_setvar_helper(chan, "TRANSFERSTATUSPROTOCOL", status_protocol);
135 return 0;
136 }
137
138 /* New transfer API returns a protocol code
139 SIP example, 0 = success, 3xx-6xx are sip error codes for the REFER */
140 res = ast_transfer_protocol(chan, dest, &protocol);
141
142 if (res < 0) {
143 status = "FAILURE";
144 res = 0;
145 } else {
146 status = "SUCCESS";
147 res = 0;
148 }
149
150 snprintf(status_protocol, sizeof(status_protocol), "%d", protocol);
151 ast_debug(1, "ast_transfer channel %s TRANSFERSTATUS=%s, TRANSFERSTATUSPROTOCOL=%s\n",
152 ast_channel_name(chan), status, status_protocol);
153 pbx_builtin_setvar_helper(chan, "TRANSFERSTATUS", status);
154 pbx_builtin_setvar_helper(chan, "TRANSFERSTATUSPROTOCOL", status_protocol);
155
156 return res;
157}
158
159static int unload_module(void)
160{
162}
163
164static int load_module(void)
165{
167}
168
169AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Transfers a caller to another extension");
jack_status_t status
Definition: app_jack.c:149
static const char *const app
Definition: app_transfer.c:88
static int load_module(void)
Definition: app_transfer.c:164
static int unload_module(void)
Definition: app_transfer.c:159
static int transfer_exec(struct ast_channel *chan, const char *data)
Definition: app_transfer.c:90
Asterisk main include file. File version handling, generic pbx functions.
#define ast_strdupa(s)
duplicate a string in memory from the stack
Definition: astmm.h:298
#define ast_log
Definition: astobj2.c:42
static const char type[]
Definition: chan_ooh323.c:109
static int transfer(void *data)
Definition: chan_pjsip.c:2133
General Asterisk PBX channel definitions.
const char * ast_channel_name(const struct ast_channel *chan)
int ast_transfer_protocol(struct ast_channel *chan, char *dest, int *protocol)
Transfer a channel (if supported) receieve protocol result.
Definition: channel.c:6515
const struct ast_channel_tech * ast_channel_tech(const struct ast_channel *chan)
static int len(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t buflen)
Application convenience functions, designed to give consistent look and feel to Asterisk apps.
#define AST_APP_ARG(name)
Define an application argument.
#define AST_DECLARE_APP_ARGS(name, arglist)
Declare a structure to hold an application's arguments.
#define AST_STANDARD_APP_ARGS(args, parse)
Performs the 'standard' argument separation process for an application.
#define ast_debug(level,...)
Log a DEBUG message.
#define LOG_WARNING
Asterisk module definitions.
#define AST_MODULE_INFO_STANDARD(keystr, desc)
Definition: module.h:581
#define ASTERISK_GPL_KEY
The text the key() function should return.
Definition: module.h:46
int ast_unregister_application(const char *app)
Unregister an application.
Definition: pbx_app.c:392
#define ast_register_application_xml(app, execute)
Register an application using XML documentation.
Definition: module.h:640
Core PBX routines and definitions.
int pbx_builtin_setvar_helper(struct ast_channel *chan, const char *name, const char *value)
Add a variable to the channel variable stack, removing the most recently set value for the same name.
#define NULL
Definition: resample.c:96
static force_inline int attribute_pure ast_strlen_zero(const char *s)
Definition: strings.h:65
Main Channel structure associated with a channel.
const char * args