Merge branch 'mob' of git+ssh://localhost/srv/git/siplcs into mob
[siplcs.git] / src / core / sipe.h
blob730437bc465702633d9595f4cad62923e380e71d
1 /**
2 * @file sipe.h
4 * pidgin-sipe
6 * Copyright (C) 2008 Novell, Inc.
7 * Copyright (C) 2007 Anibal Avelar <avelar@gmail.com>
8 * Copyright (C) 2005 Thomas Butter <butter@uni-mannheim.de>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #ifndef _PIDGIN_SIPE_H
26 #define _PIDGIN_SIPE_H
28 #include <glib.h>
29 #include <time.h>
31 #ifdef _WIN32
32 #include "internal.h"
33 #endif
35 #include "cipher.h"
36 #include "circbuffer.h"
37 #include "dnsquery.h"
38 #include "dnssrv.h"
39 #include "network.h"
40 #include "proxy.h"
41 #include "prpl.h"
42 #include "sslconn.h"
44 #include "sipmsg.h"
45 #include "sip-sec.h"
46 #include "uuid.h"
48 #define SIPE_UNUSED_PARAMETER __attribute__((unused))
50 #define SIMPLE_BUF_INC 4096
52 #define SIPE_TYPING_RECV_TIMEOUT 6
53 #define SIPE_TYPING_SEND_TIMEOUT 4
56 /** Activity (token and description) 2007 */
57 typedef enum
59 SIPE_ACTIVITY_UNSET = 0,
60 SIPE_ACTIVITY_ONLINE,
61 SIPE_ACTIVITY_INACTIVE,
62 SIPE_ACTIVITY_BUSY,
63 SIPE_ACTIVITY_BUSYIDLE,
64 SIPE_ACTIVITY_DND,
65 SIPE_ACTIVITY_BRB,
66 SIPE_ACTIVITY_AWAY,
67 SIPE_ACTIVITY_LUNCH,
68 SIPE_ACTIVITY_OFFLINE,
69 SIPE_ACTIVITY_ON_PHONE,
70 SIPE_ACTIVITY_IN_CONF,
71 SIPE_ACTIVITY_IN_MEETING,
72 SIPE_ACTIVITY_OOF,
73 SIPE_ACTIVITY_URGENT_ONLY,
74 SIPE_ACTIVITY_NUM_TYPES
75 } sipe_activity;
77 struct sipe_buddy {
78 gchar *name;
79 gchar *activity;
80 gchar *meeting_subject;
81 gchar *meeting_location;
82 /* Sipe internal format for Note is HTML.
83 * All incoming plain text should be html-escaped
84 * for example by g_markup_escape_text()
86 gchar *note;
87 gboolean is_oof_note;
88 time_t note_since;
90 /* Calendar related fields */
91 gchar *cal_start_time;
92 int cal_granularity;
93 gchar *cal_free_busy_base64;
94 gchar *cal_free_busy;
95 time_t cal_free_busy_published;
96 /* for 2005 systems */
97 int user_avail;
98 time_t user_avail_since;
99 time_t activity_since;
100 const char *last_non_cal_status_id;
101 gchar *last_non_cal_activity;
103 struct sipe_cal_working_hours *cal_working_hours;
105 gchar *device_name;
106 GSList *groups;
107 /** flag to control sending 'context' element in 2007 subscriptions */
108 gboolean just_added;
111 struct sip_auth {
112 SipSecAuthType type;
113 SipSecContext gssapi_context;
114 gchar *gssapi_data;
115 gchar *opaque;
116 gchar *realm;
117 gchar *target;
118 int nc;
119 int retries;
120 int ntlm_num;
121 int expires;
124 typedef enum {
125 SIPE_TRANSPORT_TLS,
126 SIPE_TRANSPORT_TCP,
127 SIPE_TRANSPORT_UDP,
128 } sipe_transport_type;
130 struct sipe_service_data {
131 const char *service;
132 const char *transport;
133 sipe_transport_type type;
136 /** MS-PRES publication */
137 struct sipe_publication {
138 gchar *category;
139 guint instance;
140 guint container;
141 guint version;
142 /** for 'state' category */
143 int availability;
144 /** for 'state:calendarState' category */
145 char *cal_event_hash;
146 /** for 'note' category */
147 gchar *note;
148 /** for 'calendarData' category; 300(Team) container */
149 char *working_hours_xml_str;
150 char *fb_start_str;
151 char *free_busy_base64;
154 /** MS-PRES container */
155 struct sipe_container {
156 guint id;
157 guint version;
158 GSList *members;
160 /** MS-PRES container member */
161 struct sipe_container_member {
162 /** user, domain, sameEnterprise, federated, publicCloud; everyone */
163 const gchar *type;
164 const gchar *value;
167 struct sipe_account_data {
168 PurpleConnection *gc;
169 gchar *sipdomain;
170 gchar *username;
171 gchar *authdomain;
172 gchar *authuser;
173 gchar *password;
174 gchar *epid;
175 gchar *focus_factory_uri;
176 /** Allowed server events to subscribe. From register OK response. */
177 GSList *allow_events;
178 PurpleDnsQueryData *query_data;
179 PurpleSrvQueryData *srv_query_data;
180 const struct sipe_service_data *service_data;
181 PurpleNetworkListenData *listen_data;
182 int fd;
183 int cseq;
184 time_t last_keepalive;
185 int registerstatus; /* 0 nothing, 1 first registration send, 2 auth received, 3 registered */
186 struct sip_auth registrar;
187 struct sip_auth proxy;
188 struct sip_csta *csta; /* For RCC - Remote Call Control */
189 gboolean reregister_set; /* whether reregister timer set */
190 gboolean reauthenticate_set; /* whether reauthenticate timer set */
191 gboolean subscribed; /* whether subscribed to events, except buddies presence */
192 gboolean subscribed_buddies; /* whether subscribed to buddies presence */
193 gboolean access_level_set; /* whether basic access level set */
194 gboolean initial_state_published; /* whether we published our initial state */
195 GSList *our_publication_keys; /* [MS-PRES] */
196 GHashTable *our_publications; /* [MS-PRES] */
197 GHashTable *user_state_publications; /* [MS-PRES] */
198 GHashTable *subscriptions;
199 int listenfd;
200 int listenport;
201 int listenpa;
202 int contacts_delta;
203 int acl_delta;
204 int presence_method_version;
205 time_t do_not_publish[SIPE_ACTIVITY_NUM_TYPES];
206 gchar *status;
207 gboolean is_oof_note;
208 gchar *note;
209 time_t note_since;
210 time_t idle_switch;
211 gchar *contact;
212 gchar *server_version;
213 gboolean ocs2007; /*if there is support for batched category subscription [SIP-PRES]*/
214 gboolean batched_support; /*if there is support for batched subscription*/
215 GSList *containers; /* MS-PRES containers */
216 GHashTable *buddies;
217 guint resendtimeout;
218 guint keepalive_timeout;
219 GSList *timeouts;
220 gboolean connecting;
221 PurpleAccount *account;
222 PurpleCircBuffer *txbuf;
223 guint tx_handler;
224 gchar *regcallid;
225 GSList *transactions;
226 GSList *sessions;
227 GSList *openconns;
228 GSList *groups;
229 GHashTable *filetransfers;
230 sipe_transport_type transport;
231 gboolean auto_transport;
232 PurpleSslConnection *gsc;
233 struct sockaddr *serveraddr;
234 gchar *realhostname;
235 int realport; /* port and hostname from SRV record */
236 gboolean processing_input;
237 struct sipe_ews *ews;
238 gchar *email;
239 /** 2005 Custom XML piece.
240 * Possibly set by other point of presence or just other client at earlier time.
241 * It should be preserved/modified, not overwritten. This implies subscription
242 * to self-contasct.
243 * This XML keeps OC2005:
244 * - User note
245 * - OOF flag
246 * - User status
248 xmlnode *user_info;
251 struct sip_connection {
252 int fd;
253 gchar *inbuf;
254 int inbuflen;
255 int inbufused;
256 int inputhandler;
259 struct sipe_auth_job {
260 gchar * who;
261 struct sipe_account_data * sip;
264 struct transaction;
266 typedef gboolean (*TransCallback) (struct sipe_account_data *, struct sipmsg *, struct transaction *);
268 struct transaction_payload {
269 GDestroyNotify destroy;
270 void *data;
273 struct transaction {
274 time_t time;
275 int retries;
276 int transport; /* 0 = tcp, 1 = udp */
277 int fd;
278 /** Not yet perfect, but surely better then plain CSeq
279 * Format is: <Call-ID><CSeq>
280 * (RFC3261 17.2.3 for matching server transactions: Request-URI, To tag, From tag, Call-ID, CSeq, and top Via)
282 gchar *key;
283 struct sipmsg *msg;
284 TransCallback callback;
285 struct transaction_payload *payload;
288 typedef void (*Action) (struct sipe_account_data *, void *);
291 * Do schedule action for execution in the future.
292 * Non repetitive execution.
294 * @param name of action (will be copied)
295 * @param timeout in seconds
296 * @param action callback function
297 * @param destroy payload destroy function
298 * @param sip
299 * @param payload callback data (can be NULL, otherwise caller must allocate memory)
301 void
302 sipe_schedule_action(const gchar *name,
303 int timeout,
304 Action action,
305 GDestroyNotify destroy,
306 struct sipe_account_data *sip,
307 void *payload);
309 struct sipe_group {
310 gchar *name;
311 int id;
312 PurpleGroup *purple_group;
315 struct group_user_context {
316 gchar * group_name;
317 gchar * user_name;
320 GSList * slist_insert_unique_sorted(GSList *list, gpointer data, GCompareFunc func);
322 GList *sipe_actions(PurplePlugin *plugin, gpointer context);
324 gboolean purple_init_plugin(PurplePlugin *plugin);
327 * Publishes self status
328 * based on own calendar information,
329 * our Calendar information - FreeBusy, WorkingHours,
330 * OOF note.
332 * For 2007+
334 void
335 publish_calendar_status_self(struct sipe_account_data *sip);
338 * For 2005-
340 void
341 send_presence_soap(struct sipe_account_data *sip,
342 gboolean do_publish_calendar);
345 * THE BIG SPLIT - temporary interfaces
347 * Previously private functions in sipe.c that are
348 * - waiting to be factored out to an appropriate module
349 * - are needed by the already created new modules
352 /* pier11:
354 * Since SIP (RFC3261) is extensible by its design,
355 * and MS specs prove just that (they all are defined as SIP extensions),
356 * it make sense to split functionality by extension (or close extension group).
357 * For example: conference, presence (MS-PRES), etc.
359 * This way our code will not be monolithic, but potentially _reusable_. May be
360 * a top of other SIP core, and/or other front-end (Telepathy framework?).
362 /* Forward declarations */
363 struct sip_session;
364 struct sip_dialog;
366 /* SIP send module? */
367 struct transaction *
368 send_sip_request(PurpleConnection *gc, const gchar *method,
369 const gchar *url, const gchar *to, const gchar *addheaders,
370 const gchar *body, struct sip_dialog *dialog, TransCallback tc);
371 void
372 send_sip_response(PurpleConnection *gc, struct sipmsg *msg, int code,
373 const char *text, const char *body);
374 void
375 sipe_invite(struct sipe_account_data *sip, struct sip_session *session,
376 const gchar *who, const gchar *msg_body, const gchar *msg_content_type,
377 const gchar *referred_by, const gboolean is_triggered);
378 /* ??? module */
379 gboolean process_subscribe_response(struct sipe_account_data *sip,
380 struct sipmsg *msg,
381 struct transaction *tc);
382 /* Chat module */
383 void
384 sipe_invite_to_chat(struct sipe_account_data *sip,
385 struct sip_session *session,
386 const gchar *who);
387 /* Session module? */
388 void
389 sipe_present_message_undelivered_err(struct sipe_account_data *sip,
390 struct sip_session *session,
391 int sip_error,
392 const gchar *who,
393 const gchar *message);
395 void
396 sipe_present_info(struct sipe_account_data *sip,
397 struct sip_session *session,
398 const gchar *message);
401 void
402 sipe_process_pending_invite_queue(struct sipe_account_data *sip,
403 struct sip_session *session);
405 void
406 sipe_im_process_queue (struct sipe_account_data * sip, struct sip_session * session);
409 /*** THE BIG SPLIT END ***/
411 #define SIPE_INVITE_TEXT "ms-text-format: %s; charset=UTF-8%s;ms-body=%s\r\n"
413 #define SIPE_SEND_TYPING \
414 "<?xml version=\"1.0\"?>"\
415 "<KeyboardActivity>"\
416 "<status status=\"type\" />"\
417 "</KeyboardActivity>"
420 * Publishes categories.
421 * @param uri (%s) Self URI. Ex.: sip:alice7@boston.local
422 * @param publications (%s) XML publications
424 #define SIPE_SEND_PRESENCE \
425 "<publish xmlns=\"http://schemas.microsoft.com/2006/09/sip/rich-presence\">"\
426 "<publications uri=\"%s\">"\
427 "%s"\
428 "</publications>"\
429 "</publish>"
432 * Publishes 'device' category.
433 * @param instance (%u) Ex.: 1938468728
434 * @param version (%u) Ex.: 1
435 * @param endpointId (%s) Ex.: C707E38E-1E10-5413-94D9-ECAC260A0269
436 * @param uri (%s) Self URI. Ex.: sip:alice7@boston.local
437 * @param timezone (%s) Ex.: 00:00:00+01:00
438 * @param machineName (%s) Ex.: BOSTON-OCS07
440 #define SIPE_PUB_XML_DEVICE \
441 "<publication categoryName=\"device\" instance=\"%u\" container=\"2\" version=\"%u\" expireType=\"endpoint\">"\
442 "<device xmlns=\"http://schemas.microsoft.com/2006/09/sip/device\" endpointId=\"%s\">"\
443 "<capabilities preferred=\"false\" uri=\"%s\">"\
444 "<text capture=\"true\" render=\"true\" publish=\"false\"/>"\
445 "<gifInk capture=\"false\" render=\"true\" publish=\"false\"/>"\
446 "<isfInk capture=\"false\" render=\"true\" publish=\"false\"/>"\
447 "</capabilities>"\
448 "<timezone>%s</timezone>"\
449 "<machineName>%s</machineName>"\
450 "</device>"\
451 "</publication>"
454 * Publishes 'machineState' category.
455 * @param instance (%u) Ex.: 926460663
456 * @param version (%u) Ex.: 22
457 * @param availability (%d) Ex.: 3500
458 * @param instance (%u) Ex.: 926460663
459 * @param version (%u) Ex.: 22
460 * @param availability (%d) Ex.: 3500
462 #define SIPE_PUB_XML_STATE_MACHINE \
463 "<publication categoryName=\"state\" instance=\"%u\" container=\"2\" version=\"%u\" expireType=\"endpoint\">"\
464 "<state xmlns=\"http://schemas.microsoft.com/2006/09/sip/state\" manual=\"false\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:type=\"machineState\">"\
465 "<availability>%d</availability>"\
466 "<endpointLocation/>"\
467 "</state>"\
468 "</publication>"\
469 "<publication categoryName=\"state\" instance=\"%u\" container=\"3\" version=\"%u\" expireType=\"endpoint\">"\
470 "<state xmlns=\"http://schemas.microsoft.com/2006/09/sip/state\" manual=\"false\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:type=\"machineState\">"\
471 "<availability>%d</availability>"\
472 "<endpointLocation/>"\
473 "</state>"\
474 "</publication>"
477 * Publishes 'userState' category.
478 * @param instance (%u) User. Ex.: 536870912
479 * @param version (%u) User Container 2. Ex.: 22
480 * @param availability (%d) User Container 2. Ex.: 15500
481 * @param instance (%u) User. Ex.: 536870912
482 * @param version (%u) User Container 3.Ex.: 22
483 * @param availability (%d) User Container 3. Ex.: 15500
485 #define SIPE_PUB_XML_STATE_USER \
486 "<publication categoryName=\"state\" instance=\"%u\" container=\"2\" version=\"%u\" expireType=\"static\">"\
487 "<state xmlns=\"http://schemas.microsoft.com/2006/09/sip/state\" manual=\"true\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:type=\"userState\">"\
488 "<availability>%d</availability>"\
489 "<endpointLocation/>"\
490 "</state>"\
491 "</publication>"\
492 "<publication categoryName=\"state\" instance=\"%u\" container=\"3\" version=\"%u\" expireType=\"static\">"\
493 "<state xmlns=\"http://schemas.microsoft.com/2006/09/sip/state\" manual=\"true\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:type=\"userState\">"\
494 "<availability>%d</availability>"\
495 "<endpointLocation/>"\
496 "</state>"\
497 "</publication>"
500 * An availability XML entry for SIPE_PUB_XML_STATE_CALENDAR
501 * @param availability (%d) Ex.: 6500
503 #define SIPE_PUB_XML_STATE_CALENDAR_AVAIL \
504 "<availability>%d</availability>"
506 * An activity XML entry for SIPE_PUB_XML_STATE_CALENDAR
507 * @param token (%s) Ex.: in-a-meeting
508 * @param minAvailability_attr (%s) Ex.: minAvailability="6500"
509 * @param maxAvailability_attr (%s) Ex.: maxAvailability="8999" or none
511 #define SIPE_PUB_XML_STATE_CALENDAR_ACTIVITY \
512 "<activity token=\"%s\" %s %s></activity>"
514 * Publishes 'calendarState' category.
515 * @param instance (%u) Ex.: 1339299275
516 * @param version (%u) Ex.: 1
517 * @param uri (%s) Ex.: john@contoso.com
518 * @param start_time_str (%s) Ex.: 2008-01-11T19:00:00Z
519 * @param availability (%s) XML string as SIPE_PUB_XML_STATE_CALENDAR_AVAIL
520 * @param activity (%s) XML string as SIPE_PUB_XML_STATE_CALENDAR_ACTIVITY
521 * @param meeting_subject (%s) Ex.: Customer Meeting
522 * @param meeting_location (%s) Ex.: Conf Room 100
524 * @param instance (%u) Ex.: 1339299275
525 * @param version (%u) Ex.: 1
526 * @param uri (%s) Ex.: john@contoso.com
527 * @param start_time_str (%s) Ex.: 2008-01-11T19:00:00Z
528 * @param availability (%s) XML string as SIPE_PUB_XML_STATE_CALENDAR_AVAIL
529 * @param activity (%s) XML string as SIPE_PUB_XML_STATE_CALENDAR_ACTIVITY
530 * @param meeting_subject (%s) Ex.: Customer Meeting
531 * @param meeting_location (%s) Ex.: Conf Room 100
533 #define SIPE_PUB_XML_STATE_CALENDAR \
534 "<publication categoryName=\"state\" instance=\"%u\" container=\"2\" version=\"%u\" expireType=\"endpoint\">"\
535 "<state xmlns=\"http://schemas.microsoft.com/2006/09/sip/state\" manual=\"false\" uri=\"%s\" startTime=\"%s\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:type=\"calendarState\">"\
536 "%s"\
537 "%s"\
538 "<endpointLocation/>"\
539 "<meetingSubject>%s</meetingSubject>"\
540 "<meetingLocation>%s</meetingLocation>"\
541 "</state>"\
542 "</publication>"\
543 "<publication categoryName=\"state\" instance=\"%u\" container=\"3\" version=\"%u\" expireType=\"endpoint\">"\
544 "<state xmlns=\"http://schemas.microsoft.com/2006/09/sip/state\" manual=\"false\" uri=\"%s\" startTime=\"%s\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:type=\"calendarState\">"\
545 "%s"\
546 "%s"\
547 "<endpointLocation/>"\
548 "<meetingSubject>%s</meetingSubject>"\
549 "<meetingLocation>%s</meetingLocation>"\
550 "</state>"\
551 "</publication>"
554 * Publishes to clear 'calendarState' category
555 * @param instance (%u) Ex.: 1251210982
556 * @param version (%u) Ex.: 1
558 #define SIPE_PUB_XML_STATE_CALENDAR_CLEAR \
559 "<publication categoryName=\"state\" instance=\"%u\" container=\"2\" version=\"%u\" expireType=\"endpoint\" expires=\"0\"/>"\
560 "<publication categoryName=\"state\" instance=\"%u\" container=\"3\" version=\"%u\" expireType=\"endpoint\" expires=\"0\"/>"
563 * Publishes to clear any category
564 * @param category_name (%s) Ex.: state
565 * @param instance (%u) Ex.: 536870912
566 * @param container (%u) Ex.: 3
567 * @param version (%u) Ex.: 1
568 * @param expireType (%s) Ex.: static
570 #define SIPE_PUB_XML_PUBLICATION_CLEAR \
571 "<publication categoryName=\"%s\" instance=\"%u\" container=\"%u\" version=\"%u\" expireType=\"%s\" expires=\"0\"/>"
574 * Publishes 'note' category.
575 * @param instance (%u) Ex.: 2135971629; 0 for personal
576 * @param container (%u) Ex.: 200
577 * @param version (%u) Ex.: 2
578 * @param type (%s) Ex.: personal or OOF
579 * @param startTime_attr (%s) Ex.: startTime="2008-01-11T19:00:00Z"
580 * @param endTime_attr (%s) Ex.: endTime="2008-01-15T19:00:00Z"
581 * @param body (%s) Ex.: In the office
583 #define SIPE_PUB_XML_NOTE \
584 "<publication categoryName=\"note\" instance=\"%u\" container=\"%u\" version=\"%d\" expireType=\"static\">"\
585 "<note xmlns=\"http://schemas.microsoft.com/2006/09/sip/note\">"\
586 "<body type=\"%s\" uri=\"\"%s%s>%s</body>"\
587 "</note>"\
588 "</publication>"
591 * Publishes 'calendarData' category's WorkingHours.
593 * @param version (%u) Ex.: 1
594 * @param email (%s) Ex.: alice@cosmo.local
595 * @param working_hours_xml_str (%s) Ex.: <WorkingHours xmlns=.....
597 * @param version (%u)
599 * @param version (%u)
600 * @param email (%s)
601 * @param working_hours_xml_str (%s)
603 * @param version (%u)
604 * @param email (%s)
605 * @param working_hours_xml_str (%s)
607 * @param version (%u)
608 * @param email (%s)
609 * @param working_hours_xml_str (%s)
611 * @param version (%u)
613 #define SIPE_PUB_XML_WORKING_HOURS \
614 "<publication categoryName=\"calendarData\" instance=\"0\" container=\"1\" version=\"%d\" expireType=\"static\">"\
615 "<calendarData xmlns=\"http://schemas.microsoft.com/2006/09/sip/calendarData\" mailboxID=\"%s\">%s"\
616 "</calendarData>"\
617 "</publication>"\
618 "<publication categoryName=\"calendarData\" instance=\"0\" container=\"100\" version=\"%d\" expireType=\"static\">"\
619 "<calendarData xmlns=\"http://schemas.microsoft.com/2006/09/sip/calendarData\"/>"\
620 "</publication>"\
621 "<publication categoryName=\"calendarData\" instance=\"0\" container=\"200\" version=\"%d\" expireType=\"static\">"\
622 "<calendarData xmlns=\"http://schemas.microsoft.com/2006/09/sip/calendarData\" mailboxID=\"%s\">%s"\
623 "</calendarData>"\
624 "</publication>"\
625 "<publication categoryName=\"calendarData\" instance=\"0\" container=\"300\" version=\"%d\" expireType=\"static\">"\
626 "<calendarData xmlns=\"http://schemas.microsoft.com/2006/09/sip/calendarData\" mailboxID=\"%s\">%s"\
627 "</calendarData>"\
628 "</publication>"\
629 "<publication categoryName=\"calendarData\" instance=\"0\" container=\"400\" version=\"%d\" expireType=\"static\">"\
630 "<calendarData xmlns=\"http://schemas.microsoft.com/2006/09/sip/calendarData\" mailboxID=\"%s\">%s"\
631 "</calendarData>"\
632 "</publication>"\
633 "<publication categoryName=\"calendarData\" instance=\"0\" container=\"32000\" version=\"%d\" expireType=\"static\">"\
634 "<calendarData xmlns=\"http://schemas.microsoft.com/2006/09/sip/calendarData\"/>"\
635 "</publication>"
638 * Publishes 'calendarData' category's FreeBusy.
640 * @param instance (%u) Ex.: 1300372959
641 * @param version (%u) Ex.: 1
643 * @param instance (%u) Ex.: 1300372959
644 * @param version (%u) Ex.: 1
646 * @param instance (%u) Ex.: 1300372959
647 * @param version (%u) Ex.: 1
648 * @param email (%s) Ex.: alice@cosmo.local
649 * @param fb_start_time_str (%s) Ex.: 2009-12-03T00:00:00Z
650 * @param free_busy_base64 (%s) Ex.: AAAAAAAAAAAAAAAAAAAAA.....
652 * @param instance (%u) Ex.: 1300372959
653 * @param version (%u) Ex.: 1
654 * @param email (%s) Ex.: alice@cosmo.local
655 * @param fb_start_time_str (%s) Ex.: 2009-12-03T00:00:00Z
656 * @param free_busy_base64 (%s) Ex.: AAAAAAAAAAAAAAAAAAAAA.....
658 * @param instance (%u) Ex.: 1300372959
659 * @param version (%u) Ex.: 1
660 * @param email (%s) Ex.: alice@cosmo.local
661 * @param fb_start_time_str (%s) Ex.: 2009-12-03T00:00:00Z
662 * @param free_busy_base64 (%s) Ex.: AAAAAAAAAAAAAAAAAAAAA.....
664 * @param instance (%u) Ex.: 1300372959
665 * @param version (%u) Ex.: 1
667 #define SIPE_PUB_XML_FREE_BUSY \
668 "<publication categoryName=\"calendarData\" instance=\"%u\" container=\"1\" version=\"%d\" expireType=\"endpoint\">"\
669 "<calendarData xmlns=\"http://schemas.microsoft.com/2006/09/sip/calendarData\"/>"\
670 "</publication>"\
671 "<publication categoryName=\"calendarData\" instance=\"%u\" container=\"100\" version=\"%d\" expireType=\"endpoint\">"\
672 "<calendarData xmlns=\"http://schemas.microsoft.com/2006/09/sip/calendarData\"/>"\
673 "</publication>"\
674 "<publication categoryName=\"calendarData\" instance=\"%u\" container=\"200\" version=\"%d\" expireType=\"endpoint\">"\
675 "<calendarData xmlns=\"http://schemas.microsoft.com/2006/09/sip/calendarData\" mailboxID=\"%s\">"\
676 "<freeBusy startTime=\"%s\" granularity=\"PT15M\" encodingVersion=\"1\">%s</freeBusy>"\
677 "</calendarData>"\
678 "</publication>"\
679 "<publication categoryName=\"calendarData\" instance=\"%u\" container=\"300\" version=\"%d\" expireType=\"endpoint\">"\
680 "<calendarData xmlns=\"http://schemas.microsoft.com/2006/09/sip/calendarData\" mailboxID=\"%s\">"\
681 "<freeBusy startTime=\"%s\" granularity=\"PT15M\" encodingVersion=\"1\">%s</freeBusy>"\
682 "</calendarData>"\
683 "</publication>"\
684 "<publication categoryName=\"calendarData\" instance=\"%u\" container=\"400\" version=\"%d\" expireType=\"endpoint\">"\
685 "<calendarData xmlns=\"http://schemas.microsoft.com/2006/09/sip/calendarData\" mailboxID=\"%s\">"\
686 "<freeBusy startTime=\"%s\" granularity=\"PT15M\" encodingVersion=\"1\">%s</freeBusy>"\
687 "</calendarData>"\
688 "</publication>"\
689 "<publication categoryName=\"calendarData\" instance=\"%u\" container=\"32000\" version=\"%d\" expireType=\"endpoint\">"\
690 "<calendarData xmlns=\"http://schemas.microsoft.com/2006/09/sip/calendarData\"/>"\
691 "</publication>"
694 #define sipe_soap(method, body) \
695 "<SOAP-ENV:Envelope xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\">" \
696 "<SOAP-ENV:Body>" \
697 "<m:" method " xmlns:m=\"http://schemas.microsoft.com/winrtc/2002/11/sip\">" \
698 body \
699 "</m:" method ">" \
700 "</SOAP-ENV:Body>" \
701 "</SOAP-ENV:Envelope>"
703 #define SIPE_SOAP_SET_CONTACT sipe_soap("setContact", \
704 "<m:displayName>%s</m:displayName>"\
705 "<m:groups>%s</m:groups>"\
706 "<m:subscribed>%s</m:subscribed>"\
707 "<m:URI>%s</m:URI>"\
708 "<m:externalURI />"\
709 "<m:deltaNum>%d</m:deltaNum>")
711 #define SIPE_SOAP_DEL_CONTACT sipe_soap("deleteContact", \
712 "<m:URI>%s</m:URI>"\
713 "<m:deltaNum>%d</m:deltaNum>")
715 #define SIPE_SOAP_ADD_GROUP sipe_soap("addGroup", \
716 "<m:name>%s</m:name>"\
717 "<m:externalURI />"\
718 "<m:deltaNum>%d</m:deltaNum>")
720 #define SIPE_SOAP_MOD_GROUP sipe_soap("modifyGroup", \
721 "<m:groupID>%d</m:groupID>"\
722 "<m:name>%s</m:name>"\
723 "<m:externalURI />"\
724 "<m:deltaNum>%d</m:deltaNum>")
726 #define SIPE_SOAP_DEL_GROUP sipe_soap("deleteGroup", \
727 "<m:groupID>%d</m:groupID>"\
728 "<m:deltaNum>%d</m:deltaNum>")
730 // first/mask arg is sip:user@domain.com
731 // second/rights arg is AA for allow, BD for deny
732 #define SIPE_SOAP_ALLOW_DENY sipe_soap("setACE", \
733 "<m:type>USER</m:type>"\
734 "<m:mask>%s</m:mask>"\
735 "<m:rights>%s</m:rights>"\
736 "<m:deltaNum>%d</m:deltaNum>")
739 * Calendar publication entry. 2005 systems.
741 * @param legacy_dn (%s) Ex.: /o=EXCHANGE/ou=BTUK02/cn=Recipients/cn=AHHBTT
742 * @param fb_start_time_str (%s) Ex.: 2009-12-06T17:15:00Z
743 * @param free_busy_base64 (%s) Ex.: AAAAAAAAAAAAAAAAA......
745 #define SIPE_SOAP_SET_PRESENCE_CALENDAR \
746 "<calendarInfo xmlns=\"http://schemas.microsoft.com/2002/09/sip/presence\" mailboxId=\"%s\" startTime=\"%s\" granularity=\"PT15M\">%s</calendarInfo>"
748 * Note publication entry. 2005 systems.
750 * @param note (%s) Ex.: Working from home
752 #define SIPE_SOAP_SET_PRESENCE_NOTE_XML "<note>%s</note>"
754 * Note's OOF publication entry. 2005 systems.
756 #define SIPE_SOAP_SET_PRESENCE_OOF_XML "<oof></oof>"
758 * States publication entry for User State. 2005 systems.
760 * @param avail (%d) Availability 2007-style. Ex.: 9500
761 * @param since_time_str (%s) Ex.: 2010-01-13T10:30:05Z
762 * @param device_id (%s) epid. Ex.: 4c77e6ec72
763 * @param activity_token (%s) Ex.: do-not-disturb
765 #define SIPE_SOAP_SET_PRESENCE_STATES \
766 "<states>"\
767 "<state avail=\"%d\" since=\"%s\" validWith=\"any-device\" deviceId=\"%s\" set=\"manual\" xsi:type=\"userState\">%s</state>"\
768 "</states>"
770 * Presentity publication entry. 2005 systems.
772 * @param uri (%s) SIP URI without 'sip:' prefix. Ex.: fox@atlanta.local
773 * @param aggr_availability (%d) Ex.: 300
774 * @param aggr_activity (%d) Ex.: 600
775 * @param host_name (%s) Uppercased. Ex.: ATLANTA
776 * @param note_xml_str (%s) XML string as SIPE_SOAP_SET_PRESENCE_NOTE_XML
777 * @param oof_xml_str (%s) XML string as SIPE_SOAP_SET_PRESENCE_OOF_XML
778 * @param states_xml_str (%s) XML string as SIPE_SOAP_SET_PRESENCE_STATES
779 * @param calendar_info_xml_str (%s) XML string as SIPE_SOAP_SET_PRESENCE_CALENDAR
780 * @param device_id (%s) epid. Ex.: 4c77e6ec72
781 * @param since_time_str (%s) Ex.: 2010-01-13T10:30:05Z
782 * @param since_time_str (%s) Ex.: 2010-01-13T10:30:05Z
783 * @param user_input (%s) active, idle
785 #define SIPE_SOAP_SET_PRESENCE sipe_soap("setPresence", \
786 "<m:presentity xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" m:uri=\"sip:%s\">"\
787 "<m:availability m:aggregate=\"%d\"/>"\
788 "<m:activity m:aggregate=\"%d\"/>"\
789 "<deviceName xmlns=\"http://schemas.microsoft.com/2002/09/sip/presence\" name=\"%s\"/>"\
790 "<rtc:devicedata xmlns:rtc=\"http://schemas.microsoft.com/winrtc/2002/11/sip\" namespace=\"rtcService\">"\
791 "<![CDATA[<caps><renders_gif/><renders_isf/></caps>]]></rtc:devicedata>"\
792 "<userInfo xmlns=\"http://schemas.microsoft.com/2002/09/sip/presence\">"\
793 "%s%s" \
794 "%s" \
795 "</userInfo>"\
796 "%s" \
797 "<device xmlns=\"http://schemas.microsoft.com/2002/09/sip/presence\" deviceId=\"%s\" since=\"%s\" >"\
798 "<userInput since=\"%s\" >%s</userInput>"\
799 "</device>"\
800 "</m:presentity>")
802 #define SIPE_SOAP_SEARCH_CONTACT \
803 "<SOAP-ENV:Envelope xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\">" \
804 "<SOAP-ENV:Body>" \
805 "<m:directorySearch xmlns:m=\"http://schemas.microsoft.com/winrtc/2002/11/sip\">" \
806 "<m:filter m:href=\"#searchArray\"/>"\
807 "<m:maxResults>%d</m:maxResults>"\
808 "</m:directorySearch>"\
809 "<m:Array xmlns:m=\"http://schemas.microsoft.com/winrtc/2002/11/sip\" m:id=\"searchArray\">"\
810 "%s"\
811 "</m:Array>"\
812 "</SOAP-ENV:Body>"\
813 "</SOAP-ENV:Envelope>"
815 #define SIPE_SOAP_SEARCH_ROW "<m:row m:attrib=\"%s\" m:value=\"%s\"/>"
817 #endif /* _PIDGIN_SIPE_H */