Asterisk - The Open Source Telephony Project GIT-master-f36a736
func_pjsip_contact.c
Go to the documentation of this file.
1/*
2 * Asterisk -- An open source telephony toolkit.
3 *
4 * Copyright (C) 2015, Digium, Inc.
5 *
6 * Joshua Colp <jcolp@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 Get information about a PJSIP contact
22 *
23 * \author \verbatim Joshua Colp <jcolp@digium.com> \endverbatim
24 *
25 * \ingroup functions
26 *
27 */
28
29/*** MODULEINFO
30 <depend>pjproject</depend>
31 <depend>res_pjsip</depend>
32 <support_level>core</support_level>
33 ***/
34
35#include "asterisk.h"
36
37#include <pjsip.h>
38#include <pjlib.h>
39
40#include "asterisk/app.h"
41#include "asterisk/pbx.h"
42#include "asterisk/module.h"
43#include "asterisk/sorcery.h"
44#include "asterisk/res_pjsip.h"
45
46/*** DOCUMENTATION
47 <function name="PJSIP_CONTACT" language="en_US">
48 <synopsis>
49 Get information about a PJSIP contact
50 </synopsis>
51 <syntax>
52 <parameter name="name" required="true">
53 <para>
54 Contact names are in the form of "aor_id@@hash" for dynamic contacts
55 created by the registrar and permanent contacts defined
56 in a <literal>contact</literal> parameter in an <literal>aor</literal>
57 object. You can get the "aor_id@@hash" contact ID by calling the
58 <literal>PJSIP_AOR()</literal> dialplpan function with the AOR name
59 and the <literal>contact</literal> field. You can then pass the value
60 returned to this function.
61 </para>
62 </parameter>
63 <parameter name="field" required="true">
64 <para>The configuration option for the contact to query for.
65 Supported options are those fields on the
66 <replaceable>contact</replaceable> object.</para>
67 <enumlist>
68 <configOptionToEnum>
69 <xi:include xpointer="xpointer(/docs/configInfo[@name='res_pjsip']/configFile[@name='pjsip.conf']/configObject[@name='contact']/configOption)"/>
70 </configOptionToEnum>
71 <enum name="rtt">
72 <para>The RTT of the last qualify</para>
73 </enum>
74 <enum name="status">
75 <para>Status of the contact</para>
76 </enum>
77 </enumlist>
78 </parameter>
79 </syntax>
80 <see-also>
81 <ref type="function">PJSIP_AOR</ref>
82 </see-also>
83 </function>
84***/
85
86static int contact_function_get_permanent(void *obj, void *arg, int flags)
87{
88 const char *id = arg;
89
90 if (!strcmp(ast_sorcery_object_get_id(obj), id)) {
91 return CMP_MATCH | CMP_STOP;
92 }
93
94 return 0;
95}
96
98 const char *cmd, char *data, struct ast_str **buf, ssize_t len)
99{
100 struct ast_sorcery *pjsip_sorcery;
101 char *parsed_data = ast_strdupa(data);
102 char *contact_name;
103 RAII_VAR(struct ast_sip_contact *, contact_obj, NULL, ao2_cleanup);
104 RAII_VAR(struct ast_sip_contact_status *, contact_status, NULL, ao2_cleanup);
105 int res = 0;
106
108 AST_APP_ARG(contact_name);
109 AST_APP_ARG(field_name);
110 );
111
112 /* Check for zero arguments */
113 if (ast_strlen_zero(parsed_data)) {
114 ast_log(AST_LOG_ERROR, "Cannot call %s without arguments\n", cmd);
115 return -1;
116 }
117
118 AST_STANDARD_APP_ARGS(args, parsed_data);
119
120 if (ast_strlen_zero(args.contact_name)) {
121 ast_log(AST_LOG_ERROR, "Cannot call %s without a contact name to query\n", cmd);
122 return -1;
123 }
124
125 if (ast_strlen_zero(args.field_name)) {
126 ast_log(AST_LOG_ERROR, "Cannot call %s with an empty field name to query\n", cmd);
127 return -1;
128 }
129
130 pjsip_sorcery = ast_sip_get_sorcery();
131 if (!pjsip_sorcery) {
132 ast_log(AST_LOG_ERROR, "Unable to retrieve PJSIP configuration: sorcery object is NULL\n");
133 return -1;
134 }
135
136 /* Determine if this is a permanent contact or a normal contact */
137 if ((contact_name = strstr(args.contact_name, "@@"))) {
138 size_t aor_name_len = contact_name - args.contact_name;
139 char aor_name[aor_name_len + 1];
140 RAII_VAR(struct ast_sip_aor *, aor_obj, NULL, ao2_cleanup);
141
142 /* Grab only the AOR name so we can retrieve the AOR which will give us the contact */
143 strncpy(aor_name, args.contact_name, aor_name_len);
144 aor_name[aor_name_len] = '\0';
145
146 aor_obj = ast_sorcery_retrieve_by_id(pjsip_sorcery, "aor", aor_name);
147 if (!aor_obj) {
148 ast_log(AST_LOG_WARNING, "Failed to retrieve information for contact '%s'\n", args.contact_name);
149 return -1;
150 }
151
152 contact_obj = ao2_callback(aor_obj->permanent_contacts, 0, contact_function_get_permanent, args.contact_name);
153 } else {
154 contact_obj = ast_sorcery_retrieve_by_id(pjsip_sorcery, "contact", args.contact_name);
155 }
156
157 if (!contact_obj) {
158 ast_log(AST_LOG_WARNING, "Failed to retrieve information for contact '%s'\n", args.contact_name);
159 return -1;
160 }
161
162 contact_status = ast_sip_get_contact_status(contact_obj);
163
164 if (!strcmp(args.field_name, "status")) {
165 ast_str_set(buf, len, "%s", ast_sip_get_contact_status_label(contact_status ? contact_status->status : UNKNOWN));
166 } else if (!strcmp(args.field_name, "rtt")) {
167 if (!contact_status || contact_status->status != AVAILABLE) {
168 ast_str_set(buf, len, "%s", "N/A");
169 } else {
170 ast_str_set(buf, len, "%" PRId64, contact_status->rtt);
171 }
172 } else {
173 struct ast_variable *change_set;
174 struct ast_variable *it_change_set;
175
176 change_set = ast_sorcery_objectset_create(pjsip_sorcery, contact_obj);
177
178 if (!change_set) {
179 ast_log(AST_LOG_WARNING, "Failed to retrieve information for contact '%s': change set is NULL\n", args.contact_name);
180 return -1;
181 }
182
183 for (it_change_set = change_set; it_change_set; it_change_set = it_change_set->next) {
184 if (!strcmp(it_change_set->name, args.field_name)) {
185 ast_str_set(buf, len, "%s", it_change_set->value);
186 break;
187 }
188 }
189
190 if (!it_change_set) {
191 ast_log(AST_LOG_WARNING, "Unknown property '%s' for PJSIP contact\n", args.field_name);
192
193 res = 1;
194 }
195
196 ast_variables_destroy(change_set);
197 }
198
199 return res;
200}
201
202
204 .name = "PJSIP_CONTACT",
206};
207
208static int unload_module(void)
209{
211}
212
213static int load_module(void)
214{
216}
217
218AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "Get information about a PJSIP contact",
219 .support_level = AST_MODULE_SUPPORT_CORE,
220 .load = load_module,
221 .unload = unload_module,
222 .requires = "res_pjsip",
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
@ CMP_MATCH
Definition: astobj2.h:1027
@ CMP_STOP
Definition: astobj2.h:1028
#define ao2_callback(c, flags, cb_fn, arg)
ao2_callback() is a generic function that applies cb_fn() to all objects in a container,...
Definition: astobj2.h:1693
#define ao2_cleanup(obj)
Definition: astobj2.h:1934
char buf[BUFSIZE]
Definition: eagi_proxy.c:66
static struct ast_custom_function pjsip_contact_function
static int contact_function_get_permanent(void *obj, void *arg, int flags)
static int load_module(void)
static int unload_module(void)
static int pjsip_contact_function_read(struct ast_channel *chan, const char *cmd, char *data, struct ast_str **buf, ssize_t len)
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.
void ast_variables_destroy(struct ast_variable *var)
Free variable list.
Definition: extconf.c:1262
#define AST_LOG_WARNING
#define AST_LOG_ERROR
Asterisk module definitions.
@ AST_MODFLAG_DEFAULT
Definition: module.h:329
#define AST_MODULE_INFO(keystr, flags_to_set, desc, fields...)
Definition: module.h:557
@ AST_MODULE_SUPPORT_CORE
Definition: module.h:121
#define ASTERISK_GPL_KEY
The text the key() function should return.
Definition: module.h:46
Core PBX routines and definitions.
#define ast_custom_function_register(acf)
Register a custom function.
Definition: pbx.h:1558
int ast_custom_function_unregister(struct ast_custom_function *acf)
Unregister a custom function.
struct ast_sorcery * ast_sip_get_sorcery(void)
Get a pointer to the SIP sorcery structure.
struct ast_sip_contact_status * ast_sip_get_contact_status(const struct ast_sip_contact *contact)
Retrieve the current status for a contact.
const char * ast_sip_get_contact_status_label(const enum ast_sip_contact_status_type status)
translate ast_sip_contact_status_type to character string.
@ AVAILABLE
Definition: res_pjsip.h:435
@ UNKNOWN
Definition: res_pjsip.h:437
#define NULL
Definition: resample.c:96
Sorcery Data Access Layer API.
const char * ast_sorcery_object_get_id(const void *object)
Get the unique identifier of a sorcery object.
Definition: sorcery.c:2317
#define ast_sorcery_objectset_create(sorcery, object)
Create an object set (KVP list) for an object.
Definition: sorcery.h:1137
void * ast_sorcery_retrieve_by_id(const struct ast_sorcery *sorcery, const char *type, const char *id)
Retrieve an object using its unique identifier.
Definition: sorcery.c:1853
static force_inline int attribute_pure ast_strlen_zero(const char *s)
Definition: strings.h:65
int ast_str_set(struct ast_str **buf, ssize_t max_len, const char *fmt,...)
Set a dynamic string using variable arguments.
Definition: strings.h:1113
Main Channel structure associated with a channel.
Data structure associated with a custom dialplan function.
Definition: pbx.h:118
const char * name
Definition: pbx.h:119
A SIP address of record.
Definition: res_pjsip.h:475
A contact's status.
Definition: res_pjsip.h:448
Contact associated with an address of record.
Definition: res_pjsip.h:389
Full structure for sorcery.
Definition: sorcery.c:230
Support for dynamic strings.
Definition: strings.h:623
Structure for variables, used for configurations and for channel variables.
struct ast_variable * next
const char * args
#define RAII_VAR(vartype, varname, initval, dtor)
Declare a variable that will call a destructor function when it goes out of scope.
Definition: utils.h:941