ms-dlx: parse SearchAbRequest response
[siplcs.git] / src / core / sipe-buddy.c
blobcbe99a6522f0db05855ef712215ea5ce8429734d
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);
408 static gboolean process_search_contact_response(struct sipe_core_private *sipe_private,
409 struct sipmsg *msg,
410 SIPE_UNUSED_PARAMETER struct transaction *trans)
412 struct sipe_backend_search_results *results;
413 sipe_xml *searchResults;
414 const sipe_xml *mrow;
415 guint match_count = 0;
416 gboolean more = FALSE;
417 gchar *secondary;
419 /* valid response? */
420 if (msg->response != 200) {
421 SIPE_DEBUG_ERROR("process_search_contact_response: request failed (%d)",
422 msg->response);
423 sipe_backend_notify_error(SIPE_CORE_PUBLIC,
424 _("Contact search failed"),
425 NULL);
426 return(FALSE);
429 SIPE_DEBUG_INFO("process_search_contact_response: body:\n%s", msg->body ? msg->body : "");
431 /* valid XML? */
432 searchResults = sipe_xml_parse(msg->body, msg->bodylen);
433 if (!searchResults) {
434 SIPE_DEBUG_INFO_NOFORMAT("process_search_contact_response: no parseable searchResults");
435 sipe_backend_notify_error(SIPE_CORE_PUBLIC,
436 _("Contact search failed"),
437 NULL);
438 return(FALSE);
441 /* any matches? */
442 mrow = sipe_xml_child(searchResults, "Body/Array/row");
443 if (!mrow) {
444 SIPE_DEBUG_ERROR_NOFORMAT("process_search_contact_response: no matches");
445 sipe_backend_notify_error(SIPE_CORE_PUBLIC,
446 _("No contacts found"),
447 NULL);
449 sipe_xml_free(searchResults);
450 return(FALSE);
453 /* OK, we found something - show the results to the user */
454 results = sipe_backend_search_results_start(SIPE_CORE_PUBLIC);
455 if (!results) {
456 SIPE_DEBUG_ERROR_NOFORMAT("process_search_contact_response: Unable to display the search results.");
457 sipe_backend_notify_error(SIPE_CORE_PUBLIC,
458 _("Unable to display the search results"),
459 NULL);
461 sipe_xml_free(searchResults);
462 return FALSE;
465 for (/* initialized above */ ; mrow; mrow = sipe_xml_twin(mrow)) {
466 gchar **uri_parts = g_strsplit(sipe_xml_attribute(mrow, "uri"), ":", 2);
467 sipe_backend_search_results_add(SIPE_CORE_PUBLIC,
468 results,
469 uri_parts[1],
470 sipe_xml_attribute(mrow, "displayName"),
471 sipe_xml_attribute(mrow, "company"),
472 sipe_xml_attribute(mrow, "country"),
473 sipe_xml_attribute(mrow, "email"));
474 g_strfreev(uri_parts);
475 match_count++;
478 if ((mrow = sipe_xml_child(searchResults, "Body/directorySearch/moreAvailable")) != NULL) {
479 char *data = sipe_xml_data(mrow);
480 more = (g_strcasecmp(data, "true") == 0);
481 g_free(data);
484 secondary = g_strdup_printf(
485 dngettext(PACKAGE_NAME,
486 "Found %d contact%s:",
487 "Found %d contacts%s:", match_count),
488 match_count, more ? _(" (more matched your query)") : "");
490 sipe_backend_search_results_finalize(SIPE_CORE_PUBLIC,
491 results,
492 secondary,
493 more);
494 g_free(secondary);
495 sipe_xml_free(searchResults);
497 return(TRUE);
500 #define SIPE_SOAP_SEARCH_ROW "<m:row m:attrib=\"%s\" m:value=\"%s\"/>"
502 void sipe_core_buddy_search(struct sipe_core_public *sipe_public,
503 const gchar *given_name,
504 const gchar *surname,
505 const gchar *company,
506 const gchar *country)
508 gchar **attrs = g_new(gchar *, 5);
509 guint i = 0;
511 if (!attrs) return;
513 #define ADD_QUERY_ROW(a, v) \
514 if (v) attrs[i++] = g_markup_printf_escaped(SIPE_SOAP_SEARCH_ROW, a, v)
516 ADD_QUERY_ROW("givenName", given_name);
517 ADD_QUERY_ROW("sn", surname);
518 ADD_QUERY_ROW("company", company);
519 ADD_QUERY_ROW("c", country);
521 if (i) {
522 gchar *query;
524 attrs[i] = NULL;
525 query = g_strjoinv(NULL, attrs);
526 SIPE_DEBUG_INFO("sipe_core_buddy_search: rows:\n%s",
527 query ? query : "");
528 sip_soap_directory_search(SIPE_CORE_PRIVATE,
529 100,
530 query,
531 process_search_contact_response,
532 NULL);
533 g_free(query);
536 g_strfreev(attrs);
539 static gboolean process_options_response(SIPE_UNUSED_PARAMETER struct sipe_core_private *sipe_private,
540 struct sipmsg *msg,
541 SIPE_UNUSED_PARAMETER struct transaction *trans)
543 if (msg->response != 200) {
544 SIPE_DEBUG_INFO("process_options_response: OPTIONS response is %d",
545 msg->response);
546 return(FALSE);
547 } else {
548 SIPE_DEBUG_INFO("process_options_response: body:\n%s",
549 msg->body ? msg->body : "");
550 return(TRUE);
554 /* Asks UA/proxy about its capabilities */
555 static void sipe_options_request(struct sipe_core_private *sipe_private,
556 const char *who)
558 gchar *to = sip_uri(who);
559 gchar *contact = get_contact(sipe_private);
560 gchar *request = g_strdup_printf("Accept: application/sdp\r\n"
561 "Contact: %s\r\n",
562 contact);
563 g_free(contact);
565 sip_transport_request(sipe_private,
566 "OPTIONS",
569 request,
570 NULL,
571 NULL,
572 process_options_response);
574 g_free(to);
575 g_free(request);
578 static void get_info_finalize(struct sipe_core_private *sipe_private,
579 struct sipe_backend_buddy_info *info,
580 const gchar *uri,
581 const gchar *server_alias,
582 const gchar *email)
584 sipe_backend_buddy bbuddy;
585 struct sipe_buddy *sbuddy;
586 gchar *alias;
587 gchar *value;
589 if (!info) {
590 info = sipe_backend_buddy_info_start(SIPE_CORE_PUBLIC);
591 } else {
592 sipe_backend_buddy_info_break(SIPE_CORE_PUBLIC, info);
594 if (!info)
595 return;
597 bbuddy = sipe_backend_buddy_find(SIPE_CORE_PUBLIC, uri, NULL);
599 if (is_empty(server_alias)) {
600 value = sipe_backend_buddy_get_server_alias(SIPE_CORE_PUBLIC,
601 bbuddy);
602 if (value) {
603 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
604 info,
605 _("Display name"),
606 value);
608 } else {
609 value = g_strdup(server_alias);
612 /* present alias if it differs from server alias */
613 alias = sipe_backend_buddy_get_local_alias(SIPE_CORE_PUBLIC, bbuddy);
614 if (alias && !sipe_strequal(alias, value))
616 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
617 info,
618 _("Alias"),
619 alias);
621 g_free(alias);
622 g_free(value);
624 if (is_empty(email)) {
625 value = sipe_backend_buddy_get_string(SIPE_CORE_PUBLIC,
626 bbuddy,
627 SIPE_BUDDY_INFO_EMAIL);
628 if (value) {
629 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
630 info,
631 _("Email address"),
632 value);
633 g_free(value);
637 value = sipe_backend_buddy_get_string(SIPE_CORE_PUBLIC,
638 bbuddy,
639 SIPE_BUDDY_INFO_SITE);
640 if (value) {
641 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
642 info,
643 _("Site"),
644 value);
645 g_free(value);
648 sbuddy = g_hash_table_lookup(sipe_private->buddies, uri);
649 if (sbuddy && sbuddy->device_name) {
650 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
651 info,
652 _("Device"),
653 sbuddy->device_name);
656 sipe_backend_buddy_info_finalize(SIPE_CORE_PUBLIC, info, uri);
659 static void ab_entry_response(struct sipe_core_private *sipe_private,
660 const gchar *uri,
661 SIPE_UNUSED_PARAMETER const gchar *raw,
662 sipe_xml *soap_body,
663 gpointer callback_data)
665 gchar *who = callback_data;
666 struct sipe_backend_buddy_info *info = NULL;
667 gchar *server_alias = NULL;
668 gchar *email = NULL;
670 if (soap_body) {
671 const sipe_xml *node;
673 SIPE_DEBUG_INFO("ab_entry_response: received valid SOAP message from service %s",
674 uri);
676 info = sipe_backend_buddy_info_start(SIPE_CORE_PUBLIC);
678 for (node = sipe_xml_child(soap_body, "Body/SearchAbEntryResponse/SearchAbEntryResult/Items/AbEntry/Attributes/Attribute");
679 node;
680 node = sipe_xml_twin(node)) {
681 gchar *name = sipe_xml_data(sipe_xml_child(node,
682 "Name"));
683 gchar *value = sipe_xml_data(sipe_xml_child(node,
684 "Value"));
685 const sipe_xml *values = sipe_xml_child(node,
686 "Values");
688 /* Single value entries */
689 if (!is_empty(value)) {
691 if (sipe_strcase_equal(name, "displayname")) {
692 g_free(server_alias);
693 server_alias = value;
694 value = NULL;
695 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
696 info,
697 _("Display name"),
698 server_alias);
699 } else if (sipe_strcase_equal(name, "mail")) {
700 g_free(email);
701 email = value;
702 value = NULL;
703 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
704 info,
705 _("Email address"),
706 email);
707 } else if (sipe_strcase_equal(name, "title")) {
708 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
709 info,
710 _("Job title"),
711 value);
712 } else if (sipe_strcase_equal(name, "title")) {
713 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
714 info,
715 _("Job title"),
716 value);
717 } else if (sipe_strcase_equal(name, "company")) {
718 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
719 info,
720 _("Company"),
721 value);
722 } else if (sipe_strcase_equal(name, "country")) {
723 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
724 info,
725 _("Country"),
726 value);
729 } else if (values) {
730 gchar *first = sipe_xml_data(sipe_xml_child(values,
731 "string"));
733 if (sipe_strcase_equal(name, "telephonenumber")) {
734 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
735 info,
736 _("Business phone"),
737 first);
740 g_free(first);
743 g_free(value);
744 g_free(name);
748 /* this will show the minmum information */
749 get_info_finalize(sipe_private,
750 info,
751 who,
752 server_alias,
753 email);
755 g_free(email);
756 g_free(server_alias);
757 g_free(who);
760 static void ms_dlx_webticket(struct sipe_core_private *sipe_private,
761 const gchar *base_uri,
762 const gchar *auth_uri,
763 const gchar *wsse_security,
764 gpointer callback_data)
766 gchar *who = callback_data;
768 if (wsse_security) {
769 gchar *search = g_strdup_printf("<SearchOn>msRTCSIP-PrimaryUserAddress</SearchOn>"
770 "<Value>%s</Value>",
771 who);
773 SIPE_DEBUG_INFO("ms_dlx_webticket: got ticket for %s",
774 base_uri);
776 if (sipe_svc_ab_entry_request(sipe_private,
777 auth_uri,
778 wsse_security,
779 search,
780 ab_entry_response,
781 who)) {
782 /* callback data passed down the line */
783 who = NULL;
785 g_free(search);
787 } else {
788 /* no ticket: this will show the minmum information */
789 SIPE_DEBUG_ERROR("ms_dlx_webticket: no web ticket for %s",
790 base_uri);
793 if (who) {
794 /* request failed: this will show the minmum information */
795 get_info_finalize(sipe_private,
796 NULL,
797 who,
798 NULL,
799 NULL);
800 g_free(who);
804 static gboolean process_get_info_response(struct sipe_core_private *sipe_private,
805 struct sipmsg *msg,
806 struct transaction *trans)
808 const gchar *uri = trans->payload->data;
809 struct sipe_backend_buddy_info *info = NULL;
810 gchar *server_alias = NULL;
811 gchar *email = NULL;
813 SIPE_DEBUG_INFO("Fetching %s's user info for %s",
814 uri, sipe_private->username);
816 /* will query buddy UA's capabilities and send answer to log */
817 if (sipe_backend_debug_enabled())
818 sipe_options_request(sipe_private, uri);
820 if (msg->response != 200) {
821 SIPE_DEBUG_INFO("process_get_info_response: SERVICE response is %d", msg->response);
822 } else {
823 sipe_xml *searchResults;
824 const sipe_xml *mrow;
826 SIPE_DEBUG_INFO("process_get_info_response: body:\n%s",
827 msg->body ? msg->body : "");
829 searchResults = sipe_xml_parse(msg->body, msg->bodylen);
830 if (!searchResults) {
832 SIPE_DEBUG_INFO_NOFORMAT("process_get_info_response: no parseable searchResults");
834 } else if ((mrow = sipe_xml_child(searchResults, "Body/Array/row"))) {
835 const gchar *value;
836 gchar *phone_number;
838 info = sipe_backend_buddy_info_start(SIPE_CORE_PUBLIC);
840 server_alias = g_strdup(sipe_xml_attribute(mrow, "displayName"));
841 email = g_strdup(sipe_xml_attribute(mrow, "email"));
842 phone_number = g_strdup(sipe_xml_attribute(mrow, "phone"));
845 * For 2007 system we will take this from ContactCard -
846 * it has cleaner tel: URIs at least
848 if (!SIPE_CORE_PRIVATE_FLAG_IS(OCS2007)) {
849 char *tel_uri = sip_to_tel_uri(phone_number);
850 /* trims its parameters, so call first */
851 sipe_buddy_update_property(sipe_private, uri, SIPE_BUDDY_INFO_DISPLAY_NAME, server_alias);
852 sipe_buddy_update_property(sipe_private, uri, SIPE_BUDDY_INFO_EMAIL, email);
853 sipe_buddy_update_property(sipe_private, uri, SIPE_BUDDY_INFO_WORK_PHONE, tel_uri);
854 sipe_buddy_update_property(sipe_private, uri, SIPE_BUDDY_INFO_WORK_PHONE_DISPLAY, phone_number);
855 g_free(tel_uri);
858 if (!is_empty(server_alias)) {
859 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
860 info,
861 _("Display name"),
862 server_alias);
864 if ((value = sipe_xml_attribute(mrow, "title")) && strlen(value) > 0) {
865 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
866 info,
867 _("Job title"),
868 value);
870 if ((value = sipe_xml_attribute(mrow, "office")) && strlen(value) > 0) {
871 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
872 info,
873 _("Office"),
874 value);
876 if (!is_empty(phone_number)) {
877 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
878 info,
879 _("Business phone"),
880 phone_number);
882 g_free(phone_number);
883 if ((value = sipe_xml_attribute(mrow, "company")) && strlen(value) > 0) {
884 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
885 info,
886 _("Company"),
887 value);
889 if ((value = sipe_xml_attribute(mrow, "city")) && strlen(value) > 0) {
890 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
891 info,
892 _("City"),
893 value);
895 if ((value = sipe_xml_attribute(mrow, "state")) && strlen(value) > 0) {
896 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
897 info,
898 _("State"),
899 value);
901 if ((value = sipe_xml_attribute(mrow, "country")) && strlen(value) > 0) {
902 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
903 info,
904 _("Country"),
905 value);
907 if (!is_empty(email)) {
908 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
909 info,
910 _("Email address"),
911 email);
914 sipe_xml_free(searchResults);
917 /* this will show the minmum information */
918 get_info_finalize(sipe_private,
919 info,
920 uri,
921 server_alias,
922 email);
924 g_free(server_alias);
925 g_free(email);
927 return TRUE;
930 void sipe_core_buddy_get_info(struct sipe_core_public *sipe_public,
931 const gchar *who)
933 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
935 if (sipe_private->dlx_uri) {
936 gchar *payload = g_strdup(who);
938 if (!sipe_webticket_request(sipe_private,
939 sipe_private->dlx_uri,
940 "AddressBookWebTicketBearer",
941 ms_dlx_webticket,
942 payload)) {
943 SIPE_DEBUG_ERROR("sipe_core_buddy_get_info: couldn't request webticket for %s",
944 sipe_private->dlx_uri);
946 /* this will show the minmum information */
947 get_info_finalize(sipe_private,
948 NULL,
949 payload,
950 NULL,
951 NULL);
953 g_free(payload);
955 } else {
956 /* no [MS-DLX] server, use Active Directory search instead */
957 gchar *row = g_markup_printf_escaped(SIPE_SOAP_SEARCH_ROW,
958 "msRTCSIP-PrimaryUserAddress",
959 who);
960 struct transaction_payload *payload = g_new0(struct transaction_payload, 1);
962 SIPE_DEBUG_INFO("sipe_core_buddy_get_info: row: %s",
963 row ? row : "");
965 payload->destroy = g_free;
966 payload->data = g_strdup(who);
968 sip_soap_directory_search(sipe_private,
970 row,
971 process_get_info_response,
972 payload);
973 g_free(row);
977 /* Buddy menu callbacks*/
979 void sipe_core_buddy_new_chat(struct sipe_core_public *sipe_public,
980 const gchar *who)
982 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
984 /* 2007+ conference */
985 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007)) {
986 sipe_conf_add(sipe_private, who);
988 /* 2005- multiparty chat */
989 } else {
990 gchar *self = sip_uri_self(sipe_private);
991 struct sip_session *session;
993 session = sipe_session_add_chat(sipe_private,
994 NULL,
995 TRUE,
996 self);
997 session->chat_session->backend = sipe_backend_chat_create(SIPE_CORE_PUBLIC,
998 session->chat_session,
999 session->chat_session->title,
1000 self);
1001 g_free(self);
1003 sipe_im_invite(sipe_private, session, who,
1004 NULL, NULL, NULL, FALSE);
1008 void sipe_core_buddy_send_email(struct sipe_core_public *sipe_public,
1009 const gchar *who)
1011 sipe_backend_buddy buddy = sipe_backend_buddy_find(sipe_public,
1012 who,
1013 NULL);
1014 gchar *email = sipe_backend_buddy_get_string(sipe_public,
1015 buddy,
1016 SIPE_BUDDY_INFO_EMAIL);
1018 if (email) {
1019 gchar *command_line = g_strdup_printf(
1020 #ifdef _WIN32
1021 "cmd /c start"
1022 #else
1023 "xdg-email"
1024 #endif
1025 " mailto:%s", email);
1026 g_free(email);
1028 SIPE_DEBUG_INFO("sipe_core_buddy_send_email: going to call email client: %s",
1029 command_line);
1030 g_spawn_command_line_async(command_line, NULL);
1031 g_free(command_line);
1033 } else {
1034 SIPE_DEBUG_INFO("sipe_core_buddy_send_email: no email address stored for buddy=%s",
1035 who);
1039 /* Buddy menu */
1041 static struct sipe_backend_buddy_menu *buddy_menu_phone(struct sipe_core_public *sipe_public,
1042 struct sipe_backend_buddy_menu *menu,
1043 sipe_backend_buddy buddy,
1044 sipe_buddy_info_fields id_phone,
1045 sipe_buddy_info_fields id_display,
1046 const gchar *type)
1048 gchar *phone = sipe_backend_buddy_get_string(sipe_public,
1049 buddy,
1050 id_phone);
1051 if (phone) {
1052 gchar *display = sipe_backend_buddy_get_string(sipe_public,
1053 buddy,
1054 id_display);
1055 gchar *tmp = NULL;
1056 gchar *label = g_strdup_printf("%s %s",
1057 type,
1058 display ? display :
1059 (tmp = sip_tel_uri_denormalize(phone)));
1060 menu = sipe_backend_buddy_menu_add(sipe_public,
1061 menu,
1062 label,
1063 SIPE_BUDDY_MENU_MAKE_CALL,
1064 phone);
1065 g_free(tmp);
1066 g_free(label);
1067 g_free(display);
1068 g_free(phone);
1071 return(menu);
1074 struct sipe_backend_buddy_menu *sipe_core_buddy_create_menu(struct sipe_core_public *sipe_public,
1075 const gchar *buddy_name,
1076 struct sipe_backend_buddy_menu *menu)
1078 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
1079 sipe_backend_buddy buddy = sipe_backend_buddy_find(sipe_public,
1080 buddy_name,
1081 NULL);
1082 gchar *self = sip_uri_self(sipe_private);
1084 SIPE_SESSION_FOREACH {
1085 if (!sipe_strcase_equal(self, buddy_name) && session->chat_session)
1087 struct sipe_chat_session *chat_session = session->chat_session;
1088 gboolean is_conf = (chat_session->type == SIPE_CHAT_TYPE_CONFERENCE);
1090 if (sipe_backend_chat_find(chat_session->backend, buddy_name))
1092 gboolean conf_op = sipe_backend_chat_is_operator(chat_session->backend, self);
1094 if (is_conf &&
1095 /* Not conf OP */
1096 !sipe_backend_chat_is_operator(chat_session->backend, buddy_name) &&
1097 /* We are a conf OP */
1098 conf_op) {
1099 gchar *label = g_strdup_printf(_("Make leader of '%s'"),
1100 chat_session->title);
1101 menu = sipe_backend_buddy_menu_add(sipe_public,
1102 menu,
1103 label,
1104 SIPE_BUDDY_MENU_MAKE_CHAT_LEADER,
1105 chat_session);
1106 g_free(label);
1109 if (is_conf &&
1110 /* We are a conf OP */
1111 conf_op) {
1112 gchar *label = g_strdup_printf(_("Remove from '%s'"),
1113 chat_session->title);
1114 menu = sipe_backend_buddy_menu_add(sipe_public,
1115 menu,
1116 label,
1117 SIPE_BUDDY_MENU_REMOVE_FROM_CHAT,
1118 chat_session);
1119 g_free(label);
1122 else
1124 if (!is_conf ||
1125 (is_conf && !session->locked)) {
1126 gchar *label = g_strdup_printf(_("Invite to '%s'"),
1127 chat_session->title);
1128 menu = sipe_backend_buddy_menu_add(sipe_public,
1129 menu,
1130 label,
1131 SIPE_BUDDY_MENU_INVITE_TO_CHAT,
1132 chat_session);
1133 g_free(label);
1137 } SIPE_SESSION_FOREACH_END;
1138 g_free(self);
1140 menu = sipe_backend_buddy_menu_add(sipe_public,
1141 menu,
1142 _("New chat"),
1143 SIPE_BUDDY_MENU_NEW_CHAT,
1144 NULL);
1146 /* add buddy's phone numbers if we have call control */
1147 if (sip_csta_is_idle(sipe_private)) {
1149 /* work phone */
1150 menu = buddy_menu_phone(sipe_public,
1151 menu,
1152 buddy,
1153 SIPE_BUDDY_INFO_WORK_PHONE,
1154 SIPE_BUDDY_INFO_WORK_PHONE_DISPLAY,
1155 _("Work"));
1156 /* mobile phone */
1157 menu = buddy_menu_phone(sipe_public,
1158 menu,
1159 buddy,
1160 SIPE_BUDDY_INFO_MOBILE_PHONE,
1161 SIPE_BUDDY_INFO_MOBILE_PHONE_DISPLAY,
1162 _("Mobile"));
1164 /* home phone */
1165 menu = buddy_menu_phone(sipe_public,
1166 menu,
1167 buddy,
1168 SIPE_BUDDY_INFO_HOME_PHONE,
1169 SIPE_BUDDY_INFO_HOME_PHONE_DISPLAY,
1170 _("Home"));
1172 /* other phone */
1173 menu = buddy_menu_phone(sipe_public,
1174 menu,
1175 buddy,
1176 SIPE_BUDDY_INFO_OTHER_PHONE,
1177 SIPE_BUDDY_INFO_OTHER_PHONE_DISPLAY,
1178 _("Other"));
1180 /* custom1 phone */
1181 menu = buddy_menu_phone(sipe_public,
1182 menu,
1183 buddy,
1184 SIPE_BUDDY_INFO_CUSTOM1_PHONE,
1185 SIPE_BUDDY_INFO_CUSTOM1_PHONE_DISPLAY,
1186 _("Custom1"));
1190 gchar *email = sipe_backend_buddy_get_string(sipe_public,
1191 buddy,
1192 SIPE_BUDDY_INFO_EMAIL);
1193 if (email) {
1194 menu = sipe_backend_buddy_menu_add(sipe_public,
1195 menu,
1196 _("Send email..."),
1197 SIPE_BUDDY_MENU_SEND_EMAIL,
1198 NULL);
1199 g_free(email);
1203 /* access level control */
1204 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007))
1205 menu = sipe_backend_buddy_sub_menu_add(sipe_public,
1206 menu,
1207 _("Access level"),
1208 sipe_ocs2007_access_control_menu(sipe_private,
1209 buddy_name));
1211 return(menu);
1215 Local Variables:
1216 mode: c
1217 c-file-style: "bsd"
1218 indent-tabs-mode: t
1219 tab-width: 8
1220 End: