buddy: replace description with sipe_buddy_info_fields
[siplcs.git] / src / core / sipe-buddy.c
blob9e65969b1dff6b75364ce4a660e60258ec45ba8b
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 SIPE_BUDDY_INFO_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 SIPE_BUDDY_INFO_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 SIPE_BUDDY_INFO_EMAIL,
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 SIPE_BUDDY_INFO_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 SIPE_BUDDY_INFO_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 SIPE_BUDDY_INFO_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 SIPE_BUDDY_INFO_EMAIL,
706 email);
707 } else if (sipe_strcase_equal(name, "title")) {
708 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
709 info,
710 SIPE_BUDDY_INFO_JOB_TITLE,
711 value);
712 } else if (sipe_strcase_equal(name, "company")) {
713 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
714 info,
715 SIPE_BUDDY_INFO_COMPANY,
716 value);
717 } else if (sipe_strcase_equal(name, "country")) {
718 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
719 info,
720 SIPE_BUDDY_INFO_COUNTRY,
721 value);
724 } else if (values) {
725 gchar *first = sipe_xml_data(sipe_xml_child(values,
726 "string"));
728 if (sipe_strcase_equal(name, "telephonenumber")) {
729 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
730 info,
731 SIPE_BUDDY_INFO_WORK_PHONE,
732 first);
735 g_free(first);
738 g_free(value);
739 g_free(name);
743 /* this will show the minmum information */
744 get_info_finalize(sipe_private,
745 info,
746 who,
747 server_alias,
748 email);
750 g_free(email);
751 g_free(server_alias);
752 g_free(who);
755 static void ms_dlx_webticket(struct sipe_core_private *sipe_private,
756 const gchar *base_uri,
757 const gchar *auth_uri,
758 const gchar *wsse_security,
759 gpointer callback_data)
761 gchar *who = callback_data;
763 if (wsse_security) {
764 gchar *search = g_strdup_printf("<SearchOn>msRTCSIP-PrimaryUserAddress</SearchOn>"
765 "<Value>%s</Value>",
766 who);
768 SIPE_DEBUG_INFO("ms_dlx_webticket: got ticket for %s",
769 base_uri);
771 if (sipe_svc_ab_entry_request(sipe_private,
772 auth_uri,
773 wsse_security,
774 search,
775 ab_entry_response,
776 who)) {
777 /* callback data passed down the line */
778 who = NULL;
780 g_free(search);
782 } else {
783 /* no ticket: this will show the minmum information */
784 SIPE_DEBUG_ERROR("ms_dlx_webticket: no web ticket for %s",
785 base_uri);
788 if (who) {
789 /* request failed: this will show the minmum information */
790 get_info_finalize(sipe_private,
791 NULL,
792 who,
793 NULL,
794 NULL);
795 g_free(who);
799 static gboolean process_get_info_response(struct sipe_core_private *sipe_private,
800 struct sipmsg *msg,
801 struct transaction *trans)
803 const gchar *uri = trans->payload->data;
804 struct sipe_backend_buddy_info *info = NULL;
805 gchar *server_alias = NULL;
806 gchar *email = NULL;
808 SIPE_DEBUG_INFO("Fetching %s's user info for %s",
809 uri, sipe_private->username);
811 /* will query buddy UA's capabilities and send answer to log */
812 if (sipe_backend_debug_enabled())
813 sipe_options_request(sipe_private, uri);
815 if (msg->response != 200) {
816 SIPE_DEBUG_INFO("process_get_info_response: SERVICE response is %d", msg->response);
817 } else {
818 sipe_xml *searchResults;
819 const sipe_xml *mrow;
821 SIPE_DEBUG_INFO("process_get_info_response: body:\n%s",
822 msg->body ? msg->body : "");
824 searchResults = sipe_xml_parse(msg->body, msg->bodylen);
825 if (!searchResults) {
827 SIPE_DEBUG_INFO_NOFORMAT("process_get_info_response: no parseable searchResults");
829 } else if ((mrow = sipe_xml_child(searchResults, "Body/Array/row"))) {
830 const gchar *value;
831 gchar *phone_number;
833 info = sipe_backend_buddy_info_start(SIPE_CORE_PUBLIC);
835 server_alias = g_strdup(sipe_xml_attribute(mrow, "displayName"));
836 email = g_strdup(sipe_xml_attribute(mrow, "email"));
837 phone_number = g_strdup(sipe_xml_attribute(mrow, "phone"));
840 * For 2007 system we will take this from ContactCard -
841 * it has cleaner tel: URIs at least
843 if (!SIPE_CORE_PRIVATE_FLAG_IS(OCS2007)) {
844 char *tel_uri = sip_to_tel_uri(phone_number);
845 /* trims its parameters, so call first */
846 sipe_buddy_update_property(sipe_private, uri, SIPE_BUDDY_INFO_DISPLAY_NAME, server_alias);
847 sipe_buddy_update_property(sipe_private, uri, SIPE_BUDDY_INFO_EMAIL, email);
848 sipe_buddy_update_property(sipe_private, uri, SIPE_BUDDY_INFO_WORK_PHONE, tel_uri);
849 sipe_buddy_update_property(sipe_private, uri, SIPE_BUDDY_INFO_WORK_PHONE_DISPLAY, phone_number);
850 g_free(tel_uri);
853 if (!is_empty(server_alias)) {
854 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
855 info,
856 SIPE_BUDDY_INFO_DISPLAY_NAME,
857 server_alias);
859 if ((value = sipe_xml_attribute(mrow, "title")) && strlen(value) > 0) {
860 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
861 info,
862 SIPE_BUDDY_INFO_JOB_TITLE,
863 value);
865 if ((value = sipe_xml_attribute(mrow, "office")) && strlen(value) > 0) {
866 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
867 info,
868 SIPE_BUDDY_INFO_OFFICE,
869 value);
871 if (!is_empty(phone_number)) {
872 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
873 info,
874 SIPE_BUDDY_INFO_WORK_PHONE,
875 phone_number);
877 g_free(phone_number);
878 if ((value = sipe_xml_attribute(mrow, "company")) && strlen(value) > 0) {
879 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
880 info,
881 SIPE_BUDDY_INFO_COMPANY,
882 value);
884 if ((value = sipe_xml_attribute(mrow, "city")) && strlen(value) > 0) {
885 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
886 info,
887 SIPE_BUDDY_INFO_CITY,
888 value);
890 if ((value = sipe_xml_attribute(mrow, "state")) && strlen(value) > 0) {
891 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
892 info,
893 SIPE_BUDDY_INFO_STATE,
894 value);
896 if ((value = sipe_xml_attribute(mrow, "country")) && strlen(value) > 0) {
897 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
898 info,
899 SIPE_BUDDY_INFO_COUNTRY,
900 value);
902 if (!is_empty(email)) {
903 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
904 info,
905 SIPE_BUDDY_INFO_EMAIL,
906 email);
909 sipe_xml_free(searchResults);
912 /* this will show the minmum information */
913 get_info_finalize(sipe_private,
914 info,
915 uri,
916 server_alias,
917 email);
919 g_free(server_alias);
920 g_free(email);
922 return TRUE;
925 void sipe_core_buddy_get_info(struct sipe_core_public *sipe_public,
926 const gchar *who)
928 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
930 if (sipe_private->dlx_uri) {
931 gchar *payload = g_strdup(who);
933 if (!sipe_webticket_request(sipe_private,
934 sipe_private->dlx_uri,
935 "AddressBookWebTicketBearer",
936 ms_dlx_webticket,
937 payload)) {
938 SIPE_DEBUG_ERROR("sipe_core_buddy_get_info: couldn't request webticket for %s",
939 sipe_private->dlx_uri);
941 /* this will show the minmum information */
942 get_info_finalize(sipe_private,
943 NULL,
944 payload,
945 NULL,
946 NULL);
948 g_free(payload);
950 } else {
951 /* no [MS-DLX] server, use Active Directory search instead */
952 gchar *row = g_markup_printf_escaped(SIPE_SOAP_SEARCH_ROW,
953 "msRTCSIP-PrimaryUserAddress",
954 who);
955 struct transaction_payload *payload = g_new0(struct transaction_payload, 1);
957 SIPE_DEBUG_INFO("sipe_core_buddy_get_info: row: %s",
958 row ? row : "");
960 payload->destroy = g_free;
961 payload->data = g_strdup(who);
963 sip_soap_directory_search(sipe_private,
965 row,
966 process_get_info_response,
967 payload);
968 g_free(row);
972 /* Buddy menu callbacks*/
974 void sipe_core_buddy_new_chat(struct sipe_core_public *sipe_public,
975 const gchar *who)
977 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
979 /* 2007+ conference */
980 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007)) {
981 sipe_conf_add(sipe_private, who);
983 /* 2005- multiparty chat */
984 } else {
985 gchar *self = sip_uri_self(sipe_private);
986 struct sip_session *session;
988 session = sipe_session_add_chat(sipe_private,
989 NULL,
990 TRUE,
991 self);
992 session->chat_session->backend = sipe_backend_chat_create(SIPE_CORE_PUBLIC,
993 session->chat_session,
994 session->chat_session->title,
995 self);
996 g_free(self);
998 sipe_im_invite(sipe_private, session, who,
999 NULL, NULL, NULL, FALSE);
1003 void sipe_core_buddy_send_email(struct sipe_core_public *sipe_public,
1004 const gchar *who)
1006 sipe_backend_buddy buddy = sipe_backend_buddy_find(sipe_public,
1007 who,
1008 NULL);
1009 gchar *email = sipe_backend_buddy_get_string(sipe_public,
1010 buddy,
1011 SIPE_BUDDY_INFO_EMAIL);
1013 if (email) {
1014 gchar *command_line = g_strdup_printf(
1015 #ifdef _WIN32
1016 "cmd /c start"
1017 #else
1018 "xdg-email"
1019 #endif
1020 " mailto:%s", email);
1021 g_free(email);
1023 SIPE_DEBUG_INFO("sipe_core_buddy_send_email: going to call email client: %s",
1024 command_line);
1025 g_spawn_command_line_async(command_line, NULL);
1026 g_free(command_line);
1028 } else {
1029 SIPE_DEBUG_INFO("sipe_core_buddy_send_email: no email address stored for buddy=%s",
1030 who);
1034 /* Buddy menu */
1036 static struct sipe_backend_buddy_menu *buddy_menu_phone(struct sipe_core_public *sipe_public,
1037 struct sipe_backend_buddy_menu *menu,
1038 sipe_backend_buddy buddy,
1039 sipe_buddy_info_fields id_phone,
1040 sipe_buddy_info_fields id_display,
1041 const gchar *type)
1043 gchar *phone = sipe_backend_buddy_get_string(sipe_public,
1044 buddy,
1045 id_phone);
1046 if (phone) {
1047 gchar *display = sipe_backend_buddy_get_string(sipe_public,
1048 buddy,
1049 id_display);
1050 gchar *tmp = NULL;
1051 gchar *label = g_strdup_printf("%s %s",
1052 type,
1053 display ? display :
1054 (tmp = sip_tel_uri_denormalize(phone)));
1055 menu = sipe_backend_buddy_menu_add(sipe_public,
1056 menu,
1057 label,
1058 SIPE_BUDDY_MENU_MAKE_CALL,
1059 phone);
1060 g_free(tmp);
1061 g_free(label);
1062 g_free(display);
1063 g_free(phone);
1066 return(menu);
1069 struct sipe_backend_buddy_menu *sipe_core_buddy_create_menu(struct sipe_core_public *sipe_public,
1070 const gchar *buddy_name,
1071 struct sipe_backend_buddy_menu *menu)
1073 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
1074 sipe_backend_buddy buddy = sipe_backend_buddy_find(sipe_public,
1075 buddy_name,
1076 NULL);
1077 gchar *self = sip_uri_self(sipe_private);
1079 SIPE_SESSION_FOREACH {
1080 if (!sipe_strcase_equal(self, buddy_name) && session->chat_session)
1082 struct sipe_chat_session *chat_session = session->chat_session;
1083 gboolean is_conf = (chat_session->type == SIPE_CHAT_TYPE_CONFERENCE);
1085 if (sipe_backend_chat_find(chat_session->backend, buddy_name))
1087 gboolean conf_op = sipe_backend_chat_is_operator(chat_session->backend, self);
1089 if (is_conf &&
1090 /* Not conf OP */
1091 !sipe_backend_chat_is_operator(chat_session->backend, buddy_name) &&
1092 /* We are a conf OP */
1093 conf_op) {
1094 gchar *label = g_strdup_printf(_("Make leader of '%s'"),
1095 chat_session->title);
1096 menu = sipe_backend_buddy_menu_add(sipe_public,
1097 menu,
1098 label,
1099 SIPE_BUDDY_MENU_MAKE_CHAT_LEADER,
1100 chat_session);
1101 g_free(label);
1104 if (is_conf &&
1105 /* We are a conf OP */
1106 conf_op) {
1107 gchar *label = g_strdup_printf(_("Remove from '%s'"),
1108 chat_session->title);
1109 menu = sipe_backend_buddy_menu_add(sipe_public,
1110 menu,
1111 label,
1112 SIPE_BUDDY_MENU_REMOVE_FROM_CHAT,
1113 chat_session);
1114 g_free(label);
1117 else
1119 if (!is_conf ||
1120 (is_conf && !session->locked)) {
1121 gchar *label = g_strdup_printf(_("Invite to '%s'"),
1122 chat_session->title);
1123 menu = sipe_backend_buddy_menu_add(sipe_public,
1124 menu,
1125 label,
1126 SIPE_BUDDY_MENU_INVITE_TO_CHAT,
1127 chat_session);
1128 g_free(label);
1132 } SIPE_SESSION_FOREACH_END;
1133 g_free(self);
1135 menu = sipe_backend_buddy_menu_add(sipe_public,
1136 menu,
1137 _("New chat"),
1138 SIPE_BUDDY_MENU_NEW_CHAT,
1139 NULL);
1141 /* add buddy's phone numbers if we have call control */
1142 if (sip_csta_is_idle(sipe_private)) {
1144 /* work phone */
1145 menu = buddy_menu_phone(sipe_public,
1146 menu,
1147 buddy,
1148 SIPE_BUDDY_INFO_WORK_PHONE,
1149 SIPE_BUDDY_INFO_WORK_PHONE_DISPLAY,
1150 _("Work"));
1151 /* mobile phone */
1152 menu = buddy_menu_phone(sipe_public,
1153 menu,
1154 buddy,
1155 SIPE_BUDDY_INFO_MOBILE_PHONE,
1156 SIPE_BUDDY_INFO_MOBILE_PHONE_DISPLAY,
1157 _("Mobile"));
1159 /* home phone */
1160 menu = buddy_menu_phone(sipe_public,
1161 menu,
1162 buddy,
1163 SIPE_BUDDY_INFO_HOME_PHONE,
1164 SIPE_BUDDY_INFO_HOME_PHONE_DISPLAY,
1165 _("Home"));
1167 /* other phone */
1168 menu = buddy_menu_phone(sipe_public,
1169 menu,
1170 buddy,
1171 SIPE_BUDDY_INFO_OTHER_PHONE,
1172 SIPE_BUDDY_INFO_OTHER_PHONE_DISPLAY,
1173 _("Other"));
1175 /* custom1 phone */
1176 menu = buddy_menu_phone(sipe_public,
1177 menu,
1178 buddy,
1179 SIPE_BUDDY_INFO_CUSTOM1_PHONE,
1180 SIPE_BUDDY_INFO_CUSTOM1_PHONE_DISPLAY,
1181 _("Custom1"));
1185 gchar *email = sipe_backend_buddy_get_string(sipe_public,
1186 buddy,
1187 SIPE_BUDDY_INFO_EMAIL);
1188 if (email) {
1189 menu = sipe_backend_buddy_menu_add(sipe_public,
1190 menu,
1191 _("Send email..."),
1192 SIPE_BUDDY_MENU_SEND_EMAIL,
1193 NULL);
1194 g_free(email);
1198 /* access level control */
1199 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007))
1200 menu = sipe_backend_buddy_sub_menu_add(sipe_public,
1201 menu,
1202 _("Access level"),
1203 sipe_ocs2007_access_control_menu(sipe_private,
1204 buddy_name));
1206 return(menu);
1210 Local Variables:
1211 mode: c
1212 c-file-style: "bsd"
1213 indent-tabs-mode: t
1214 tab-width: 8
1215 End: