ms-dlx: parse contact search response
[siplcs.git] / src / core / sipe-buddy.c
blob293b5d6f67ed4b4951b05458dc768f90e579f3ea
1 /**
2 * @file sipe-buddy.c
4 * pidgin-sipe
6 * Copyright (C) 2010-11 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
27 #include <string.h>
28 #include <time.h>
30 #include <glib.h>
32 #include "sipe-common.h"
33 #include "sipmsg.h"
34 #include "sip-csta.h"
35 #include "sip-soap.h"
36 #include "sip-transport.h"
37 #include "sipe-backend.h"
38 #include "sipe-buddy.h"
39 #include "sipe-cal.h"
40 #include "sipe-chat.h"
41 #include "sipe-conf.h"
42 #include "sipe-core.h"
43 #include "sipe-core-private.h"
44 #include "sipe-group.h"
45 #include "sipe-im.h"
46 #include "sipe-nls.h"
47 #include "sipe-ocs2005.h"
48 #include "sipe-ocs2007.h"
49 #include "sipe-schedule.h"
50 #include "sipe-session.h"
51 #include "sipe-subscriptions.h"
52 #include "sipe-svc.h"
53 #include "sipe-utils.h"
54 #include "sipe-webticket.h"
55 #include "sipe-xml.h"
57 static void buddy_free(struct sipe_buddy *buddy)
59 #ifndef _WIN32
61 * We are calling g_hash_table_foreach_steal(). That means that no
62 * key/value deallocation functions are called. Therefore the glib
63 * hash code does not touch the key (buddy->name) or value (buddy)
64 * of the to-be-deleted hash node at all. It follows that we
66 * - MUST free the memory for the key ourselves and
67 * - ARE allowed to do it in this function
69 * Conclusion: glib must be broken on the Windows platform if sipe
70 * crashes with SIGTRAP when closing. You'll have to live
71 * with the memory leak until this is fixed.
73 g_free(buddy->name);
74 #endif
75 g_free(buddy->activity);
76 g_free(buddy->meeting_subject);
77 g_free(buddy->meeting_location);
78 g_free(buddy->note);
80 g_free(buddy->cal_start_time);
81 g_free(buddy->cal_free_busy_base64);
82 g_free(buddy->cal_free_busy);
83 g_free(buddy->last_non_cal_activity);
85 sipe_cal_free_working_hours(buddy->cal_working_hours);
87 g_free(buddy->device_name);
88 g_slist_free(buddy->groups);
89 g_free(buddy);
92 static gboolean buddy_free_cb(SIPE_UNUSED_PARAMETER gpointer key,
93 gpointer buddy,
94 SIPE_UNUSED_PARAMETER gpointer user_data)
96 buddy_free(buddy);
97 /* We must return TRUE as the key/value have already been deleted */
98 return(TRUE);
101 void sipe_buddy_free_all(struct sipe_core_private *sipe_private)
103 g_hash_table_foreach_steal(sipe_private->buddies,
104 buddy_free_cb,
105 NULL);
108 gchar *sipe_core_buddy_status(struct sipe_core_public *sipe_public,
109 const gchar *uri,
110 guint activity,
111 const gchar *status_text)
113 struct sipe_buddy *sbuddy;
114 const char *activity_str;
116 if (!sipe_public) return NULL; /* happens on pidgin exit */
118 sbuddy = g_hash_table_lookup(SIPE_CORE_PRIVATE->buddies, uri);
119 if (!sbuddy) return NULL;
121 activity_str = sbuddy->activity ? sbuddy->activity :
122 (activity == SIPE_ACTIVITY_BUSY) || (activity == SIPE_ACTIVITY_BRB) ?
123 status_text : NULL;
125 if (activity_str && sbuddy->note) {
126 return g_strdup_printf("%s - <i>%s</i>", activity_str, sbuddy->note);
127 } else if (activity_str) {
128 return g_strdup(activity_str);
129 } else if (sbuddy->note) {
130 return g_strdup_printf("<i>%s</i>", sbuddy->note);
131 } else {
132 return NULL;
136 gchar *sipe_buddy_get_alias(struct sipe_core_private *sipe_private,
137 const gchar *with)
139 sipe_backend_buddy pbuddy;
140 gchar *alias = NULL;
141 if ((pbuddy = sipe_backend_buddy_find(SIPE_CORE_PUBLIC, with, NULL))) {
142 alias = sipe_backend_buddy_get_alias(SIPE_CORE_PUBLIC, pbuddy);
144 return alias;
147 void sipe_core_buddy_group(struct sipe_core_public *sipe_public,
148 const gchar *who,
149 const gchar *old_group_name,
150 const gchar *new_group_name)
152 struct sipe_buddy * buddy = g_hash_table_lookup(SIPE_CORE_PRIVATE->buddies, who);
153 struct sipe_group * old_group = NULL;
154 struct sipe_group * new_group;
156 SIPE_DEBUG_INFO("sipe_core_buddy_group: who:%s old_group_name:%s new_group_name:%s",
157 who ? who : "", old_group_name ? old_group_name : "", new_group_name ? new_group_name : "");
159 if(!buddy) { // buddy not in roaming list
160 return;
163 if (old_group_name) {
164 old_group = sipe_group_find_by_name(SIPE_CORE_PRIVATE, old_group_name);
166 new_group = sipe_group_find_by_name(SIPE_CORE_PRIVATE, new_group_name);
168 if (old_group) {
169 buddy->groups = g_slist_remove(buddy->groups, old_group);
170 SIPE_DEBUG_INFO("sipe_core_buddy_group: buddy %s removed from old group %s", who, old_group_name);
173 if (!new_group) {
174 sipe_group_create(SIPE_CORE_PRIVATE, new_group_name, who);
175 } else {
176 buddy->groups = slist_insert_unique_sorted(buddy->groups, new_group, (GCompareFunc)sipe_group_compare);
177 sipe_core_group_set_user(sipe_public, who);
181 void sipe_core_buddy_add(struct sipe_core_public *sipe_public,
182 const gchar *uri,
183 const gchar *group_name)
185 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
187 if (!g_hash_table_lookup(sipe_private->buddies, uri)) {
188 struct sipe_buddy *b = g_new0(struct sipe_buddy, 1);
190 SIPE_DEBUG_INFO("sipe_core_buddy_add: %s", uri);
192 b->name = g_strdup(uri);
193 b->just_added = TRUE;
194 g_hash_table_insert(sipe_private->buddies, b->name, b);
196 /* @TODO should go to callback */
197 sipe_subscribe_presence_single(sipe_private, b->name);
199 } else {
200 SIPE_DEBUG_INFO("sipe_core_buddy_add: buddy %s already in internal list",
201 uri);
204 sipe_core_buddy_group(sipe_public,
205 uri,
206 NULL,
207 group_name);
211 * Unassociates buddy from group first.
212 * Then see if no groups left, removes buddy completely.
213 * Otherwise updates buddy groups on server.
215 void sipe_core_buddy_remove(struct sipe_core_public *sipe_public,
216 const gchar *uri,
217 const gchar *group_name)
219 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
220 struct sipe_buddy *b = g_hash_table_lookup(sipe_private->buddies,
221 uri);
223 if (!b) return;
225 if (group_name) {
226 struct sipe_group *g = sipe_group_find_by_name(sipe_private,
227 group_name);
228 if (g) {
229 b->groups = g_slist_remove(b->groups, g);
230 SIPE_DEBUG_INFO("sipe_core_buddy_remove: buddy %s removed from group %s",
231 uri, g->name);
235 if (g_slist_length(b->groups) < 1) {
236 gchar *action_name = sipe_utils_presence_key(uri);
237 sipe_schedule_cancel(sipe_private, action_name);
238 g_free(action_name);
240 g_hash_table_remove(sipe_private->buddies, uri);
242 if (b->name) {
243 gchar *request = g_strdup_printf("<m:URI>%s</m:URI>",
244 b->name);
245 sip_soap_request(sipe_private,
246 "deleteContact",
247 request);
248 g_free(request);
251 buddy_free(b);
252 } else {
253 /* updates groups on server */
254 sipe_core_group_set_user(sipe_public, b->name);
259 void sipe_core_buddy_got_status(struct sipe_core_public *sipe_public,
260 const gchar *uri,
261 const gchar *status_id)
263 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
264 struct sipe_buddy *sbuddy = g_hash_table_lookup(sipe_private->buddies,
265 uri);
267 if (!sbuddy) return;
269 /* Check if on 2005 system contact's calendar,
270 * then set/preserve it.
272 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007)) {
273 sipe_backend_buddy_set_status(sipe_public, uri, status_id);
274 } else {
275 sipe_ocs2005_apply_calendar_status(sipe_private,
276 sbuddy,
277 status_id);
281 void sipe_core_buddy_tooltip_info(struct sipe_core_public *sipe_public,
282 const gchar *uri,
283 const gchar *status_name,
284 gboolean is_online,
285 struct sipe_backend_buddy_tooltip *tooltip)
287 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
288 gchar *note = NULL;
289 gboolean is_oof_note = FALSE;
290 const gchar *activity = NULL;
291 gchar *calendar = NULL;
292 const gchar *meeting_subject = NULL;
293 const gchar *meeting_location = NULL;
294 gchar *access_text = NULL;
296 #define SIPE_ADD_BUDDY_INFO(l, t) \
298 gchar *tmp = g_markup_escape_text((t), -1); \
299 sipe_backend_buddy_tooltip_add(sipe_public, tooltip, (l), tmp); \
300 g_free(tmp); \
302 #define SIPE_ADD_BUDDY_INFO_NOESCAPE(l, t) \
303 sipe_backend_buddy_tooltip_add(sipe_public, tooltip, (l), (t))
305 if (sipe_public) { /* happens on pidgin exit */
306 struct sipe_buddy *sbuddy = g_hash_table_lookup(sipe_private->buddies, uri);
307 if (sbuddy) {
308 note = sbuddy->note;
309 is_oof_note = sbuddy->is_oof_note;
310 activity = sbuddy->activity;
311 calendar = sipe_cal_get_description(sbuddy);
312 meeting_subject = sbuddy->meeting_subject;
313 meeting_location = sbuddy->meeting_location;
315 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007)) {
316 gboolean is_group_access = FALSE;
317 const int container_id = sipe_ocs2007_find_access_level(sipe_private,
318 "user",
319 sipe_get_no_sip_uri(uri),
320 &is_group_access);
321 const char *access_level = sipe_ocs2007_access_level_name(container_id);
322 access_text = is_group_access ?
323 g_strdup(access_level) :
324 g_strdup_printf(SIPE_OCS2007_INDENT_MARKED_FMT,
325 access_level);
329 if (is_online) {
330 const gchar *status_str = activity ? activity : status_name;
332 SIPE_ADD_BUDDY_INFO(_("Status"), status_str);
334 if (is_online && !is_empty(calendar)) {
335 SIPE_ADD_BUDDY_INFO(_("Calendar"), calendar);
337 g_free(calendar);
338 if (!is_empty(meeting_location)) {
339 SIPE_DEBUG_INFO("sipe_tooltip_text: %s meeting location: '%s'", uri, meeting_location);
340 SIPE_ADD_BUDDY_INFO(_("Meeting in"), meeting_location);
342 if (!is_empty(meeting_subject)) {
343 SIPE_DEBUG_INFO("sipe_tooltip_text: %s meeting subject: '%s'", uri, meeting_subject);
344 SIPE_ADD_BUDDY_INFO(_("Meeting about"), meeting_subject);
346 if (note) {
347 SIPE_DEBUG_INFO("sipe_tooltip_text: %s note: '%s'", uri, note);
348 SIPE_ADD_BUDDY_INFO_NOESCAPE(is_oof_note ? _("Out of office note") : _("Note"),
349 g_strdup_printf("<i>%s</i>", note));
351 if (access_text) {
352 SIPE_ADD_BUDDY_INFO(_("Access level"), access_text);
353 g_free(access_text);
357 void sipe_buddy_update_property(struct sipe_core_private *sipe_private,
358 const char *uri,
359 sipe_buddy_info_fields propkey,
360 char *property_value)
362 GSList *buddies, *entry;
364 if (property_value)
365 property_value = g_strstrip(property_value);
367 entry = buddies = sipe_backend_buddy_find_all(SIPE_CORE_PUBLIC, uri, NULL); /* all buddies in different groups */
368 while (entry) {
369 gchar *prop_str;
370 gchar *server_alias;
371 gchar *alias;
372 sipe_backend_buddy p_buddy = entry->data;
374 /* for Display Name */
375 if (propkey == SIPE_BUDDY_INFO_DISPLAY_NAME) {
376 alias = sipe_backend_buddy_get_alias(SIPE_CORE_PUBLIC, p_buddy);
377 if (property_value && sipe_is_bad_alias(uri, alias)) {
378 SIPE_DEBUG_INFO("Replacing alias for %s with %s", uri, property_value);
379 sipe_backend_buddy_set_alias(SIPE_CORE_PUBLIC, p_buddy, property_value);
381 g_free(alias);
383 server_alias = sipe_backend_buddy_get_server_alias(SIPE_CORE_PUBLIC, p_buddy);
384 if (!is_empty(property_value) &&
385 (!sipe_strequal(property_value, server_alias) || is_empty(server_alias)) )
387 SIPE_DEBUG_INFO("Replacing service alias for %s with %s", uri, property_value);
388 sipe_backend_buddy_set_server_alias(SIPE_CORE_PUBLIC, p_buddy, property_value);
390 g_free(server_alias);
392 /* for other properties */
393 else {
394 if (!is_empty(property_value)) {
395 prop_str = sipe_backend_buddy_get_string(SIPE_CORE_PUBLIC, p_buddy, propkey);
396 if (!prop_str || !sipe_strcase_equal(prop_str, property_value)) {
397 sipe_backend_buddy_set_string(SIPE_CORE_PUBLIC, p_buddy, propkey, property_value);
399 g_free(prop_str);
403 entry = entry->next;
405 g_slist_free(buddies);
409 struct ms_dlx_data;
410 struct ms_dlx_data {
411 gchar *search;
412 gchar *other;
413 guint entries;
414 guint max_returns;
415 sipe_svc_callback *callback;
416 /* must call ms_dlx_free() */
417 void (*failed_callback)(struct sipe_core_private *sipe_private,
418 struct ms_dlx_data *mdd);
421 static void ms_dlx_free(struct ms_dlx_data *mdd)
423 g_free(mdd->search);
424 g_free(mdd->other);
425 g_free(mdd);
428 static void ms_dlx_webticket(struct sipe_core_private *sipe_private,
429 const gchar *base_uri,
430 const gchar *auth_uri,
431 const gchar *wsse_security,
432 gpointer callback_data)
434 struct ms_dlx_data *mdd = callback_data;
436 if (wsse_security) {
437 SIPE_DEBUG_INFO("ms_dlx_webticket: got ticket for %s",
438 base_uri);
440 if (sipe_svc_ab_entry_request(sipe_private,
441 auth_uri,
442 wsse_security,
443 mdd->search,
444 mdd->entries,
445 mdd->max_returns,
446 mdd->callback,
447 mdd)) {
448 /* callback data passed down the line */
449 mdd = NULL;
452 } else {
453 /* no ticket: this will show the minmum information */
454 SIPE_DEBUG_ERROR("ms_dlx_webticket: no web ticket for %s",
455 base_uri);
458 if (mdd)
459 mdd->failed_callback(sipe_private, mdd);
462 static void ms_dlx_webticket_request(struct sipe_core_private *sipe_private,
463 struct ms_dlx_data *mdd)
465 if (!sipe_webticket_request(sipe_private,
466 sipe_private->dlx_uri,
467 "AddressBookWebTicketBearer",
468 ms_dlx_webticket,
469 mdd)) {
470 SIPE_DEBUG_ERROR("ms_dlx_webticket_request: couldn't request webticket for %s",
471 sipe_private->dlx_uri);
472 mdd->failed_callback(sipe_private, mdd);
476 static void search_contacts_finalize(struct sipe_core_private *sipe_private,
477 struct sipe_backend_search_results *results,
478 guint match_count,
479 gboolean more)
481 gchar *secondary = g_strdup_printf(
482 dngettext(PACKAGE_NAME,
483 "Found %d contact%s:",
484 "Found %d contacts%s:", match_count),
485 match_count, more ? _(" (more matched your query)") : "");
487 sipe_backend_search_results_finalize(SIPE_CORE_PUBLIC,
488 results,
489 secondary,
490 more);
491 g_free(secondary);
494 static void search_ab_entry_response(struct sipe_core_private *sipe_private,
495 const gchar *uri,
496 SIPE_UNUSED_PARAMETER const gchar *raw,
497 sipe_xml *soap_body,
498 gpointer callback_data)
500 struct ms_dlx_data *mdd = callback_data;
502 if (soap_body) {
503 const sipe_xml *node;
504 struct sipe_backend_search_results *results;
505 GHashTable *found;
507 SIPE_DEBUG_INFO("search_ab_entry_response: received valid SOAP message from service %s",
508 uri);
510 /* any matches? */
511 node = sipe_xml_child(soap_body, "Body/SearchAbEntryResponse/SearchAbEntryResult/Items/AbEntry");
512 if (!node) {
513 SIPE_DEBUG_ERROR_NOFORMAT("search_ab_entry_response: no matches");
514 sipe_backend_notify_error(SIPE_CORE_PUBLIC,
515 _("No contacts found"),
516 NULL);
517 ms_dlx_free(mdd);
518 return;
521 /* OK, we found something - show the results to the user */
522 results = sipe_backend_search_results_start(SIPE_CORE_PUBLIC);
523 if (!results) {
524 SIPE_DEBUG_ERROR_NOFORMAT("search_ab_entry_response: Unable to display the search results.");
525 sipe_backend_notify_error(SIPE_CORE_PUBLIC,
526 _("Unable to display the search results"),
527 NULL);
528 ms_dlx_free(mdd);
529 return;
532 /* SearchAbEntryResult can contain duplicates */
533 found = g_hash_table_new_full(g_str_hash, g_str_equal,
534 g_free, NULL);
536 for (/* initialized above */ ; node; node = sipe_xml_twin(node)) {
537 const sipe_xml *attrs;
538 gchar *sip_uri = NULL;
539 gchar *displayname = NULL;
540 gchar *company = NULL;
541 gchar *country = NULL;
542 gchar *email = NULL;
544 for (attrs = sipe_xml_child(node, "Attributes/Attribute");
545 attrs;
546 attrs = sipe_xml_twin(attrs)) {
547 gchar *name = sipe_xml_data(sipe_xml_child(attrs,
548 "Name"));
549 gchar *value = sipe_xml_data(sipe_xml_child(attrs,
550 "Value"));
552 if (!is_empty(value)) {
553 if (sipe_strcase_equal(name, "msrtcsip-primaryuseraddress")) {
554 g_free(sip_uri);
555 sip_uri = value;
556 value = NULL;
557 } else if (sipe_strcase_equal(name, "displayname")) {
558 g_free(displayname);
559 displayname = value;
560 value = NULL;
561 } else if (sipe_strcase_equal(name, "mail")) {
562 g_free(email);
563 email = value;
564 value = NULL;
565 } else if (sipe_strcase_equal(name, "company")) {
566 g_free(company);
567 company = value;
568 value = NULL;
569 } else if (sipe_strcase_equal(name, "country")) {
570 g_free(country);
571 country = value;
572 value = NULL;
576 g_free(value);
577 g_free(name);
580 if (sip_uri && !g_hash_table_lookup(found, sip_uri)) {
581 gchar **uri_parts = g_strsplit(sip_uri, ":", 2);
582 sipe_backend_search_results_add(SIPE_CORE_PUBLIC,
583 results,
584 uri_parts[1],
585 displayname,
586 company,
587 country,
588 email);
589 g_strfreev(uri_parts);
591 g_hash_table_insert(found, sip_uri, (gpointer) TRUE);
592 sip_uri = NULL;
595 g_free(email);
596 g_free(country);
597 g_free(company);
598 g_free(displayname);
599 g_free(sip_uri);
602 search_contacts_finalize(sipe_private, results,
603 g_hash_table_size(found),
604 FALSE);
605 g_hash_table_destroy(found);
606 ms_dlx_free(mdd);
608 } else {
609 mdd->failed_callback(sipe_private, mdd);
613 static void search_ab_entry_failed(struct sipe_core_private *sipe_private,
614 struct ms_dlx_data *mdd)
616 sipe_backend_notify_error(SIPE_CORE_PUBLIC,
617 _("Contact search failed"),
618 NULL);
619 ms_dlx_free(mdd);
622 static gboolean process_search_contact_response(struct sipe_core_private *sipe_private,
623 struct sipmsg *msg,
624 SIPE_UNUSED_PARAMETER struct transaction *trans)
626 struct sipe_backend_search_results *results;
627 sipe_xml *searchResults;
628 const sipe_xml *mrow;
629 guint match_count = 0;
630 gboolean more = FALSE;
632 /* valid response? */
633 if (msg->response != 200) {
634 SIPE_DEBUG_ERROR("process_search_contact_response: request failed (%d)",
635 msg->response);
636 sipe_backend_notify_error(SIPE_CORE_PUBLIC,
637 _("Contact search failed"),
638 NULL);
639 return(FALSE);
642 SIPE_DEBUG_INFO("process_search_contact_response: body:\n%s", msg->body ? msg->body : "");
644 /* valid XML? */
645 searchResults = sipe_xml_parse(msg->body, msg->bodylen);
646 if (!searchResults) {
647 SIPE_DEBUG_INFO_NOFORMAT("process_search_contact_response: no parseable searchResults");
648 sipe_backend_notify_error(SIPE_CORE_PUBLIC,
649 _("Contact search failed"),
650 NULL);
651 return(FALSE);
654 /* any matches? */
655 mrow = sipe_xml_child(searchResults, "Body/Array/row");
656 if (!mrow) {
657 SIPE_DEBUG_ERROR_NOFORMAT("process_search_contact_response: no matches");
658 sipe_backend_notify_error(SIPE_CORE_PUBLIC,
659 _("No contacts found"),
660 NULL);
662 sipe_xml_free(searchResults);
663 return(FALSE);
666 /* OK, we found something - show the results to the user */
667 results = sipe_backend_search_results_start(SIPE_CORE_PUBLIC);
668 if (!results) {
669 SIPE_DEBUG_ERROR_NOFORMAT("process_search_contact_response: Unable to display the search results.");
670 sipe_backend_notify_error(SIPE_CORE_PUBLIC,
671 _("Unable to display the search results"),
672 NULL);
674 sipe_xml_free(searchResults);
675 return FALSE;
678 for (/* initialized above */ ; mrow; mrow = sipe_xml_twin(mrow)) {
679 gchar **uri_parts = g_strsplit(sipe_xml_attribute(mrow, "uri"), ":", 2);
680 sipe_backend_search_results_add(SIPE_CORE_PUBLIC,
681 results,
682 uri_parts[1],
683 sipe_xml_attribute(mrow, "displayName"),
684 sipe_xml_attribute(mrow, "company"),
685 sipe_xml_attribute(mrow, "country"),
686 sipe_xml_attribute(mrow, "email"));
687 g_strfreev(uri_parts);
688 match_count++;
691 if ((mrow = sipe_xml_child(searchResults, "Body/directorySearch/moreAvailable")) != NULL) {
692 char *data = sipe_xml_data(mrow);
693 more = (g_strcasecmp(data, "true") == 0);
694 g_free(data);
697 search_contacts_finalize(sipe_private, results, match_count, more);
698 sipe_xml_free(searchResults);
700 return(TRUE);
703 #define SIPE_SOAP_SEARCH_ROW "<m:row m:attrib=\"%s\" m:value=\"%s\"/>"
704 #define DLX_SEARCH_ITEM \
705 "<AbEntryRequest.ChangeSearchQuery>" \
706 " <SearchOn>%s</SearchOn>" \
707 " <Value>%s</Value>" \
708 "</AbEntryRequest.ChangeSearchQuery>"
710 void sipe_core_buddy_search(struct sipe_core_public *sipe_public,
711 const gchar *given_name,
712 const gchar *surname,
713 const gchar *company,
714 const gchar *country)
716 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
717 gchar **attrs = g_new(gchar *, 5);
718 guint i = 0;
719 gboolean dlx = (sipe_private->dlx_uri != NULL);
721 #define ADD_QUERY_ROW(a, v) \
722 if (v) attrs[i++] = g_markup_printf_escaped(dlx ? DLX_SEARCH_ITEM : SIPE_SOAP_SEARCH_ROW, \
723 a, \
726 ADD_QUERY_ROW("givenName", given_name);
727 ADD_QUERY_ROW("sn", surname);
728 ADD_QUERY_ROW("company", company);
729 ADD_QUERY_ROW("c", country);
730 attrs[i] = NULL;
732 if (i) {
733 gchar *query;
735 query = g_strjoinv(NULL, attrs);
736 SIPE_DEBUG_INFO("sipe_core_buddy_search: rows:\n%s",
737 query ? query : "");
739 if (dlx) {
740 struct ms_dlx_data *mdd = g_new0(struct ms_dlx_data, 1);
742 mdd->search = query;
743 mdd->entries = i;
744 mdd->max_returns = 100;
745 mdd->callback = search_ab_entry_response;
746 mdd->failed_callback = search_ab_entry_failed;
748 ms_dlx_webticket_request(sipe_private, mdd);
750 } else {
751 /* no [MS-DLX] server, use Active Directory search instead */
752 sip_soap_directory_search(SIPE_CORE_PRIVATE,
753 100,
754 query,
755 process_search_contact_response,
756 NULL);
757 g_free(query);
761 g_strfreev(attrs);
764 static void get_info_finalize(struct sipe_core_private *sipe_private,
765 struct sipe_backend_buddy_info *info,
766 const gchar *uri,
767 const gchar *server_alias,
768 const gchar *email)
770 sipe_backend_buddy bbuddy;
771 struct sipe_buddy *sbuddy;
772 gchar *alias;
773 gchar *value;
775 if (!info) {
776 info = sipe_backend_buddy_info_start(SIPE_CORE_PUBLIC);
777 } else {
778 sipe_backend_buddy_info_break(SIPE_CORE_PUBLIC, info);
780 if (!info)
781 return;
783 bbuddy = sipe_backend_buddy_find(SIPE_CORE_PUBLIC, uri, NULL);
785 if (is_empty(server_alias)) {
786 value = sipe_backend_buddy_get_server_alias(SIPE_CORE_PUBLIC,
787 bbuddy);
788 if (value) {
789 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
790 info,
791 SIPE_BUDDY_INFO_DISPLAY_NAME,
792 value);
794 } else {
795 value = g_strdup(server_alias);
798 /* present alias if it differs from server alias */
799 alias = sipe_backend_buddy_get_local_alias(SIPE_CORE_PUBLIC, bbuddy);
800 if (alias && !sipe_strequal(alias, value))
802 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
803 info,
804 SIPE_BUDDY_INFO_ALIAS,
805 alias);
807 g_free(alias);
808 g_free(value);
810 if (is_empty(email)) {
811 value = sipe_backend_buddy_get_string(SIPE_CORE_PUBLIC,
812 bbuddy,
813 SIPE_BUDDY_INFO_EMAIL);
814 if (value) {
815 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
816 info,
817 SIPE_BUDDY_INFO_EMAIL,
818 value);
819 g_free(value);
823 value = sipe_backend_buddy_get_string(SIPE_CORE_PUBLIC,
824 bbuddy,
825 SIPE_BUDDY_INFO_SITE);
826 if (value) {
827 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
828 info,
829 SIPE_BUDDY_INFO_SITE,
830 value);
831 g_free(value);
834 sbuddy = g_hash_table_lookup(sipe_private->buddies, uri);
835 if (sbuddy && sbuddy->device_name) {
836 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
837 info,
838 SIPE_BUDDY_INFO_DEVICE,
839 sbuddy->device_name);
842 sipe_backend_buddy_info_finalize(SIPE_CORE_PUBLIC, info, uri);
846 static void get_info_ab_entry_response(struct sipe_core_private *sipe_private,
847 const gchar *uri,
848 SIPE_UNUSED_PARAMETER const gchar *raw,
849 sipe_xml *soap_body,
850 gpointer callback_data)
852 struct ms_dlx_data *mdd = callback_data;
853 struct sipe_backend_buddy_info *info = NULL;
854 gchar *server_alias = NULL;
855 gchar *email = NULL;
857 if (soap_body) {
858 const sipe_xml *node;
860 SIPE_DEBUG_INFO("get_info_ab_entry_response: received valid SOAP message from service %s",
861 uri);
863 info = sipe_backend_buddy_info_start(SIPE_CORE_PUBLIC);
865 for (node = sipe_xml_child(soap_body, "Body/SearchAbEntryResponse/SearchAbEntryResult/Items/AbEntry/Attributes/Attribute");
866 node;
867 node = sipe_xml_twin(node)) {
868 gchar *name = sipe_xml_data(sipe_xml_child(node,
869 "Name"));
870 gchar *value = sipe_xml_data(sipe_xml_child(node,
871 "Value"));
872 const sipe_xml *values = sipe_xml_child(node,
873 "Values");
875 /* Single value entries */
876 if (!is_empty(value)) {
878 if (sipe_strcase_equal(name, "displayname")) {
879 g_free(server_alias);
880 server_alias = value;
881 value = NULL;
882 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
883 info,
884 SIPE_BUDDY_INFO_DISPLAY_NAME,
885 server_alias);
886 } else if (sipe_strcase_equal(name, "mail")) {
887 g_free(email);
888 email = value;
889 value = NULL;
890 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
891 info,
892 SIPE_BUDDY_INFO_EMAIL,
893 email);
894 } else if (sipe_strcase_equal(name, "title")) {
895 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
896 info,
897 SIPE_BUDDY_INFO_JOB_TITLE,
898 value);
899 } else if (sipe_strcase_equal(name, "company")) {
900 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
901 info,
902 SIPE_BUDDY_INFO_COMPANY,
903 value);
904 } else if (sipe_strcase_equal(name, "country")) {
905 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
906 info,
907 SIPE_BUDDY_INFO_COUNTRY,
908 value);
911 } else if (values) {
912 gchar *first = sipe_xml_data(sipe_xml_child(values,
913 "string"));
915 if (sipe_strcase_equal(name, "telephonenumber")) {
916 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
917 info,
918 SIPE_BUDDY_INFO_WORK_PHONE,
919 first);
922 g_free(first);
925 g_free(value);
926 g_free(name);
930 /* this will show the minmum information */
931 get_info_finalize(sipe_private,
932 info,
933 mdd->other,
934 server_alias,
935 email);
937 g_free(email);
938 g_free(server_alias);
939 ms_dlx_free(mdd);
942 static void get_info_ab_entry_failed(struct sipe_core_private *sipe_private,
943 struct ms_dlx_data *mdd)
945 /* request failed: this will show the minmum information */
946 get_info_finalize(sipe_private,
947 NULL,
948 mdd->other,
949 NULL,
950 NULL);
951 ms_dlx_free(mdd);
954 static gboolean process_get_info_response(struct sipe_core_private *sipe_private,
955 struct sipmsg *msg,
956 struct transaction *trans)
958 const gchar *uri = trans->payload->data;
959 struct sipe_backend_buddy_info *info = NULL;
960 gchar *server_alias = NULL;
961 gchar *email = NULL;
963 SIPE_DEBUG_INFO("Fetching %s's user info for %s",
964 uri, sipe_private->username);
966 if (msg->response != 200) {
967 SIPE_DEBUG_INFO("process_get_info_response: SERVICE response is %d", msg->response);
968 } else {
969 sipe_xml *searchResults;
970 const sipe_xml *mrow;
972 SIPE_DEBUG_INFO("process_get_info_response: body:\n%s",
973 msg->body ? msg->body : "");
975 searchResults = sipe_xml_parse(msg->body, msg->bodylen);
976 if (!searchResults) {
978 SIPE_DEBUG_INFO_NOFORMAT("process_get_info_response: no parseable searchResults");
980 } else if ((mrow = sipe_xml_child(searchResults, "Body/Array/row"))) {
981 const gchar *value;
982 gchar *phone_number;
984 info = sipe_backend_buddy_info_start(SIPE_CORE_PUBLIC);
986 server_alias = g_strdup(sipe_xml_attribute(mrow, "displayName"));
987 email = g_strdup(sipe_xml_attribute(mrow, "email"));
988 phone_number = g_strdup(sipe_xml_attribute(mrow, "phone"));
991 * For 2007 system we will take this from ContactCard -
992 * it has cleaner tel: URIs at least
994 if (!SIPE_CORE_PRIVATE_FLAG_IS(OCS2007)) {
995 char *tel_uri = sip_to_tel_uri(phone_number);
996 /* trims its parameters, so call first */
997 sipe_buddy_update_property(sipe_private, uri, SIPE_BUDDY_INFO_DISPLAY_NAME, server_alias);
998 sipe_buddy_update_property(sipe_private, uri, SIPE_BUDDY_INFO_EMAIL, email);
999 sipe_buddy_update_property(sipe_private, uri, SIPE_BUDDY_INFO_WORK_PHONE, tel_uri);
1000 sipe_buddy_update_property(sipe_private, uri, SIPE_BUDDY_INFO_WORK_PHONE_DISPLAY, phone_number);
1001 g_free(tel_uri);
1004 if (!is_empty(server_alias)) {
1005 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1006 info,
1007 SIPE_BUDDY_INFO_DISPLAY_NAME,
1008 server_alias);
1010 if ((value = sipe_xml_attribute(mrow, "title")) && strlen(value) > 0) {
1011 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1012 info,
1013 SIPE_BUDDY_INFO_JOB_TITLE,
1014 value);
1016 if ((value = sipe_xml_attribute(mrow, "office")) && strlen(value) > 0) {
1017 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1018 info,
1019 SIPE_BUDDY_INFO_OFFICE,
1020 value);
1022 if (!is_empty(phone_number)) {
1023 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1024 info,
1025 SIPE_BUDDY_INFO_WORK_PHONE,
1026 phone_number);
1028 g_free(phone_number);
1029 if ((value = sipe_xml_attribute(mrow, "company")) && strlen(value) > 0) {
1030 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1031 info,
1032 SIPE_BUDDY_INFO_COMPANY,
1033 value);
1035 if ((value = sipe_xml_attribute(mrow, "city")) && strlen(value) > 0) {
1036 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1037 info,
1038 SIPE_BUDDY_INFO_CITY,
1039 value);
1041 if ((value = sipe_xml_attribute(mrow, "state")) && strlen(value) > 0) {
1042 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1043 info,
1044 SIPE_BUDDY_INFO_STATE,
1045 value);
1047 if ((value = sipe_xml_attribute(mrow, "country")) && strlen(value) > 0) {
1048 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1049 info,
1050 SIPE_BUDDY_INFO_COUNTRY,
1051 value);
1053 if (!is_empty(email)) {
1054 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1055 info,
1056 SIPE_BUDDY_INFO_EMAIL,
1057 email);
1060 sipe_xml_free(searchResults);
1063 /* this will show the minmum information */
1064 get_info_finalize(sipe_private,
1065 info,
1066 uri,
1067 server_alias,
1068 email);
1070 g_free(server_alias);
1071 g_free(email);
1073 return TRUE;
1076 void sipe_core_buddy_get_info(struct sipe_core_public *sipe_public,
1077 const gchar *who)
1079 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
1081 if (sipe_private->dlx_uri) {
1082 struct ms_dlx_data *mdd = g_new0(struct ms_dlx_data, 1);
1084 mdd->search = g_markup_printf_escaped(DLX_SEARCH_ITEM,
1085 "msRTCSIP-PrimaryUserAddress",
1086 who);
1087 mdd->other = g_strdup(who);
1088 mdd->entries = 1;
1089 mdd->max_returns = 1;
1090 mdd->callback = get_info_ab_entry_response;
1091 mdd->failed_callback = get_info_ab_entry_failed;
1093 ms_dlx_webticket_request(sipe_private, mdd);
1095 } else {
1096 /* no [MS-DLX] server, use Active Directory search instead */
1097 gchar *row = g_markup_printf_escaped(SIPE_SOAP_SEARCH_ROW,
1098 "msRTCSIP-PrimaryUserAddress",
1099 who);
1100 struct transaction_payload *payload = g_new0(struct transaction_payload, 1);
1102 SIPE_DEBUG_INFO("sipe_core_buddy_get_info: row: %s",
1103 row ? row : "");
1105 payload->destroy = g_free;
1106 payload->data = g_strdup(who);
1108 sip_soap_directory_search(sipe_private,
1110 row,
1111 process_get_info_response,
1112 payload);
1113 g_free(row);
1117 /* Buddy menu callbacks*/
1119 void sipe_core_buddy_new_chat(struct sipe_core_public *sipe_public,
1120 const gchar *who)
1122 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
1124 /* 2007+ conference */
1125 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007)) {
1126 sipe_conf_add(sipe_private, who);
1128 /* 2005- multiparty chat */
1129 } else {
1130 gchar *self = sip_uri_self(sipe_private);
1131 struct sip_session *session;
1133 session = sipe_session_add_chat(sipe_private,
1134 NULL,
1135 TRUE,
1136 self);
1137 session->chat_session->backend = sipe_backend_chat_create(SIPE_CORE_PUBLIC,
1138 session->chat_session,
1139 session->chat_session->title,
1140 self);
1141 g_free(self);
1143 sipe_im_invite(sipe_private, session, who,
1144 NULL, NULL, NULL, FALSE);
1148 void sipe_core_buddy_send_email(struct sipe_core_public *sipe_public,
1149 const gchar *who)
1151 sipe_backend_buddy buddy = sipe_backend_buddy_find(sipe_public,
1152 who,
1153 NULL);
1154 gchar *email = sipe_backend_buddy_get_string(sipe_public,
1155 buddy,
1156 SIPE_BUDDY_INFO_EMAIL);
1158 if (email) {
1159 gchar *command_line = g_strdup_printf(
1160 #ifdef _WIN32
1161 "cmd /c start"
1162 #else
1163 "xdg-email"
1164 #endif
1165 " mailto:%s", email);
1166 g_free(email);
1168 SIPE_DEBUG_INFO("sipe_core_buddy_send_email: going to call email client: %s",
1169 command_line);
1170 g_spawn_command_line_async(command_line, NULL);
1171 g_free(command_line);
1173 } else {
1174 SIPE_DEBUG_INFO("sipe_core_buddy_send_email: no email address stored for buddy=%s",
1175 who);
1179 /* Buddy menu */
1181 static struct sipe_backend_buddy_menu *buddy_menu_phone(struct sipe_core_public *sipe_public,
1182 struct sipe_backend_buddy_menu *menu,
1183 sipe_backend_buddy buddy,
1184 sipe_buddy_info_fields id_phone,
1185 sipe_buddy_info_fields id_display,
1186 const gchar *type)
1188 gchar *phone = sipe_backend_buddy_get_string(sipe_public,
1189 buddy,
1190 id_phone);
1191 if (phone) {
1192 gchar *display = sipe_backend_buddy_get_string(sipe_public,
1193 buddy,
1194 id_display);
1195 gchar *tmp = NULL;
1196 gchar *label = g_strdup_printf("%s %s",
1197 type,
1198 display ? display :
1199 (tmp = sip_tel_uri_denormalize(phone)));
1200 menu = sipe_backend_buddy_menu_add(sipe_public,
1201 menu,
1202 label,
1203 SIPE_BUDDY_MENU_MAKE_CALL,
1204 phone);
1205 g_free(tmp);
1206 g_free(label);
1207 g_free(display);
1208 g_free(phone);
1211 return(menu);
1214 struct sipe_backend_buddy_menu *sipe_core_buddy_create_menu(struct sipe_core_public *sipe_public,
1215 const gchar *buddy_name,
1216 struct sipe_backend_buddy_menu *menu)
1218 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
1219 sipe_backend_buddy buddy = sipe_backend_buddy_find(sipe_public,
1220 buddy_name,
1221 NULL);
1222 gchar *self = sip_uri_self(sipe_private);
1224 SIPE_SESSION_FOREACH {
1225 if (!sipe_strcase_equal(self, buddy_name) && session->chat_session)
1227 struct sipe_chat_session *chat_session = session->chat_session;
1228 gboolean is_conf = (chat_session->type == SIPE_CHAT_TYPE_CONFERENCE);
1230 if (sipe_backend_chat_find(chat_session->backend, buddy_name))
1232 gboolean conf_op = sipe_backend_chat_is_operator(chat_session->backend, self);
1234 if (is_conf &&
1235 /* Not conf OP */
1236 !sipe_backend_chat_is_operator(chat_session->backend, buddy_name) &&
1237 /* We are a conf OP */
1238 conf_op) {
1239 gchar *label = g_strdup_printf(_("Make leader of '%s'"),
1240 chat_session->title);
1241 menu = sipe_backend_buddy_menu_add(sipe_public,
1242 menu,
1243 label,
1244 SIPE_BUDDY_MENU_MAKE_CHAT_LEADER,
1245 chat_session);
1246 g_free(label);
1249 if (is_conf &&
1250 /* We are a conf OP */
1251 conf_op) {
1252 gchar *label = g_strdup_printf(_("Remove from '%s'"),
1253 chat_session->title);
1254 menu = sipe_backend_buddy_menu_add(sipe_public,
1255 menu,
1256 label,
1257 SIPE_BUDDY_MENU_REMOVE_FROM_CHAT,
1258 chat_session);
1259 g_free(label);
1262 else
1264 if (!is_conf ||
1265 (is_conf && !session->locked)) {
1266 gchar *label = g_strdup_printf(_("Invite to '%s'"),
1267 chat_session->title);
1268 menu = sipe_backend_buddy_menu_add(sipe_public,
1269 menu,
1270 label,
1271 SIPE_BUDDY_MENU_INVITE_TO_CHAT,
1272 chat_session);
1273 g_free(label);
1277 } SIPE_SESSION_FOREACH_END;
1278 g_free(self);
1280 menu = sipe_backend_buddy_menu_add(sipe_public,
1281 menu,
1282 _("New chat"),
1283 SIPE_BUDDY_MENU_NEW_CHAT,
1284 NULL);
1286 /* add buddy's phone numbers if we have call control */
1287 if (sip_csta_is_idle(sipe_private)) {
1289 /* work phone */
1290 menu = buddy_menu_phone(sipe_public,
1291 menu,
1292 buddy,
1293 SIPE_BUDDY_INFO_WORK_PHONE,
1294 SIPE_BUDDY_INFO_WORK_PHONE_DISPLAY,
1295 _("Work"));
1296 /* mobile phone */
1297 menu = buddy_menu_phone(sipe_public,
1298 menu,
1299 buddy,
1300 SIPE_BUDDY_INFO_MOBILE_PHONE,
1301 SIPE_BUDDY_INFO_MOBILE_PHONE_DISPLAY,
1302 _("Mobile"));
1304 /* home phone */
1305 menu = buddy_menu_phone(sipe_public,
1306 menu,
1307 buddy,
1308 SIPE_BUDDY_INFO_HOME_PHONE,
1309 SIPE_BUDDY_INFO_HOME_PHONE_DISPLAY,
1310 _("Home"));
1312 /* other phone */
1313 menu = buddy_menu_phone(sipe_public,
1314 menu,
1315 buddy,
1316 SIPE_BUDDY_INFO_OTHER_PHONE,
1317 SIPE_BUDDY_INFO_OTHER_PHONE_DISPLAY,
1318 _("Other"));
1320 /* custom1 phone */
1321 menu = buddy_menu_phone(sipe_public,
1322 menu,
1323 buddy,
1324 SIPE_BUDDY_INFO_CUSTOM1_PHONE,
1325 SIPE_BUDDY_INFO_CUSTOM1_PHONE_DISPLAY,
1326 _("Custom1"));
1330 gchar *email = sipe_backend_buddy_get_string(sipe_public,
1331 buddy,
1332 SIPE_BUDDY_INFO_EMAIL);
1333 if (email) {
1334 menu = sipe_backend_buddy_menu_add(sipe_public,
1335 menu,
1336 _("Send email..."),
1337 SIPE_BUDDY_MENU_SEND_EMAIL,
1338 NULL);
1339 g_free(email);
1343 /* access level control */
1344 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007))
1345 menu = sipe_backend_buddy_sub_menu_add(sipe_public,
1346 menu,
1347 _("Access level"),
1348 sipe_ocs2007_access_control_menu(sipe_private,
1349 buddy_name));
1351 return(menu);
1355 Local Variables:
1356 mode: c
1357 c-file-style: "bsd"
1358 indent-tabs-mode: t
1359 tab-width: 8
1360 End: