buddy: allow to disable photo functionality on a per backend basis
[siplcs.git] / src / core / sipe-buddy.c
blob270b2650019e3836e519b4c85694db00c258d2d9
1 /**
2 * @file sipe-buddy.c
4 * pidgin-sipe
6 * Copyright (C) 2010-12 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 <stdlib.h>
28 #include <string.h>
29 #include <time.h>
31 #include <glib.h>
33 #include "http-conn.h"
34 #include "sipe-common.h"
35 #include "sipmsg.h"
36 #include "sip-csta.h"
37 #include "sip-soap.h"
38 #include "sip-transport.h"
39 #include "sipe-backend.h"
40 #include "sipe-buddy.h"
41 #include "sipe-cal.h"
42 #include "sipe-chat.h"
43 #include "sipe-conf.h"
44 #include "sipe-core.h"
45 #include "sipe-core-private.h"
46 #include "sipe-group.h"
47 #include "sipe-im.h"
48 #include "sipe-nls.h"
49 #include "sipe-ocs2005.h"
50 #include "sipe-ocs2007.h"
51 #include "sipe-schedule.h"
52 #include "sipe-session.h"
53 #include "sipe-status.h"
54 #include "sipe-subscriptions.h"
55 #include "sipe-svc.h"
56 #include "sipe-utils.h"
57 #include "sipe-webticket.h"
58 #include "sipe-xml.h"
60 struct photo_response_data {
61 struct sipe_core_private *sipe_private;
62 gchar *who;
63 gchar *photo_hash;
64 HttpConn *conn;
67 static void buddy_fetch_photo(struct sipe_core_private *sipe_private,
68 const gchar *uri);
69 static void photo_response_data_free(struct photo_response_data *data);
71 struct sipe_buddy *sipe_buddy_add(struct sipe_core_private *sipe_private,
72 const gchar *uri)
74 struct sipe_buddy *buddy = g_hash_table_lookup(sipe_private->buddies, uri);
75 if (!buddy) {
76 buddy = g_new0(struct sipe_buddy, 1);
77 buddy->name = g_strdup(uri);
78 g_hash_table_insert(sipe_private->buddies, buddy->name, buddy);
80 SIPE_DEBUG_INFO("sipe_buddy_add: Added buddy %s", uri);
82 buddy_fetch_photo(sipe_private, uri);
83 } else {
84 SIPE_DEBUG_INFO("sipe_buddy_add: Buddy %s already exists", uri);
87 return buddy;
90 static void buddy_free(struct sipe_buddy *buddy)
92 #ifndef _WIN32
94 * We are calling g_hash_table_foreach_steal(). That means that no
95 * key/value deallocation functions are called. Therefore the glib
96 * hash code does not touch the key (buddy->name) or value (buddy)
97 * of the to-be-deleted hash node at all. It follows that we
99 * - MUST free the memory for the key ourselves and
100 * - ARE allowed to do it in this function
102 * Conclusion: glib must be broken on the Windows platform if sipe
103 * crashes with SIGTRAP when closing. You'll have to live
104 * with the memory leak until this is fixed.
106 g_free(buddy->name);
107 #endif
108 g_free(buddy->activity);
109 g_free(buddy->meeting_subject);
110 g_free(buddy->meeting_location);
111 g_free(buddy->note);
113 g_free(buddy->cal_start_time);
114 g_free(buddy->cal_free_busy_base64);
115 g_free(buddy->cal_free_busy);
116 g_free(buddy->last_non_cal_activity);
118 sipe_cal_free_working_hours(buddy->cal_working_hours);
120 g_free(buddy->device_name);
121 g_slist_free(buddy->groups);
122 g_free(buddy);
125 static gboolean buddy_free_cb(SIPE_UNUSED_PARAMETER gpointer key,
126 gpointer buddy,
127 SIPE_UNUSED_PARAMETER gpointer user_data)
129 buddy_free(buddy);
130 /* We must return TRUE as the key/value have already been deleted */
131 return(TRUE);
134 void sipe_buddy_free_all(struct sipe_core_private *sipe_private)
136 g_hash_table_foreach_steal(sipe_private->buddies,
137 buddy_free_cb,
138 NULL);
140 /* core is being deallocated, remove all its pending photo requests */
141 while (sipe_private->pending_photo_requests) {
142 struct photo_response_data *data =
143 sipe_private->pending_photo_requests->data;
144 sipe_private->pending_photo_requests =
145 g_slist_remove(sipe_private->pending_photo_requests, data);
146 photo_response_data_free(data);
150 gchar *sipe_core_buddy_status(struct sipe_core_public *sipe_public,
151 const gchar *uri,
152 guint activity,
153 const gchar *status_text)
155 struct sipe_buddy *sbuddy;
156 const char *activity_str;
158 if (!sipe_public) return NULL; /* happens on pidgin exit */
160 sbuddy = g_hash_table_lookup(SIPE_CORE_PRIVATE->buddies, uri);
161 if (!sbuddy) return NULL;
163 activity_str = sbuddy->activity ? sbuddy->activity :
164 (activity == SIPE_ACTIVITY_BUSY) || (activity == SIPE_ACTIVITY_BRB) ?
165 status_text : NULL;
167 if (activity_str && sbuddy->note) {
168 return g_strdup_printf("%s - <i>%s</i>", activity_str, sbuddy->note);
169 } else if (activity_str) {
170 return g_strdup(activity_str);
171 } else if (sbuddy->note) {
172 return g_strdup_printf("<i>%s</i>", sbuddy->note);
173 } else {
174 return NULL;
178 gchar *sipe_buddy_get_alias(struct sipe_core_private *sipe_private,
179 const gchar *with)
181 sipe_backend_buddy pbuddy;
182 gchar *alias = NULL;
183 if ((pbuddy = sipe_backend_buddy_find(SIPE_CORE_PUBLIC, with, NULL))) {
184 alias = sipe_backend_buddy_get_alias(SIPE_CORE_PUBLIC, pbuddy);
186 return alias;
189 void sipe_core_buddy_group(struct sipe_core_public *sipe_public,
190 const gchar *who,
191 const gchar *old_group_name,
192 const gchar *new_group_name)
194 struct sipe_buddy * buddy = g_hash_table_lookup(SIPE_CORE_PRIVATE->buddies, who);
195 struct sipe_group * old_group = NULL;
196 struct sipe_group * new_group;
198 SIPE_DEBUG_INFO("sipe_core_buddy_group: who:%s old_group_name:%s new_group_name:%s",
199 who ? who : "", old_group_name ? old_group_name : "", new_group_name ? new_group_name : "");
201 if(!buddy) { // buddy not in roaming list
202 return;
205 if (old_group_name) {
206 old_group = sipe_group_find_by_name(SIPE_CORE_PRIVATE, old_group_name);
208 new_group = sipe_group_find_by_name(SIPE_CORE_PRIVATE, new_group_name);
210 if (old_group) {
211 buddy->groups = g_slist_remove(buddy->groups, old_group);
212 SIPE_DEBUG_INFO("sipe_core_buddy_group: buddy %s removed from old group %s", who, old_group_name);
215 if (!new_group) {
216 sipe_group_create(SIPE_CORE_PRIVATE, new_group_name, who);
217 } else {
218 buddy->groups = slist_insert_unique_sorted(buddy->groups, new_group, (GCompareFunc)sipe_group_compare);
219 sipe_group_update_buddy(SIPE_CORE_PRIVATE, buddy);
223 void sipe_core_buddy_add(struct sipe_core_public *sipe_public,
224 const gchar *uri,
225 const gchar *group_name)
227 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
229 if (!g_hash_table_lookup(sipe_private->buddies, uri)) {
230 struct sipe_buddy *b = sipe_buddy_add(sipe_private, uri);
231 b->just_added = TRUE;
233 /* @TODO should go to callback */
234 sipe_subscribe_presence_single(sipe_private, b->name);
236 } else {
237 SIPE_DEBUG_INFO("sipe_core_buddy_add: buddy %s already in internal list",
238 uri);
241 sipe_core_buddy_group(sipe_public,
242 uri,
243 NULL,
244 group_name);
247 void sipe_buddy_remove(struct sipe_core_private *sipe_private,
248 struct sipe_buddy *buddy)
250 gchar *action_name = sipe_utils_presence_key(buddy->name);
251 sipe_schedule_cancel(sipe_private, action_name);
252 g_free(action_name);
254 g_hash_table_remove(sipe_private->buddies, buddy->name);
256 buddy_free(buddy);
260 * Unassociates buddy from group first.
261 * Then see if no groups left, removes buddy completely.
262 * Otherwise updates buddy groups on server.
264 void sipe_core_buddy_remove(struct sipe_core_public *sipe_public,
265 const gchar *uri,
266 const gchar *group_name)
268 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
269 struct sipe_buddy *b = g_hash_table_lookup(sipe_private->buddies,
270 uri);
272 if (!b) return;
274 if (group_name) {
275 struct sipe_group *g = sipe_group_find_by_name(sipe_private,
276 group_name);
277 if (g) {
278 b->groups = g_slist_remove(b->groups, g);
279 SIPE_DEBUG_INFO("sipe_core_buddy_remove: buddy %s removed from group %s",
280 uri, g->name);
284 if (g_slist_length(b->groups) < 1) {
285 gchar *request = g_strdup_printf("<m:URI>%s</m:URI>",
286 b->name);
287 sip_soap_request(sipe_private,
288 "deleteContact",
289 request);
290 g_free(request);
291 sipe_buddy_remove(sipe_private, b);
292 } else {
293 /* updates groups on server */
294 sipe_group_update_buddy(sipe_private, b);
299 void sipe_core_buddy_got_status(struct sipe_core_public *sipe_public,
300 const gchar *uri,
301 guint activity)
303 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
304 struct sipe_buddy *sbuddy = g_hash_table_lookup(sipe_private->buddies,
305 uri);
307 if (!sbuddy) return;
309 /* Check if on 2005 system contact's calendar,
310 * then set/preserve it.
312 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007)) {
313 sipe_backend_buddy_set_status(sipe_public, uri, activity);
314 } else {
315 sipe_ocs2005_apply_calendar_status(sipe_private,
316 sbuddy,
317 sipe_status_activity_to_token(activity));
321 void sipe_core_buddy_tooltip_info(struct sipe_core_public *sipe_public,
322 const gchar *uri,
323 const gchar *status_name,
324 gboolean is_online,
325 struct sipe_backend_buddy_tooltip *tooltip)
327 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
328 gchar *note = NULL;
329 gboolean is_oof_note = FALSE;
330 const gchar *activity = NULL;
331 gchar *calendar = NULL;
332 const gchar *meeting_subject = NULL;
333 const gchar *meeting_location = NULL;
334 gchar *access_text = NULL;
336 #define SIPE_ADD_BUDDY_INFO(l, t) \
338 gchar *tmp = g_markup_escape_text((t), -1); \
339 sipe_backend_buddy_tooltip_add(sipe_public, tooltip, (l), tmp); \
340 g_free(tmp); \
342 #define SIPE_ADD_BUDDY_INFO_NOESCAPE(l, t) \
343 sipe_backend_buddy_tooltip_add(sipe_public, tooltip, (l), (t))
345 if (sipe_public) { /* happens on pidgin exit */
346 struct sipe_buddy *sbuddy = g_hash_table_lookup(sipe_private->buddies, uri);
347 if (sbuddy) {
348 note = sbuddy->note;
349 is_oof_note = sbuddy->is_oof_note;
350 activity = sbuddy->activity;
351 calendar = sipe_cal_get_description(sbuddy);
352 meeting_subject = sbuddy->meeting_subject;
353 meeting_location = sbuddy->meeting_location;
355 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007)) {
356 gboolean is_group_access = FALSE;
357 const int container_id = sipe_ocs2007_find_access_level(sipe_private,
358 "user",
359 sipe_get_no_sip_uri(uri),
360 &is_group_access);
361 const char *access_level = sipe_ocs2007_access_level_name(container_id);
362 access_text = is_group_access ?
363 g_strdup(access_level) :
364 g_strdup_printf(SIPE_OCS2007_INDENT_MARKED_FMT,
365 access_level);
369 if (is_online) {
370 const gchar *status_str = activity ? activity : status_name;
372 SIPE_ADD_BUDDY_INFO(_("Status"), status_str);
374 if (is_online && !is_empty(calendar)) {
375 SIPE_ADD_BUDDY_INFO(_("Calendar"), calendar);
377 g_free(calendar);
378 if (!is_empty(meeting_location)) {
379 SIPE_DEBUG_INFO("sipe_tooltip_text: %s meeting location: '%s'", uri, meeting_location);
380 SIPE_ADD_BUDDY_INFO(_("Meeting in"), meeting_location);
382 if (!is_empty(meeting_subject)) {
383 SIPE_DEBUG_INFO("sipe_tooltip_text: %s meeting subject: '%s'", uri, meeting_subject);
384 SIPE_ADD_BUDDY_INFO(_("Meeting about"), meeting_subject);
386 if (note) {
387 SIPE_DEBUG_INFO("sipe_tooltip_text: %s note: '%s'", uri, note);
388 SIPE_ADD_BUDDY_INFO_NOESCAPE(is_oof_note ? _("Out of office note") : _("Note"),
389 g_strdup_printf("<i>%s</i>", note));
391 if (access_text) {
392 SIPE_ADD_BUDDY_INFO(_("Access level"), access_text);
393 g_free(access_text);
397 void sipe_buddy_update_property(struct sipe_core_private *sipe_private,
398 const char *uri,
399 sipe_buddy_info_fields propkey,
400 char *property_value)
402 GSList *buddies, *entry;
404 if (property_value)
405 property_value = g_strstrip(property_value);
407 entry = buddies = sipe_backend_buddy_find_all(SIPE_CORE_PUBLIC, uri, NULL); /* all buddies in different groups */
408 while (entry) {
409 gchar *prop_str;
410 sipe_backend_buddy p_buddy = entry->data;
412 /* for Display Name */
413 if (propkey == SIPE_BUDDY_INFO_DISPLAY_NAME) {
414 gchar *alias;
415 alias = sipe_backend_buddy_get_alias(SIPE_CORE_PUBLIC, p_buddy);
416 if (property_value && sipe_is_bad_alias(uri, alias)) {
417 SIPE_DEBUG_INFO("Replacing alias for %s with %s", uri, property_value);
418 sipe_backend_buddy_set_alias(SIPE_CORE_PUBLIC, p_buddy, property_value);
420 g_free(alias);
422 alias = sipe_backend_buddy_get_server_alias(SIPE_CORE_PUBLIC, p_buddy);
423 if (!is_empty(property_value) &&
424 (!sipe_strequal(property_value, alias) || is_empty(alias)) )
426 SIPE_DEBUG_INFO("Replacing service alias for %s with %s", uri, property_value);
427 sipe_backend_buddy_set_server_alias(SIPE_CORE_PUBLIC, p_buddy, property_value);
429 g_free(alias);
431 /* for other properties */
432 else {
433 if (!is_empty(property_value)) {
434 prop_str = sipe_backend_buddy_get_string(SIPE_CORE_PUBLIC, p_buddy, propkey);
435 if (!prop_str || !sipe_strcase_equal(prop_str, property_value)) {
436 sipe_backend_buddy_set_string(SIPE_CORE_PUBLIC, p_buddy, propkey, property_value);
438 g_free(prop_str);
442 entry = entry->next;
444 g_slist_free(buddies);
448 struct ms_dlx_data;
449 struct ms_dlx_data {
450 GSList *search_rows;
451 gchar *other;
452 guint max_returns;
453 sipe_svc_callback *callback;
454 struct sipe_svc_session *session;
455 gchar *wsse_security;
456 struct sipe_backend_search_token *token;
457 /* must call ms_dlx_free() */
458 void (*failed_callback)(struct sipe_core_private *sipe_private,
459 struct ms_dlx_data *mdd);
462 static void ms_dlx_free(struct ms_dlx_data *mdd)
464 GSList *entry = mdd->search_rows;
465 while (entry) {
466 g_free(entry->data);
467 entry = entry->next;
469 g_slist_free(mdd->search_rows);
470 sipe_svc_session_close(mdd->session);
471 g_free(mdd->other);
472 g_free(mdd->wsse_security);
473 g_free(mdd);
476 #define SIPE_SOAP_SEARCH_ROW "<m:row m:attrib=\"%s\" m:value=\"%s\"/>"
477 #define DLX_SEARCH_ITEM \
478 "<AbEntryRequest.ChangeSearchQuery>" \
479 " <SearchOn>%s</SearchOn>" \
480 " <Value>%s</Value>" \
481 "</AbEntryRequest.ChangeSearchQuery>"
483 static gchar * prepare_buddy_search_query(GSList *query_rows, gboolean use_dlx) {
484 gchar **attrs = g_new(gchar *, (g_slist_length(query_rows) / 2) + 1);
485 guint i = 0;
486 gchar *query = NULL;
488 while (query_rows) {
489 gchar *attr;
490 gchar *value;
492 attr = query_rows->data;
493 query_rows = g_slist_next(query_rows);
494 value = query_rows->data;
495 query_rows = g_slist_next(query_rows);
497 if (!attr || !value)
498 break;
500 attrs[i++] = g_markup_printf_escaped(use_dlx ? DLX_SEARCH_ITEM : SIPE_SOAP_SEARCH_ROW,
501 attr, value);
503 attrs[i] = NULL;
505 if (i) {
506 query = g_strjoinv(NULL, attrs);
507 SIPE_DEBUG_INFO("prepare_buddy_search_query: rows:\n%s",
508 query ? query : "");
511 g_strfreev(attrs);
513 return query;
516 static void ms_dlx_webticket(struct sipe_core_private *sipe_private,
517 const gchar *base_uri,
518 const gchar *auth_uri,
519 const gchar *wsse_security,
520 gpointer callback_data)
522 struct ms_dlx_data *mdd = callback_data;
524 if (wsse_security) {
525 gchar *query = prepare_buddy_search_query(mdd->search_rows, TRUE);
527 SIPE_DEBUG_INFO("ms_dlx_webticket: got ticket for %s",
528 base_uri);
530 if (sipe_svc_ab_entry_request(sipe_private,
531 mdd->session,
532 auth_uri,
533 wsse_security,
534 query,
535 g_slist_length(mdd->search_rows) / 2,
536 mdd->max_returns,
537 mdd->callback,
538 mdd)) {
540 /* keep webticket security token for potential further use */
541 mdd->wsse_security = g_strdup(wsse_security);
543 /* callback data passed down the line */
544 mdd = NULL;
546 g_free(query);
548 } else {
549 /* no ticket: this will show the minmum information */
550 SIPE_DEBUG_ERROR("ms_dlx_webticket: no web ticket for %s",
551 base_uri);
554 if (mdd)
555 mdd->failed_callback(sipe_private, mdd);
558 static void ms_dlx_webticket_request(struct sipe_core_private *sipe_private,
559 struct ms_dlx_data *mdd)
561 if (!sipe_webticket_request(sipe_private,
562 mdd->session,
563 sipe_private->dlx_uri,
564 "AddressBookWebTicketBearer",
565 ms_dlx_webticket,
566 mdd)) {
567 SIPE_DEBUG_ERROR("ms_dlx_webticket_request: couldn't request webticket for %s",
568 sipe_private->dlx_uri);
569 mdd->failed_callback(sipe_private, mdd);
573 static void search_contacts_finalize(struct sipe_core_private *sipe_private,
574 struct sipe_backend_search_results *results,
575 guint match_count,
576 gboolean more)
578 gchar *secondary = g_strdup_printf(
579 dngettext(PACKAGE_NAME,
580 "Found %d contact%s:",
581 "Found %d contacts%s:", match_count),
582 match_count, more ? _(" (more matched your query)") : "");
584 sipe_backend_search_results_finalize(SIPE_CORE_PUBLIC,
585 results,
586 secondary,
587 more);
588 g_free(secondary);
591 static void search_ab_entry_response(struct sipe_core_private *sipe_private,
592 const gchar *uri,
593 SIPE_UNUSED_PARAMETER const gchar *raw,
594 sipe_xml *soap_body,
595 gpointer callback_data)
597 struct ms_dlx_data *mdd = callback_data;
599 if (soap_body) {
600 const sipe_xml *node;
601 struct sipe_backend_search_results *results;
602 GHashTable *found;
604 SIPE_DEBUG_INFO("search_ab_entry_response: received valid SOAP message from service %s",
605 uri);
607 /* any matches? */
608 node = sipe_xml_child(soap_body, "Body/SearchAbEntryResponse/SearchAbEntryResult/Items/AbEntry");
609 if (!node) {
610 SIPE_DEBUG_ERROR_NOFORMAT("search_ab_entry_response: no matches");
611 sipe_backend_search_failed(SIPE_CORE_PUBLIC,
612 mdd->token,
613 _("No contacts found"));
614 ms_dlx_free(mdd);
615 return;
618 /* OK, we found something - show the results to the user */
619 results = sipe_backend_search_results_start(SIPE_CORE_PUBLIC,
620 mdd->token);
621 if (!results) {
622 SIPE_DEBUG_ERROR_NOFORMAT("search_ab_entry_response: Unable to display the search results.");
623 sipe_backend_search_failed(SIPE_CORE_PUBLIC,
624 mdd->token,
625 _("Unable to display the search results"));
626 ms_dlx_free(mdd);
627 return;
630 /* SearchAbEntryResult can contain duplicates */
631 found = g_hash_table_new_full(g_str_hash, g_str_equal,
632 g_free, NULL);
634 for (/* initialized above */ ; node; node = sipe_xml_twin(node)) {
635 const sipe_xml *attrs;
636 gchar *sip_uri = NULL;
637 gchar *displayname = NULL;
638 gchar *company = NULL;
639 gchar *country = NULL;
640 gchar *email = NULL;
642 for (attrs = sipe_xml_child(node, "Attributes/Attribute");
643 attrs;
644 attrs = sipe_xml_twin(attrs)) {
645 gchar *name = sipe_xml_data(sipe_xml_child(attrs,
646 "Name"));
647 gchar *value = sipe_xml_data(sipe_xml_child(attrs,
648 "Value"));
650 if (!is_empty(value)) {
651 if (sipe_strcase_equal(name, "msrtcsip-primaryuseraddress")) {
652 g_free(sip_uri);
653 sip_uri = value;
654 value = NULL;
655 } else if (sipe_strcase_equal(name, "displayname")) {
656 g_free(displayname);
657 displayname = value;
658 value = NULL;
659 } else if (sipe_strcase_equal(name, "mail")) {
660 g_free(email);
661 email = value;
662 value = NULL;
663 } else if (sipe_strcase_equal(name, "company")) {
664 g_free(company);
665 company = value;
666 value = NULL;
667 } else if (sipe_strcase_equal(name, "country")) {
668 g_free(country);
669 country = value;
670 value = NULL;
674 g_free(value);
675 g_free(name);
678 if (sip_uri && !g_hash_table_lookup(found, sip_uri)) {
679 gchar **uri_parts = g_strsplit(sip_uri, ":", 2);
680 sipe_backend_search_results_add(SIPE_CORE_PUBLIC,
681 results,
682 uri_parts[1],
683 displayname,
684 company,
685 country,
686 email);
687 g_strfreev(uri_parts);
689 g_hash_table_insert(found, sip_uri, (gpointer) TRUE);
690 sip_uri = NULL;
693 g_free(email);
694 g_free(country);
695 g_free(company);
696 g_free(displayname);
697 g_free(sip_uri);
700 search_contacts_finalize(sipe_private, results,
701 g_hash_table_size(found),
702 FALSE);
703 g_hash_table_destroy(found);
704 ms_dlx_free(mdd);
706 } else {
707 mdd->failed_callback(sipe_private, mdd);
711 static gboolean process_search_contact_response(struct sipe_core_private *sipe_private,
712 struct sipmsg *msg,
713 struct transaction *trans)
715 struct sipe_backend_search_token *token = trans->payload->data;
716 struct sipe_backend_search_results *results;
717 sipe_xml *searchResults;
718 const sipe_xml *mrow;
719 guint match_count = 0;
720 gboolean more = FALSE;
722 /* valid response? */
723 if (msg->response != 200) {
724 SIPE_DEBUG_ERROR("process_search_contact_response: request failed (%d)",
725 msg->response);
726 sipe_backend_search_failed(SIPE_CORE_PUBLIC,
727 token,
728 _("Contact search failed"));
729 return(FALSE);
732 SIPE_DEBUG_INFO("process_search_contact_response: body:\n%s", msg->body ? msg->body : "");
734 /* valid XML? */
735 searchResults = sipe_xml_parse(msg->body, msg->bodylen);
736 if (!searchResults) {
737 SIPE_DEBUG_INFO_NOFORMAT("process_search_contact_response: no parseable searchResults");
738 sipe_backend_search_failed(SIPE_CORE_PUBLIC,
739 token,
740 _("Contact search failed"));
741 return(FALSE);
744 /* any matches? */
745 mrow = sipe_xml_child(searchResults, "Body/Array/row");
746 if (!mrow) {
747 SIPE_DEBUG_ERROR_NOFORMAT("process_search_contact_response: no matches");
748 sipe_backend_search_failed(SIPE_CORE_PUBLIC,
749 token,
750 _("No contacts found"));
752 sipe_xml_free(searchResults);
753 return(FALSE);
756 /* OK, we found something - show the results to the user */
757 results = sipe_backend_search_results_start(SIPE_CORE_PUBLIC,
758 trans->payload->data);
759 if (!results) {
760 SIPE_DEBUG_ERROR_NOFORMAT("process_search_contact_response: Unable to display the search results.");
761 sipe_backend_search_failed(SIPE_CORE_PUBLIC,
762 token,
763 _("Unable to display the search results"));
765 sipe_xml_free(searchResults);
766 return FALSE;
769 for (/* initialized above */ ; mrow; mrow = sipe_xml_twin(mrow)) {
770 gchar **uri_parts = g_strsplit(sipe_xml_attribute(mrow, "uri"), ":", 2);
771 sipe_backend_search_results_add(SIPE_CORE_PUBLIC,
772 results,
773 uri_parts[1],
774 sipe_xml_attribute(mrow, "displayName"),
775 sipe_xml_attribute(mrow, "company"),
776 sipe_xml_attribute(mrow, "country"),
777 sipe_xml_attribute(mrow, "email"));
778 g_strfreev(uri_parts);
779 match_count++;
782 if ((mrow = sipe_xml_child(searchResults, "Body/directorySearch/moreAvailable")) != NULL) {
783 char *data = sipe_xml_data(mrow);
784 more = (g_ascii_strcasecmp(data, "true") == 0);
785 g_free(data);
788 search_contacts_finalize(sipe_private, results, match_count, more);
789 sipe_xml_free(searchResults);
791 return(TRUE);
794 static void search_soap_request(struct sipe_core_private *sipe_private,
795 struct sipe_backend_search_token *token,
796 GSList *search_rows)
798 gchar *query = prepare_buddy_search_query(search_rows, FALSE);
799 struct transaction_payload *payload = g_new0(struct transaction_payload, 1);
801 payload->data = token;
803 sip_soap_directory_search(sipe_private,
804 100,
805 query,
806 process_search_contact_response,
807 payload);
808 g_free(query);
811 static void search_ab_entry_failed(struct sipe_core_private *sipe_private,
812 struct ms_dlx_data *mdd)
814 /* error using [MS-DLX] server, retry using Active Directory */
815 search_soap_request(sipe_private, mdd->token, mdd->search_rows);
816 ms_dlx_free(mdd);
819 void sipe_core_buddy_search(struct sipe_core_public *sipe_public,
820 struct sipe_backend_search_token *token,
821 const gchar *given_name,
822 const gchar *surname,
823 const gchar *email,
824 const gchar *company,
825 const gchar *country)
827 GSList *query_rows = NULL;
829 #define ADD_QUERY_ROW(attr, val) \
830 if (val) { \
831 query_rows = g_slist_append(query_rows, g_strdup(attr)); \
832 query_rows = g_slist_append(query_rows, g_strdup(val)); \
835 ADD_QUERY_ROW("givenName", given_name);
836 ADD_QUERY_ROW("sn", surname);
837 ADD_QUERY_ROW("mail", email);
838 ADD_QUERY_ROW("company", company);
839 ADD_QUERY_ROW("c", country);
841 if (query_rows) {
842 if (SIPE_CORE_PRIVATE->dlx_uri != NULL) {
843 struct ms_dlx_data *mdd = g_new0(struct ms_dlx_data, 1);
845 mdd->search_rows = query_rows;
846 mdd->max_returns = 100;
847 mdd->callback = search_ab_entry_response;
848 mdd->failed_callback = search_ab_entry_failed;
849 mdd->session = sipe_svc_session_start();
850 mdd->token = token;
852 ms_dlx_webticket_request(SIPE_CORE_PRIVATE, mdd);
854 } else {
855 /* no [MS-DLX] server, use Active Directory search instead */
856 search_soap_request(SIPE_CORE_PRIVATE, token, query_rows);
857 g_slist_free(query_rows);
859 } else
860 sipe_backend_search_failed(sipe_public,
861 token,
862 _("Invalid contact search query"));
865 static void get_info_finalize(struct sipe_core_private *sipe_private,
866 struct sipe_backend_buddy_info *info,
867 const gchar *uri,
868 const gchar *server_alias,
869 const gchar *email)
871 sipe_backend_buddy bbuddy;
872 struct sipe_buddy *sbuddy;
873 gchar *alias;
874 gchar *value;
876 if (!info) {
877 info = sipe_backend_buddy_info_start(SIPE_CORE_PUBLIC);
878 } else {
879 sipe_backend_buddy_info_break(SIPE_CORE_PUBLIC, info);
881 if (!info)
882 return;
884 bbuddy = sipe_backend_buddy_find(SIPE_CORE_PUBLIC, uri, NULL);
886 if (is_empty(server_alias)) {
887 value = sipe_backend_buddy_get_server_alias(SIPE_CORE_PUBLIC,
888 bbuddy);
889 if (value) {
890 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
891 info,
892 SIPE_BUDDY_INFO_DISPLAY_NAME,
893 value);
895 } else {
896 value = g_strdup(server_alias);
899 /* present alias if it differs from server alias */
900 alias = sipe_backend_buddy_get_local_alias(SIPE_CORE_PUBLIC, bbuddy);
901 if (alias && !sipe_strequal(alias, value))
903 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
904 info,
905 SIPE_BUDDY_INFO_ALIAS,
906 alias);
908 g_free(alias);
909 g_free(value);
911 if (is_empty(email)) {
912 value = sipe_backend_buddy_get_string(SIPE_CORE_PUBLIC,
913 bbuddy,
914 SIPE_BUDDY_INFO_EMAIL);
915 if (value) {
916 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
917 info,
918 SIPE_BUDDY_INFO_EMAIL,
919 value);
920 g_free(value);
924 value = sipe_backend_buddy_get_string(SIPE_CORE_PUBLIC,
925 bbuddy,
926 SIPE_BUDDY_INFO_SITE);
927 if (value) {
928 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
929 info,
930 SIPE_BUDDY_INFO_SITE,
931 value);
932 g_free(value);
935 sbuddy = g_hash_table_lookup(sipe_private->buddies, uri);
936 if (sbuddy && sbuddy->device_name) {
937 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
938 info,
939 SIPE_BUDDY_INFO_DEVICE,
940 sbuddy->device_name);
943 sipe_backend_buddy_info_finalize(SIPE_CORE_PUBLIC, info, uri);
947 static void get_info_ab_entry_response(struct sipe_core_private *sipe_private,
948 const gchar *uri,
949 SIPE_UNUSED_PARAMETER const gchar *raw,
950 sipe_xml *soap_body,
951 gpointer callback_data)
953 struct ms_dlx_data *mdd = callback_data;
954 struct sipe_backend_buddy_info *info = NULL;
955 gchar *server_alias = NULL;
956 gchar *email = NULL;
958 if (soap_body) {
959 const sipe_xml *node;
961 SIPE_DEBUG_INFO("get_info_ab_entry_response: received valid SOAP message from service %s",
962 uri);
964 info = sipe_backend_buddy_info_start(SIPE_CORE_PUBLIC);
966 for (node = sipe_xml_child(soap_body, "Body/SearchAbEntryResponse/SearchAbEntryResult/Items/AbEntry/Attributes/Attribute");
967 node;
968 node = sipe_xml_twin(node)) {
969 gchar *name = sipe_xml_data(sipe_xml_child(node,
970 "Name"));
971 gchar *value = sipe_xml_data(sipe_xml_child(node,
972 "Value"));
973 const sipe_xml *values = sipe_xml_child(node,
974 "Values");
976 /* Single value entries */
977 if (!is_empty(value)) {
979 if (sipe_strcase_equal(name, "displayname")) {
980 g_free(server_alias);
981 server_alias = value;
982 value = NULL;
983 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
984 info,
985 SIPE_BUDDY_INFO_DISPLAY_NAME,
986 server_alias);
987 } else if (sipe_strcase_equal(name, "mail")) {
988 g_free(email);
989 email = value;
990 value = NULL;
991 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
992 info,
993 SIPE_BUDDY_INFO_EMAIL,
994 email);
995 } else if (sipe_strcase_equal(name, "title")) {
996 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
997 info,
998 SIPE_BUDDY_INFO_JOB_TITLE,
999 value);
1000 } else if (sipe_strcase_equal(name, "company")) {
1001 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1002 info,
1003 SIPE_BUDDY_INFO_COMPANY,
1004 value);
1005 } else if (sipe_strcase_equal(name, "country")) {
1006 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1007 info,
1008 SIPE_BUDDY_INFO_COUNTRY,
1009 value);
1012 } else if (values) {
1013 gchar *first = sipe_xml_data(sipe_xml_child(values,
1014 "string"));
1016 if (sipe_strcase_equal(name, "telephonenumber")) {
1017 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1018 info,
1019 SIPE_BUDDY_INFO_WORK_PHONE,
1020 first);
1023 g_free(first);
1026 g_free(value);
1027 g_free(name);
1031 /* this will show the minmum information */
1032 get_info_finalize(sipe_private,
1033 info,
1034 mdd->other,
1035 server_alias,
1036 email);
1038 g_free(email);
1039 g_free(server_alias);
1040 ms_dlx_free(mdd);
1043 static gboolean process_get_info_response(struct sipe_core_private *sipe_private,
1044 struct sipmsg *msg,
1045 struct transaction *trans)
1047 const gchar *uri = trans->payload->data;
1048 struct sipe_backend_buddy_info *info = NULL;
1049 gchar *server_alias = NULL;
1050 gchar *email = NULL;
1052 SIPE_DEBUG_INFO("Fetching %s's user info for %s",
1053 uri, sipe_private->username);
1055 if (msg->response != 200) {
1056 SIPE_DEBUG_INFO("process_get_info_response: SERVICE response is %d", msg->response);
1057 } else {
1058 sipe_xml *searchResults;
1059 const sipe_xml *mrow;
1061 SIPE_DEBUG_INFO("process_get_info_response: body:\n%s",
1062 msg->body ? msg->body : "");
1064 searchResults = sipe_xml_parse(msg->body, msg->bodylen);
1065 if (!searchResults) {
1067 SIPE_DEBUG_INFO_NOFORMAT("process_get_info_response: no parseable searchResults");
1069 } else if ((mrow = sipe_xml_child(searchResults, "Body/Array/row"))) {
1070 const gchar *value;
1071 gchar *phone_number;
1073 info = sipe_backend_buddy_info_start(SIPE_CORE_PUBLIC);
1075 server_alias = g_strdup(sipe_xml_attribute(mrow, "displayName"));
1076 email = g_strdup(sipe_xml_attribute(mrow, "email"));
1077 phone_number = g_strdup(sipe_xml_attribute(mrow, "phone"));
1080 * For 2007 system we will take this from ContactCard -
1081 * it has cleaner tel: URIs at least
1083 if (!SIPE_CORE_PRIVATE_FLAG_IS(OCS2007)) {
1084 char *tel_uri = sip_to_tel_uri(phone_number);
1085 /* trims its parameters, so call first */
1086 sipe_buddy_update_property(sipe_private, uri, SIPE_BUDDY_INFO_DISPLAY_NAME, server_alias);
1087 sipe_buddy_update_property(sipe_private, uri, SIPE_BUDDY_INFO_EMAIL, email);
1088 sipe_buddy_update_property(sipe_private, uri, SIPE_BUDDY_INFO_WORK_PHONE, tel_uri);
1089 sipe_buddy_update_property(sipe_private, uri, SIPE_BUDDY_INFO_WORK_PHONE_DISPLAY, phone_number);
1090 g_free(tel_uri);
1093 if (!is_empty(server_alias)) {
1094 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1095 info,
1096 SIPE_BUDDY_INFO_DISPLAY_NAME,
1097 server_alias);
1099 if ((value = sipe_xml_attribute(mrow, "title")) && strlen(value) > 0) {
1100 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1101 info,
1102 SIPE_BUDDY_INFO_JOB_TITLE,
1103 value);
1105 if ((value = sipe_xml_attribute(mrow, "office")) && strlen(value) > 0) {
1106 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1107 info,
1108 SIPE_BUDDY_INFO_OFFICE,
1109 value);
1111 if (!is_empty(phone_number)) {
1112 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1113 info,
1114 SIPE_BUDDY_INFO_WORK_PHONE,
1115 phone_number);
1117 g_free(phone_number);
1118 if ((value = sipe_xml_attribute(mrow, "company")) && strlen(value) > 0) {
1119 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1120 info,
1121 SIPE_BUDDY_INFO_COMPANY,
1122 value);
1124 if ((value = sipe_xml_attribute(mrow, "city")) && strlen(value) > 0) {
1125 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1126 info,
1127 SIPE_BUDDY_INFO_CITY,
1128 value);
1130 if ((value = sipe_xml_attribute(mrow, "state")) && strlen(value) > 0) {
1131 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1132 info,
1133 SIPE_BUDDY_INFO_STATE,
1134 value);
1136 if ((value = sipe_xml_attribute(mrow, "country")) && strlen(value) > 0) {
1137 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1138 info,
1139 SIPE_BUDDY_INFO_COUNTRY,
1140 value);
1142 if (!is_empty(email)) {
1143 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC,
1144 info,
1145 SIPE_BUDDY_INFO_EMAIL,
1146 email);
1149 sipe_xml_free(searchResults);
1152 /* this will show the minmum information */
1153 get_info_finalize(sipe_private,
1154 info,
1155 uri,
1156 server_alias,
1157 email);
1159 g_free(server_alias);
1160 g_free(email);
1162 return TRUE;
1165 static void get_info_ab_entry_failed(struct sipe_core_private *sipe_private,
1166 struct ms_dlx_data *mdd)
1168 /* error using [MS-DLX] server, retry using Active Directory */
1169 gchar *query = prepare_buddy_search_query(mdd->search_rows, FALSE);
1170 struct transaction_payload *payload = g_new0(struct transaction_payload, 1);
1172 payload->destroy = g_free;
1173 payload->data = mdd->other;
1174 mdd->other = NULL;
1176 sip_soap_directory_search(sipe_private,
1178 query,
1179 process_get_info_response,
1180 payload);
1182 ms_dlx_free(mdd);
1183 g_free(query);
1186 void sipe_core_buddy_get_info(struct sipe_core_public *sipe_public,
1187 const gchar *who)
1189 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
1191 if (sipe_private->dlx_uri) {
1192 struct ms_dlx_data *mdd = g_new0(struct ms_dlx_data, 1);
1194 mdd->search_rows = g_slist_append(mdd->search_rows, g_strdup("msRTCSIP-PrimaryUserAddress"));
1195 mdd->search_rows = g_slist_append(mdd->search_rows, g_strdup(who));
1197 mdd->other = g_strdup(who);
1198 mdd->max_returns = 1;
1199 mdd->callback = get_info_ab_entry_response;
1200 mdd->failed_callback = get_info_ab_entry_failed;
1201 mdd->session = sipe_svc_session_start();
1203 ms_dlx_webticket_request(sipe_private, mdd);
1205 } else {
1206 /* no [MS-DLX] server, use Active Directory search instead */
1207 gchar *row = g_markup_printf_escaped(SIPE_SOAP_SEARCH_ROW,
1208 "msRTCSIP-PrimaryUserAddress",
1209 who);
1210 struct transaction_payload *payload = g_new0(struct transaction_payload, 1);
1212 SIPE_DEBUG_INFO("sipe_core_buddy_get_info: row: %s",
1213 row ? row : "");
1215 payload->destroy = g_free;
1216 payload->data = g_strdup(who);
1218 sip_soap_directory_search(sipe_private,
1220 row,
1221 process_get_info_response,
1222 payload);
1223 g_free(row);
1227 static void photo_response_data_free(struct photo_response_data *data)
1229 g_free(data->who);
1230 g_free(data->photo_hash);
1231 if (data->conn) {
1232 http_conn_free(data->conn);
1234 g_free(data);
1237 static void process_buddy_photo_response(int return_code, const char *body,
1238 GSList *headers, SIPE_UNUSED_PARAMETER HttpConn *conn, void *data)
1240 struct photo_response_data *rdata = (struct photo_response_data *)data;
1241 struct sipe_core_private *sipe_private = rdata->sipe_private;
1243 if (return_code == 200) {
1244 const gchar *len_str = sipe_utils_nameval_find(headers, "Content-Length");
1245 if (len_str) {
1246 gsize photo_size = atoi(len_str);
1247 gpointer photo = g_new(char, photo_size);
1249 if (photo) {
1250 memcpy(photo, body, photo_size);
1252 sipe_backend_buddy_set_photo(SIPE_CORE_PUBLIC,
1253 rdata->who,
1254 photo,
1255 photo_size,
1256 rdata->photo_hash);
1261 sipe_private->pending_photo_requests =
1262 g_slist_remove(sipe_private->pending_photo_requests, rdata);
1263 photo_response_data_free(rdata);
1266 static gchar *create_x_ms_webticket_header(const gchar *wsse_security)
1268 gchar *assertion = sipe_xml_extract_raw(wsse_security, "saml:Assertion", TRUE);
1269 gchar *wsse_security_base64;
1270 gchar *x_ms_webticket_header;
1272 if (!assertion) {
1273 return NULL;
1276 wsse_security_base64 = g_base64_encode((const guchar *)assertion,
1277 strlen(assertion));
1278 x_ms_webticket_header = g_strdup_printf("X-MS-WebTicket: opaque=%s\r\n",
1279 wsse_security_base64);
1281 g_free(assertion);
1282 g_free(wsse_security_base64);
1284 return x_ms_webticket_header;
1287 static void get_photo_ab_entry_response(struct sipe_core_private *sipe_private,
1288 const gchar *uri,
1289 SIPE_UNUSED_PARAMETER const gchar *raw,
1290 sipe_xml *soap_body,
1291 gpointer callback_data)
1293 struct ms_dlx_data *mdd = callback_data;
1294 gchar *photo_rel_path = NULL;
1295 gchar *photo_hash = NULL;
1296 const gchar *photo_hash_old =
1297 sipe_backend_buddy_get_photo_hash(SIPE_CORE_PUBLIC, mdd->other);
1299 if (soap_body) {
1300 const sipe_xml *node;
1302 SIPE_DEBUG_INFO("get_photo_ab_entry_response: received valid SOAP message from service %s",
1303 uri);
1305 for (node = sipe_xml_child(soap_body, "Body/SearchAbEntryResponse/SearchAbEntryResult/Items/AbEntry/Attributes/Attribute");
1306 node;
1307 node = sipe_xml_twin(node)) {
1308 gchar *name = sipe_xml_data(sipe_xml_child(node, "Name"));
1309 gchar *value = sipe_xml_data(sipe_xml_child(node, "Value"));
1311 if (!is_empty(value)) {
1312 if (sipe_strcase_equal(name, "PhotoRelPath")) {
1313 g_free(photo_rel_path);
1314 photo_rel_path = value;
1315 value = NULL;
1316 } else if (sipe_strcase_equal(name, "PhotoHash")) {
1317 g_free(photo_hash);
1318 photo_hash = value;
1319 value = NULL;
1323 g_free(value);
1324 g_free(name);
1328 if (sipe_private->addressbook_uri && photo_rel_path &&
1329 photo_hash && !sipe_strequal(photo_hash, photo_hash_old)) {
1330 gchar *photo_url = g_strdup_printf("%s/%s",
1331 sipe_private->addressbook_uri, photo_rel_path);
1332 gchar *x_ms_webticket_header = create_x_ms_webticket_header(mdd->wsse_security);
1334 struct photo_response_data *data = g_new(struct photo_response_data, 1);
1335 data->sipe_private = sipe_private;
1336 data->who = g_strdup(mdd->other);
1337 data->photo_hash = photo_hash;
1338 photo_hash = NULL;
1340 data->conn = http_conn_create(
1341 SIPE_CORE_PUBLIC,
1342 NULL, /* HttpSession */
1343 HTTP_CONN_GET,
1344 HTTP_CONN_SSL,
1345 HTTP_CONN_NO_REDIRECT,
1346 photo_url,
1347 NULL, /* body */
1348 NULL, /* content-type */
1349 x_ms_webticket_header,
1350 NULL, /* auth */
1351 process_buddy_photo_response,
1352 data);
1354 if (data->conn) {
1355 sipe_private->pending_photo_requests =
1356 g_slist_append(sipe_private->pending_photo_requests, data);
1357 } else {
1358 photo_response_data_free(data);
1361 g_free(x_ms_webticket_header);
1362 g_free(photo_url);
1365 g_free(photo_rel_path);
1366 g_free(photo_hash);
1367 ms_dlx_free(mdd);
1370 static void get_photo_ab_entry_failed(SIPE_UNUSED_PARAMETER struct sipe_core_private *sipe_private,
1371 struct ms_dlx_data *mdd)
1373 ms_dlx_free(mdd);
1376 static void buddy_fetch_photo(struct sipe_core_private *sipe_private,
1377 const gchar *uri)
1379 if (sipe_backend_uses_photo() &&
1380 sipe_private->dlx_uri && sipe_private->addressbook_uri) {
1381 struct ms_dlx_data *mdd = g_new0(struct ms_dlx_data, 1);
1383 mdd->search_rows = g_slist_append(mdd->search_rows, g_strdup("msRTCSIP-PrimaryUserAddress"));
1384 mdd->search_rows = g_slist_append(mdd->search_rows, g_strdup(uri));
1386 mdd->other = g_strdup(uri);
1387 mdd->max_returns = 1;
1388 mdd->callback = get_photo_ab_entry_response;
1389 mdd->failed_callback = get_photo_ab_entry_failed;
1390 mdd->session = sipe_svc_session_start();
1392 ms_dlx_webticket_request(sipe_private, mdd);
1396 static void buddy_refresh_photos_cb(gpointer uri,
1397 SIPE_UNUSED_PARAMETER gpointer value,
1398 gpointer sipe_private)
1400 buddy_fetch_photo(sipe_private, uri);
1403 void sipe_buddy_refresh_photos(struct sipe_core_private *sipe_private)
1405 g_hash_table_foreach(sipe_private->buddies,
1406 buddy_refresh_photos_cb,
1407 sipe_private);
1410 /* Buddy menu callbacks*/
1412 void sipe_core_buddy_new_chat(struct sipe_core_public *sipe_public,
1413 const gchar *who)
1415 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
1417 /* 2007+ conference */
1418 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007)) {
1419 sipe_conf_add(sipe_private, who);
1421 /* 2005- multiparty chat */
1422 } else {
1423 gchar *self = sip_uri_self(sipe_private);
1424 struct sip_session *session;
1426 session = sipe_session_add_chat(sipe_private,
1427 NULL,
1428 TRUE,
1429 self);
1430 session->chat_session->backend = sipe_backend_chat_create(SIPE_CORE_PUBLIC,
1431 session->chat_session,
1432 session->chat_session->title,
1433 self);
1434 g_free(self);
1436 sipe_im_invite(sipe_private, session, who,
1437 NULL, NULL, NULL, FALSE);
1441 void sipe_core_buddy_send_email(struct sipe_core_public *sipe_public,
1442 const gchar *who)
1444 sipe_backend_buddy buddy = sipe_backend_buddy_find(sipe_public,
1445 who,
1446 NULL);
1447 gchar *email = sipe_backend_buddy_get_string(sipe_public,
1448 buddy,
1449 SIPE_BUDDY_INFO_EMAIL);
1451 if (email) {
1452 gchar *command_line = g_strdup_printf(
1453 #ifdef _WIN32
1454 "cmd /c start"
1455 #else
1456 "xdg-email"
1457 #endif
1458 " mailto:%s", email);
1459 g_free(email);
1461 SIPE_DEBUG_INFO("sipe_core_buddy_send_email: going to call email client: %s",
1462 command_line);
1463 g_spawn_command_line_async(command_line, NULL);
1464 g_free(command_line);
1466 } else {
1467 SIPE_DEBUG_INFO("sipe_core_buddy_send_email: no email address stored for buddy=%s",
1468 who);
1472 /* Buddy menu */
1474 static struct sipe_backend_buddy_menu *buddy_menu_phone(struct sipe_core_public *sipe_public,
1475 struct sipe_backend_buddy_menu *menu,
1476 sipe_backend_buddy buddy,
1477 sipe_buddy_info_fields id_phone,
1478 sipe_buddy_info_fields id_display,
1479 const gchar *type)
1481 gchar *phone = sipe_backend_buddy_get_string(sipe_public,
1482 buddy,
1483 id_phone);
1484 if (phone) {
1485 gchar *display = sipe_backend_buddy_get_string(sipe_public,
1486 buddy,
1487 id_display);
1488 gchar *tmp = NULL;
1489 gchar *label = g_strdup_printf("%s %s",
1490 type,
1491 display ? display :
1492 (tmp = sip_tel_uri_denormalize(phone)));
1493 menu = sipe_backend_buddy_menu_add(sipe_public,
1494 menu,
1495 label,
1496 SIPE_BUDDY_MENU_MAKE_CALL,
1497 phone);
1498 g_free(tmp);
1499 g_free(label);
1500 g_free(display);
1501 g_free(phone);
1504 return(menu);
1507 struct sipe_backend_buddy_menu *sipe_core_buddy_create_menu(struct sipe_core_public *sipe_public,
1508 const gchar *buddy_name,
1509 struct sipe_backend_buddy_menu *menu)
1511 struct sipe_core_private *sipe_private = SIPE_CORE_PRIVATE;
1512 sipe_backend_buddy buddy = sipe_backend_buddy_find(sipe_public,
1513 buddy_name,
1514 NULL);
1515 gchar *self = sip_uri_self(sipe_private);
1517 SIPE_SESSION_FOREACH {
1518 if (!sipe_strcase_equal(self, buddy_name) && session->chat_session)
1520 struct sipe_chat_session *chat_session = session->chat_session;
1521 gboolean is_conf = (chat_session->type == SIPE_CHAT_TYPE_CONFERENCE);
1523 if (sipe_backend_chat_find(chat_session->backend, buddy_name))
1525 gboolean conf_op = sipe_backend_chat_is_operator(chat_session->backend, self);
1527 if (is_conf &&
1528 /* Not conf OP */
1529 !sipe_backend_chat_is_operator(chat_session->backend, buddy_name) &&
1530 /* We are a conf OP */
1531 conf_op) {
1532 gchar *label = g_strdup_printf(_("Make leader of '%s'"),
1533 chat_session->title);
1534 menu = sipe_backend_buddy_menu_add(sipe_public,
1535 menu,
1536 label,
1537 SIPE_BUDDY_MENU_MAKE_CHAT_LEADER,
1538 chat_session);
1539 g_free(label);
1542 if (is_conf &&
1543 /* We are a conf OP */
1544 conf_op) {
1545 gchar *label = g_strdup_printf(_("Remove from '%s'"),
1546 chat_session->title);
1547 menu = sipe_backend_buddy_menu_add(sipe_public,
1548 menu,
1549 label,
1550 SIPE_BUDDY_MENU_REMOVE_FROM_CHAT,
1551 chat_session);
1552 g_free(label);
1555 else
1557 if (!is_conf ||
1558 (is_conf && !session->locked)) {
1559 gchar *label = g_strdup_printf(_("Invite to '%s'"),
1560 chat_session->title);
1561 menu = sipe_backend_buddy_menu_add(sipe_public,
1562 menu,
1563 label,
1564 SIPE_BUDDY_MENU_INVITE_TO_CHAT,
1565 chat_session);
1566 g_free(label);
1570 } SIPE_SESSION_FOREACH_END;
1571 g_free(self);
1573 menu = sipe_backend_buddy_menu_add(sipe_public,
1574 menu,
1575 _("New chat"),
1576 SIPE_BUDDY_MENU_NEW_CHAT,
1577 NULL);
1579 /* add buddy's phone numbers if we have call control */
1580 if (sip_csta_is_idle(sipe_private)) {
1582 /* work phone */
1583 menu = buddy_menu_phone(sipe_public,
1584 menu,
1585 buddy,
1586 SIPE_BUDDY_INFO_WORK_PHONE,
1587 SIPE_BUDDY_INFO_WORK_PHONE_DISPLAY,
1588 _("Work"));
1589 /* mobile phone */
1590 menu = buddy_menu_phone(sipe_public,
1591 menu,
1592 buddy,
1593 SIPE_BUDDY_INFO_MOBILE_PHONE,
1594 SIPE_BUDDY_INFO_MOBILE_PHONE_DISPLAY,
1595 _("Mobile"));
1597 /* home phone */
1598 menu = buddy_menu_phone(sipe_public,
1599 menu,
1600 buddy,
1601 SIPE_BUDDY_INFO_HOME_PHONE,
1602 SIPE_BUDDY_INFO_HOME_PHONE_DISPLAY,
1603 _("Home"));
1605 /* other phone */
1606 menu = buddy_menu_phone(sipe_public,
1607 menu,
1608 buddy,
1609 SIPE_BUDDY_INFO_OTHER_PHONE,
1610 SIPE_BUDDY_INFO_OTHER_PHONE_DISPLAY,
1611 _("Other"));
1613 /* custom1 phone */
1614 menu = buddy_menu_phone(sipe_public,
1615 menu,
1616 buddy,
1617 SIPE_BUDDY_INFO_CUSTOM1_PHONE,
1618 SIPE_BUDDY_INFO_CUSTOM1_PHONE_DISPLAY,
1619 _("Custom1"));
1623 gchar *email = sipe_backend_buddy_get_string(sipe_public,
1624 buddy,
1625 SIPE_BUDDY_INFO_EMAIL);
1626 if (email) {
1627 menu = sipe_backend_buddy_menu_add(sipe_public,
1628 menu,
1629 _("Send email..."),
1630 SIPE_BUDDY_MENU_SEND_EMAIL,
1631 NULL);
1632 g_free(email);
1636 /* access level control */
1637 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007))
1638 menu = sipe_backend_buddy_sub_menu_add(sipe_public,
1639 menu,
1640 _("Access level"),
1641 sipe_ocs2007_access_control_menu(sipe_private,
1642 buddy_name));
1644 return(menu);
1648 Local Variables:
1649 mode: c
1650 c-file-style: "bsd"
1651 indent-tabs-mode: t
1652 tab-width: 8
1653 End: