6 * Copyright (C) 2011-2016 SIPE Project <http://sipe.sourceforge.net/>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * SOAP requests over SIP SERVICE messages
26 * Specification references:
28 * - [MS-SIP]: http://msdn.microsoft.com/en-us/library/cc246115.aspx
29 * - [MS-PRES]: http://msdn.microsoft.com/en-us/library/cc431501.aspx
36 #include "sip-transport.h"
37 #include "sipe-backend.h"
38 #include "sipe-core.h"
39 #include "sipe-core-private.h"
40 #include "sipe-utils.h"
42 void sip_soap_raw_request_cb(struct sipe_core_private
*sipe_private
,
45 SoapTransCallback callback
,
46 struct transaction_payload
*payload
)
48 gchar
*contact
= get_contact(sipe_private
);
49 gchar
*hdr
= g_strdup_printf("Contact: %s\r\n"
50 "Content-Type: application/SOAP+xml\r\n",
53 struct transaction
*trans
= sip_transport_service(sipe_private
,
59 trans
->payload
= payload
;
60 /* SIP transport is no longer valid - give up */
63 (payload
->destroy
)(payload
->data
);
72 * delta_num != NULL: use user sip: URI as from, include deltanum and increment it
73 * delta_num == NULL; use sip: URI generated from domain name as from
75 static void sip_soap_request_full(struct sipe_core_private
*sipe_private
,
78 const gchar
*additional
,
80 SoapTransCallback callback
,
81 struct transaction_payload
*payload
)
83 gchar
*from
= deltanum
?
84 sip_uri_self(sipe_private
) :
85 sip_uri_from_name(sipe_private
->public.sip_domain
);
86 gchar
*delta
= deltanum
?
87 g_strdup_printf("<m:deltaNum>%d</m:deltaNum>", (*deltanum
)++) :
89 gchar
*soap
= g_strdup_printf("<s:Envelope"
90 " xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\""
91 " xmlns:m=\"http://schemas.microsoft.com/winrtc/2002/11/sip\""
105 additional
? additional
: "");
106 sip_soap_raw_request_cb(sipe_private
, from
, soap
, callback
, payload
);
112 void sip_soap_request_cb(struct sipe_core_private
*sipe_private
,
114 const gchar
*request
,
115 SoapTransCallback callback
,
116 struct transaction_payload
*payload
)
118 sip_soap_request_full(sipe_private
,
122 &sipe_private
->deltanum_contacts
,
127 void sip_soap_request(struct sipe_core_private
*sipe_private
,
129 const gchar
*request
)
131 sip_soap_request_cb(sipe_private
,
138 /* This is the only user of deltanum_acl */
139 void sip_soap_ocs2005_setacl(struct sipe_core_private
*sipe_private
,
143 gchar
*request
= g_strdup_printf("<m:type>USER</m:type>"
144 "<m:mask>%s</m:mask>"
145 "<m:rights>%s</m:rights>",
147 allow
? "AA" : "BD");
148 sip_soap_request_full(sipe_private
,
152 &sipe_private
->deltanum_acl
,
159 * This request is special:
160 * a) it is send from domain URI and not the users
161 * b) it has XML nodes outside the [MS-PRES] method node
162 * c) doesn't use deltaNum
164 void sip_soap_directory_search(struct sipe_core_private
*sipe_private
,
167 SoapTransCallback callback
,
168 struct transaction_payload
*payload
)
170 gchar
*request
= g_strdup_printf("<m:filter m:href=\"#searchArray\"/>"
171 "<m:maxResults>%d</m:maxResults>",
173 gchar
*additional
= g_strdup_printf("<m:Array m:id=\"searchArray\">"
177 sip_soap_request_full(sipe_private
,