6 * Copyright (C) 2010-2015 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
33 #include "sipe-common.h"
37 #include "sip-transport.h"
38 #include "sipe-backend.h"
39 #include "sipe-buddy.h"
41 #include "sipe-chat.h"
42 #include "sipe-conf.h"
43 #include "sipe-core.h"
44 #include "sipe-core-private.h"
45 #include "sipe-group.h"
46 #include "sipe-http.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"
57 #include "sipe-utils.h"
58 #include "sipe-webticket.h"
63 GHashTable
*exchange_key
;
65 /* Pending photo download HTTP requests */
66 GSList
*pending_photo_requests
;
69 struct buddy_group_data
{
70 const struct sipe_group
*group
;
74 struct photo_response_data
{
77 struct sipe_http_request
*request
;
80 static void buddy_fetch_photo(struct sipe_core_private
*sipe_private
,
82 static void photo_response_data_free(struct photo_response_data
*data
);
84 void sipe_buddy_add_keys(struct sipe_core_private
*sipe_private
,
85 struct sipe_buddy
*buddy
,
86 const gchar
*exchange_key
,
87 const gchar
*change_key
)
90 buddy
->exchange_key
= g_strdup(exchange_key
);
91 g_hash_table_insert(sipe_private
->buddies
->exchange_key
,
96 buddy
->change_key
= g_strdup(change_key
);
99 struct sipe_buddy
*sipe_buddy_add(struct sipe_core_private
*sipe_private
,
101 const gchar
*exchange_key
,
102 const gchar
*change_key
)
104 /* Buddy name must be lower case as we use purple_normalize_nocase() to compare */
105 gchar
*normalized_uri
= g_ascii_strdown(uri
, -1);
106 struct sipe_buddy
*buddy
= sipe_buddy_find_by_uri(sipe_private
,
110 buddy
= g_new0(struct sipe_buddy
, 1);
111 buddy
->name
= normalized_uri
;
112 g_hash_table_insert(sipe_private
->buddies
->uri
,
116 sipe_buddy_add_keys(sipe_private
,
121 SIPE_DEBUG_INFO("sipe_buddy_add: Added buddy %s", normalized_uri
);
123 if (SIPE_CORE_PRIVATE_FLAG_IS(SUBSCRIBED_BUDDIES
)) {
124 buddy
->just_added
= TRUE
;
125 sipe_subscribe_presence_single_cb(sipe_private
,
129 buddy_fetch_photo(sipe_private
, normalized_uri
);
131 normalized_uri
= NULL
; /* buddy takes ownership */
133 SIPE_DEBUG_INFO("sipe_buddy_add: Buddy %s already exists", normalized_uri
);
134 buddy
->is_obsolete
= FALSE
;
136 g_free(normalized_uri
);
141 static gboolean
is_buddy_in_group(struct sipe_buddy
*buddy
,
145 GSList
*entry
= buddy
->groups
;
148 struct buddy_group_data
*bgd
= entry
->data
;
149 if (sipe_strequal(bgd
->group
->name
, name
)) {
150 bgd
->is_obsolete
= FALSE
;
160 void sipe_buddy_add_to_group(struct sipe_core_private
*sipe_private
,
161 struct sipe_buddy
*buddy
,
162 struct sipe_group
*group
,
165 const gchar
*uri
= buddy
->name
;
166 const gchar
*group_name
= group
->name
;
167 sipe_backend_buddy bb
= sipe_backend_buddy_find(SIPE_CORE_PUBLIC
,
172 bb
= sipe_backend_buddy_add(SIPE_CORE_PUBLIC
,
176 SIPE_DEBUG_INFO("sipe_buddy_add_to_group: created backend buddy '%s' with alias '%s'",
177 uri
, alias
? alias
: "<NONE>");
181 if (!is_empty(alias
)) {
182 gchar
*old_alias
= sipe_backend_buddy_get_alias(SIPE_CORE_PUBLIC
,
185 if (sipe_strcase_equal(sipe_get_no_sip_uri(uri
),
187 sipe_backend_buddy_set_alias(SIPE_CORE_PUBLIC
,
190 SIPE_DEBUG_INFO("sipe_buddy_add_to_group: replaced alias for buddy '%s': old '%s' new '%s'",
191 uri
, old_alias
, alias
);
196 if (!is_buddy_in_group(buddy
, group_name
)) {
197 sipe_buddy_insert_group(buddy
, group
);
198 SIPE_DEBUG_INFO("sipe_buddy_add_to_group: added buddy %s to group %s",
203 static gint
buddy_group_compare(gconstpointer a
, gconstpointer b
)
205 return(((const struct buddy_group_data
*)a
)->group
->id
-
206 ((const struct buddy_group_data
*)b
)->group
->id
);
209 void sipe_buddy_insert_group(struct sipe_buddy
*buddy
,
210 struct sipe_group
*group
)
212 struct buddy_group_data
*bgd
= g_new0(struct buddy_group_data
, 1);
216 buddy
->groups
= sipe_utils_slist_insert_unique_sorted(buddy
->groups
,
222 static void buddy_group_free(gpointer data
)
227 static void buddy_group_remove(struct sipe_buddy
*buddy
,
228 struct buddy_group_data
*bgd
)
230 buddy
->groups
= g_slist_remove(buddy
->groups
, bgd
);
231 buddy_group_free(bgd
);
234 static void sipe_buddy_remove_group(struct sipe_buddy
*buddy
,
235 const struct sipe_group
*group
)
237 GSList
*entry
= buddy
->groups
;
238 struct buddy_group_data
*bgd
= NULL
;
242 if (bgd
->group
== group
)
247 buddy_group_remove(buddy
, bgd
);
250 void sipe_buddy_update_groups(struct sipe_core_private
*sipe_private
,
251 struct sipe_buddy
*buddy
,
254 const gchar
*uri
= buddy
->name
;
255 GSList
*entry
= buddy
->groups
;
258 struct buddy_group_data
*bgd
= entry
->data
;
259 const struct sipe_group
*group
= bgd
->group
;
261 /* next buddy group */
264 /* old group NOT found in new list? */
265 if (g_slist_find(new_groups
, group
) == NULL
) {
266 sipe_backend_buddy oldb
= sipe_backend_buddy_find(SIPE_CORE_PUBLIC
,
269 SIPE_DEBUG_INFO("sipe_buddy_update_groups: removing buddy %s from group '%s'",
271 /* this should never be NULL */
273 sipe_backend_buddy_remove(SIPE_CORE_PUBLIC
,
275 buddy_group_remove(buddy
, bgd
);
280 gchar
*sipe_buddy_groups_string(struct sipe_buddy
*buddy
)
284 /* creating array from GList, converting guint to gchar * */
285 gchar
**ids_arr
= g_new(gchar
*, g_slist_length(buddy
->groups
) + 1);
286 GSList
*entry
= buddy
->groups
;
292 const struct sipe_group
*group
= ((struct buddy_group_data
*) entry
->data
)->group
;
293 ids_arr
[i
] = g_strdup_printf("%u", group
->id
);
299 string
= g_strjoinv(" ", ids_arr
);
305 void sipe_buddy_cleanup_local_list(struct sipe_core_private
*sipe_private
)
307 GSList
*buddies
= sipe_backend_buddy_find_all(SIPE_CORE_PUBLIC
,
310 GSList
*entry
= buddies
;
312 SIPE_DEBUG_INFO("sipe_buddy_cleanup_local_list: overall %d backend buddies (including clones)",
313 g_slist_length(buddies
));
314 SIPE_DEBUG_INFO("sipe_buddy_cleanup_local_list: %d sipe buddies (unique)",
315 sipe_buddy_count(sipe_private
));
317 sipe_backend_buddy bb
= entry
->data
;
318 gchar
*bname
= sipe_backend_buddy_get_name(SIPE_CORE_PUBLIC
,
320 gchar
*gname
= sipe_backend_buddy_get_group_name(SIPE_CORE_PUBLIC
,
322 struct sipe_buddy
*buddy
= sipe_buddy_find_by_uri(sipe_private
,
325 if (!is_buddy_in_group(buddy
, gname
)) {
326 SIPE_DEBUG_INFO("sipe_buddy_cleanup_local_list: REMOVING '%s' from local group '%s', as buddy is not in that group on remote contact list",
328 sipe_backend_buddy_remove(SIPE_CORE_PUBLIC
, bb
);
337 g_slist_free(buddies
);
340 struct sipe_buddy
*sipe_buddy_find_by_uri(struct sipe_core_private
*sipe_private
,
343 return(g_hash_table_lookup(sipe_private
->buddies
->uri
, uri
));
346 struct sipe_buddy
*sipe_buddy_find_by_exchange_key(struct sipe_core_private
*sipe_private
,
347 const gchar
*exchange_key
)
349 return(g_hash_table_lookup(sipe_private
->buddies
->exchange_key
,
353 void sipe_buddy_foreach(struct sipe_core_private
*sipe_private
,
355 gpointer callback_data
)
357 g_hash_table_foreach(sipe_private
->buddies
->uri
,
362 static void buddy_free(struct sipe_buddy
*buddy
)
366 * We are calling g_hash_table_foreach_steal(). That means that no
367 * key/value deallocation functions are called. Therefore the glib
368 * hash code does not touch the key (buddy->name) or value (buddy)
369 * of the to-be-deleted hash node at all. It follows that we
371 * - MUST free the memory for the key ourselves and
372 * - ARE allowed to do it in this function
374 * Conclusion: glib must be broken on the Windows platform if sipe
375 * crashes with SIGTRAP when closing. You'll have to live
376 * with the memory leak until this is fixed.
380 g_free(buddy
->exchange_key
);
381 g_free(buddy
->change_key
);
382 g_free(buddy
->activity
);
383 g_free(buddy
->meeting_subject
);
384 g_free(buddy
->meeting_location
);
387 g_free(buddy
->cal_start_time
);
388 g_free(buddy
->cal_free_busy_base64
);
389 g_free(buddy
->cal_free_busy
);
390 g_free(buddy
->last_non_cal_activity
);
392 sipe_cal_free_working_hours(buddy
->cal_working_hours
);
394 g_free(buddy
->device_name
);
395 sipe_utils_slist_free_full(buddy
->groups
, buddy_group_free
);
399 static gboolean
buddy_free_cb(SIPE_UNUSED_PARAMETER gpointer key
,
401 SIPE_UNUSED_PARAMETER gpointer user_data
)
404 /* We must return TRUE as the key/value have already been deleted */
408 void sipe_buddy_free(struct sipe_core_private
*sipe_private
)
410 struct sipe_buddies
*buddies
= sipe_private
->buddies
;
412 g_hash_table_foreach_steal(buddies
->uri
,
416 /* core is being deallocated, remove all its pending photo requests */
417 while (buddies
->pending_photo_requests
) {
418 struct photo_response_data
*data
=
419 buddies
->pending_photo_requests
->data
;
420 buddies
->pending_photo_requests
=
421 g_slist_remove(buddies
->pending_photo_requests
, data
);
422 photo_response_data_free(data
);
425 g_hash_table_destroy(buddies
->uri
);
426 g_hash_table_destroy(buddies
->exchange_key
);
428 sipe_private
->buddies
= NULL
;
431 static void buddy_set_obsolete_flag(SIPE_UNUSED_PARAMETER gpointer key
,
433 SIPE_UNUSED_PARAMETER gpointer user_data
)
435 struct sipe_buddy
*buddy
= value
;
436 GSList
*entry
= buddy
->groups
;
438 buddy
->is_obsolete
= TRUE
;
440 ((struct buddy_group_data
*) entry
->data
)->is_obsolete
= TRUE
;
445 void sipe_buddy_update_start(struct sipe_core_private
*sipe_private
)
447 g_hash_table_foreach(sipe_private
->buddies
->uri
,
448 buddy_set_obsolete_flag
,
452 static gboolean
buddy_check_obsolete_flag(SIPE_UNUSED_PARAMETER gpointer key
,
456 struct sipe_core_private
*sipe_private
= user_data
;
457 struct sipe_buddy
*buddy
= value
;
458 const gchar
*uri
= buddy
->name
;
460 if (buddy
->is_obsolete
) {
461 /* all backend buddies in different groups */
462 GSList
*buddies
= sipe_backend_buddy_find_all(SIPE_CORE_PUBLIC
,
465 GSList
*entry
= buddies
;
467 SIPE_DEBUG_INFO("buddy_check_obsolete_flag: REMOVING %d backend buddies for '%s'",
468 g_slist_length(buddies
),
472 sipe_backend_buddy_remove(SIPE_CORE_PUBLIC
,
476 g_slist_free(buddies
);
479 /* return TRUE as the key/value have already been deleted */
483 GSList
*entry
= buddy
->groups
;
486 struct buddy_group_data
*bgd
= entry
->data
;
488 /* next buddy group */
491 if (bgd
->is_obsolete
) {
492 const struct sipe_group
*group
= bgd
->group
;
493 sipe_backend_buddy oldb
= sipe_backend_buddy_find(SIPE_CORE_PUBLIC
,
496 SIPE_DEBUG_INFO("buddy_check_obsolete_flag: removing buddy '%s' from group '%s'",
498 /* this should never be NULL */
500 sipe_backend_buddy_remove(SIPE_CORE_PUBLIC
,
502 buddy_group_remove(buddy
, bgd
);
509 void sipe_buddy_update_finish(struct sipe_core_private
*sipe_private
)
511 g_hash_table_foreach_remove(sipe_private
->buddies
->uri
,
512 buddy_check_obsolete_flag
,
516 gchar
*sipe_core_buddy_status(struct sipe_core_public
*sipe_public
,
519 const gchar
*status_text
)
521 struct sipe_buddy
*sbuddy
;
524 if (!sipe_public
) return NULL
; /* happens on pidgin exit */
526 sbuddy
= sipe_buddy_find_by_uri(SIPE_CORE_PRIVATE
, uri
);
527 if (!sbuddy
) return NULL
;
529 status
= g_string_new(sbuddy
->activity
? sbuddy
->activity
:
530 (activity
== SIPE_ACTIVITY_BUSY
) || (activity
== SIPE_ACTIVITY_BRB
) ?
533 if (sbuddy
->is_mobile
) {
535 g_string_append(status
, " - ");
536 g_string_append(status
, _("Mobile"));
541 g_string_append(status
, " - ");
542 g_string_append(status
, sbuddy
->note
);
545 /* return NULL instead of empty status text */
546 return(g_string_free(status
, status
->len
? FALSE
: TRUE
));
549 gchar
*sipe_buddy_get_alias(struct sipe_core_private
*sipe_private
,
552 sipe_backend_buddy pbuddy
;
554 if ((pbuddy
= sipe_backend_buddy_find(SIPE_CORE_PUBLIC
, with
, NULL
))) {
555 alias
= sipe_backend_buddy_get_alias(SIPE_CORE_PUBLIC
, pbuddy
);
560 void sipe_core_buddy_group(struct sipe_core_public
*sipe_public
,
562 const gchar
*old_group_name
,
563 const gchar
*new_group_name
)
565 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
566 struct sipe_buddy
*buddy
= sipe_buddy_find_by_uri(sipe_private
,
568 struct sipe_group
*old_group
= NULL
;
569 struct sipe_group
*new_group
;
570 struct sipe_ucs_transaction
*ucs_trans
= NULL
;
572 SIPE_DEBUG_INFO("sipe_core_buddy_group: buddy '%s' old group '%s' new group '%s'",
574 old_group_name
? old_group_name
: "<UNDEFINED>",
575 new_group_name
? new_group_name
: "<UNDEFINED>");
578 /* buddy not in roaming list */
581 old_group
= sipe_group_find_by_name(sipe_private
, old_group_name
);
583 sipe_buddy_remove_group(buddy
, old_group
);
584 SIPE_DEBUG_INFO("sipe_core_buddy_group: buddy '%s' removed from old group '%s'",
585 who
, old_group_name
);
588 new_group
= sipe_group_find_by_name(sipe_private
, new_group_name
);
590 sipe_buddy_insert_group(buddy
, new_group
);
591 SIPE_DEBUG_INFO("sipe_core_buddy_group: buddy '%s' added to new group '%s'",
592 who
, new_group_name
);
595 if (sipe_ucs_is_migrated(sipe_private
)) {
598 ucs_trans
= sipe_ucs_transaction(sipe_private
);
602 * 1. new buddy added to existing group
603 * 2. existing buddy moved from old to existing group
605 sipe_ucs_group_add_buddy(sipe_private
,
611 sipe_ucs_group_remove_buddy(sipe_private
,
616 } else if (old_group
) {
618 * 3. existing buddy removed from one of its groups
619 * 4. existing buddy removed from last group
621 sipe_ucs_group_remove_buddy(sipe_private
,
625 if (g_slist_length(buddy
->groups
) < 1)
626 sipe_buddy_remove(sipe_private
,
628 /* buddy no longer valid */
631 /* non-UCS handling */
632 } else if (new_group
)
633 sipe_group_update_buddy(sipe_private
, buddy
);
635 /* 5. buddy added to new group */
637 sipe_group_create(sipe_private
,
643 void sipe_core_buddy_add(struct sipe_core_public
*sipe_public
,
645 const gchar
*group_name
)
647 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
649 if (!sipe_buddy_find_by_uri(sipe_private
, uri
))
650 sipe_buddy_add(sipe_private
,
655 SIPE_DEBUG_INFO("sipe_core_buddy_add: buddy %s already in internal list",
658 sipe_core_buddy_group(sipe_public
,
664 void sipe_buddy_remove(struct sipe_core_private
*sipe_private
,
665 struct sipe_buddy
*buddy
)
667 struct sipe_buddies
*buddies
= sipe_private
->buddies
;
668 const gchar
*uri
= buddy
->name
;
669 GSList
*entry
= buddy
->groups
;
670 gchar
*action_name
= sipe_utils_presence_key(uri
);
672 sipe_schedule_cancel(sipe_private
, action_name
);
675 /* If the buddy still has groups, we need to delete backend buddies */
677 const struct sipe_group
*group
= ((struct buddy_group_data
*) entry
->data
)->group
;
678 sipe_backend_buddy oldb
= sipe_backend_buddy_find(SIPE_CORE_PUBLIC
,
681 /* this should never be NULL */
683 sipe_backend_buddy_remove(SIPE_CORE_PUBLIC
, oldb
);
688 g_hash_table_remove(buddies
->uri
, uri
);
689 if (buddy
->exchange_key
)
690 g_hash_table_remove(buddies
->exchange_key
,
691 buddy
->exchange_key
);
697 * Unassociates buddy from group first.
698 * Then see if no groups left, removes buddy completely.
699 * Otherwise updates buddy groups on server.
701 void sipe_core_buddy_remove(struct sipe_core_public
*sipe_public
,
703 const gchar
*group_name
)
705 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
706 struct sipe_buddy
*buddy
= sipe_buddy_find_by_uri(sipe_private
,
708 struct sipe_group
*group
= NULL
;
713 group
= sipe_group_find_by_name(sipe_private
, group_name
);
715 sipe_buddy_remove_group(buddy
, group
);
716 SIPE_DEBUG_INFO("sipe_core_buddy_remove: buddy '%s' removed from group '%s'",
721 if (g_slist_length(buddy
->groups
) < 1) {
723 if (sipe_ucs_is_migrated(sipe_private
)) {
724 sipe_ucs_group_remove_buddy(sipe_private
,
729 gchar
*request
= g_strdup_printf("<m:URI>%s</m:URI>",
731 sip_soap_request(sipe_private
,
737 sipe_buddy_remove(sipe_private
, buddy
);
739 if (sipe_ucs_is_migrated(sipe_private
)) {
740 sipe_ucs_group_remove_buddy(sipe_private
,
745 /* updates groups on server */
746 sipe_group_update_buddy(sipe_private
, buddy
);
750 void sipe_core_buddy_got_status(struct sipe_core_public
*sipe_public
,
754 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
755 struct sipe_buddy
*sbuddy
= sipe_buddy_find_by_uri(sipe_private
,
760 /* Check if on 2005 system contact's calendar,
761 * then set/preserve it.
763 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007
)) {
764 sipe_backend_buddy_set_status(sipe_public
, uri
, activity
);
766 sipe_ocs2005_apply_calendar_status(sipe_private
,
768 sipe_status_activity_to_token(activity
));
772 void sipe_core_buddy_tooltip_info(struct sipe_core_public
*sipe_public
,
774 const gchar
*status_name
,
776 struct sipe_backend_buddy_tooltip
*tooltip
)
778 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
780 gboolean is_oof_note
= FALSE
;
781 const gchar
*activity
= NULL
;
782 gchar
*calendar
= NULL
;
783 const gchar
*meeting_subject
= NULL
;
784 const gchar
*meeting_location
= NULL
;
785 gchar
*access_text
= NULL
;
787 #define SIPE_ADD_BUDDY_INFO(l, t) \
789 gchar *tmp = g_markup_escape_text((t), -1); \
790 sipe_backend_buddy_tooltip_add(sipe_public, tooltip, (l), tmp); \
793 #define SIPE_ADD_BUDDY_INFO_NOESCAPE(l, t) \
794 sipe_backend_buddy_tooltip_add(sipe_public, tooltip, (l), (t))
796 if (sipe_public
) { /* happens on pidgin exit */
797 struct sipe_buddy
*sbuddy
= sipe_buddy_find_by_uri(sipe_private
,
801 is_oof_note
= sbuddy
->is_oof_note
;
802 activity
= sbuddy
->activity
;
803 calendar
= sipe_cal_get_description(sbuddy
);
804 meeting_subject
= sbuddy
->meeting_subject
;
805 meeting_location
= sbuddy
->meeting_location
;
807 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007
)) {
808 gboolean is_group_access
= FALSE
;
809 const int container_id
= sipe_ocs2007_find_access_level(sipe_private
,
811 sipe_get_no_sip_uri(uri
),
813 const char *access_level
= sipe_ocs2007_access_level_name(container_id
);
814 access_text
= is_group_access
?
815 g_strdup(access_level
) :
816 g_strdup_printf(SIPE_OCS2007_INDENT_MARKED_FMT
,
822 const gchar
*status_str
= activity
? activity
: status_name
;
824 SIPE_ADD_BUDDY_INFO(_("Status"), status_str
);
826 if (is_online
&& !is_empty(calendar
)) {
827 SIPE_ADD_BUDDY_INFO(_("Calendar"), calendar
);
830 if (!is_empty(meeting_location
)) {
831 SIPE_DEBUG_INFO("sipe_tooltip_text: %s meeting location: '%s'", uri
, meeting_location
);
832 SIPE_ADD_BUDDY_INFO(_("Meeting in"), meeting_location
);
834 if (!is_empty(meeting_subject
)) {
835 SIPE_DEBUG_INFO("sipe_tooltip_text: %s meeting subject: '%s'", uri
, meeting_subject
);
836 SIPE_ADD_BUDDY_INFO(_("Meeting about"), meeting_subject
);
839 gchar
*note_italics
= g_strdup_printf("<i>%s</i>", note
);
840 SIPE_DEBUG_INFO("sipe_tooltip_text: %s note: '%s'", uri
, note
);
841 SIPE_ADD_BUDDY_INFO_NOESCAPE(is_oof_note
? _("Out of office note") : _("Note"),
843 g_free(note_italics
);
846 SIPE_ADD_BUDDY_INFO(_("Access level"), access_text
);
851 void sipe_buddy_update_property(struct sipe_core_private
*sipe_private
,
853 sipe_buddy_info_fields propkey
,
854 char *property_value
)
856 GSList
*buddies
, *entry
;
859 property_value
= g_strstrip(property_value
);
861 entry
= buddies
= sipe_backend_buddy_find_all(SIPE_CORE_PUBLIC
, uri
, NULL
); /* all buddies in different groups */
864 sipe_backend_buddy p_buddy
= entry
->data
;
866 /* for Display Name */
867 if (propkey
== SIPE_BUDDY_INFO_DISPLAY_NAME
) {
869 alias
= sipe_backend_buddy_get_alias(SIPE_CORE_PUBLIC
, p_buddy
);
870 if (property_value
&& sipe_is_bad_alias(uri
, alias
)) {
871 SIPE_DEBUG_INFO("Replacing alias for %s with %s", uri
, property_value
);
872 sipe_backend_buddy_set_alias(SIPE_CORE_PUBLIC
, p_buddy
, property_value
);
876 alias
= sipe_backend_buddy_get_server_alias(SIPE_CORE_PUBLIC
, p_buddy
);
877 if (!is_empty(property_value
) &&
878 (!sipe_strequal(property_value
, alias
) || is_empty(alias
)) )
880 SIPE_DEBUG_INFO("Replacing service alias for %s with %s", uri
, property_value
);
881 sipe_backend_buddy_set_server_alias(SIPE_CORE_PUBLIC
, p_buddy
, property_value
);
885 /* for other properties */
887 if (!is_empty(property_value
)) {
888 prop_str
= sipe_backend_buddy_get_string(SIPE_CORE_PUBLIC
, p_buddy
, propkey
);
889 if (!prop_str
|| !sipe_strcase_equal(prop_str
, property_value
)) {
890 sipe_backend_buddy_set_string(SIPE_CORE_PUBLIC
, p_buddy
, propkey
, property_value
);
898 g_slist_free(buddies
);
907 sipe_svc_callback
*callback
;
908 struct sipe_svc_session
*session
;
909 gchar
*wsse_security
;
910 struct sipe_backend_search_token
*token
;
911 /* must call ms_dlx_free() */
912 void (*failed_callback
)(struct sipe_core_private
*sipe_private
,
913 struct ms_dlx_data
*mdd
);
916 static void free_search_rows(GSList
*search_rows
)
918 sipe_utils_slist_free_full(search_rows
, g_free
);
921 static void ms_dlx_free(struct ms_dlx_data
*mdd
)
923 free_search_rows(mdd
->search_rows
);
924 sipe_svc_session_close(mdd
->session
);
926 g_free(mdd
->wsse_security
);
930 #define SIPE_SOAP_SEARCH_ROW "<m:row m:attrib=\"%s\" m:value=\"%s\"/>"
931 #define DLX_SEARCH_ITEM \
932 "<AbEntryRequest.ChangeSearchQuery>" \
933 " <SearchOn>%s</SearchOn>" \
934 " <Value>%s</Value>" \
935 "</AbEntryRequest.ChangeSearchQuery>"
937 static gchar
* prepare_buddy_search_query(GSList
*query_rows
, gboolean use_dlx
) {
938 gchar
**attrs
= g_new(gchar
*, (g_slist_length(query_rows
) / 2) + 1);
947 attr
= query_rows
->data
;
948 query_rows
= g_slist_next(query_rows
);
949 value
= query_rows
->data
;
950 query_rows
= g_slist_next(query_rows
);
956 * Special value for SIP ID
958 * Active Directory seems only to be able to search for
959 * SIP URIs. Make sure search string starts with "sip:".
962 attr
= "msRTCSIP-PrimaryUserAddress";
964 value
= tmp
= sip_uri(value
);
967 attrs
[i
++] = g_markup_printf_escaped(use_dlx
? DLX_SEARCH_ITEM
: SIPE_SOAP_SEARCH_ROW
,
974 query
= g_strjoinv(NULL
, attrs
);
975 SIPE_DEBUG_INFO("prepare_buddy_search_query: rows:\n%s",
984 static void ms_dlx_webticket(struct sipe_core_private
*sipe_private
,
985 const gchar
*base_uri
,
986 const gchar
*auth_uri
,
987 const gchar
*wsse_security
,
988 SIPE_UNUSED_PARAMETER
const gchar
*failure_msg
,
989 gpointer callback_data
)
991 struct ms_dlx_data
*mdd
= callback_data
;
994 guint length
= g_slist_length(mdd
->search_rows
);
997 SIPE_DEBUG_INFO("ms_dlx_webticket: got ticket for %s",
1001 /* complex search */
1002 gchar
*query
= prepare_buddy_search_query(mdd
->search_rows
, TRUE
);
1003 search
= g_strdup_printf("<ChangeSearch xmlns:q1=\"DistributionListExpander\" soapenc:arrayType=\"q1:AbEntryRequest.ChangeSearchQuery[%d]\">"
1011 search
= g_strdup_printf("<BasicSearch>"
1012 " <SearchList>c,company,displayName,givenName,mail,mailNickname,msRTCSIP-PrimaryUserAddress,sn</SearchList>"
1013 " <Value>%s</Value>"
1014 " <Verb>BeginsWith</Verb>"
1019 if (sipe_svc_ab_entry_request(sipe_private
,
1028 /* keep webticket security token for potential further use */
1029 g_free(mdd
->wsse_security
);
1030 mdd
->wsse_security
= g_strdup(wsse_security
);
1032 /* callback data passed down the line */
1038 /* no ticket: this will show the minmum information */
1039 SIPE_DEBUG_ERROR("ms_dlx_webticket: no web ticket for %s",
1044 mdd
->failed_callback(sipe_private
, mdd
);
1047 static void ms_dlx_webticket_request(struct sipe_core_private
*sipe_private
,
1048 struct ms_dlx_data
*mdd
)
1050 if (!sipe_webticket_request(sipe_private
,
1052 sipe_private
->dlx_uri
,
1053 "AddressBookWebTicketBearer",
1056 SIPE_DEBUG_ERROR("ms_dlx_webticket_request: couldn't request webticket for %s",
1057 sipe_private
->dlx_uri
);
1058 mdd
->failed_callback(sipe_private
, mdd
);
1062 void sipe_buddy_search_contacts_finalize(struct sipe_core_private
*sipe_private
,
1063 struct sipe_backend_search_results
*results
,
1067 gchar
*secondary
= g_strdup_printf(
1068 dngettext(PACKAGE_NAME
,
1069 "Found %d contact%s:",
1070 "Found %d contacts%s:", match_count
),
1071 match_count
, more
? _(" (more matched your query)") : "");
1073 sipe_backend_search_results_finalize(SIPE_CORE_PUBLIC
,
1080 static void search_ab_entry_response(struct sipe_core_private
*sipe_private
,
1082 SIPE_UNUSED_PARAMETER
const gchar
*raw
,
1083 sipe_xml
*soap_body
,
1084 gpointer callback_data
)
1086 struct ms_dlx_data
*mdd
= callback_data
;
1089 const sipe_xml
*node
;
1090 struct sipe_backend_search_results
*results
;
1093 SIPE_DEBUG_INFO("search_ab_entry_response: received valid SOAP message from service %s",
1097 node
= sipe_xml_child(soap_body
, "Body/SearchAbEntryResponse/SearchAbEntryResult/Items/AbEntry");
1099 /* try again with simple search, if possible */
1100 if (mdd
->other
&& mdd
->search_rows
) {
1101 SIPE_DEBUG_INFO_NOFORMAT("search_ab_entry_response: no matches, retrying with simple search");
1103 /* throw away original search query */
1104 free_search_rows(mdd
->search_rows
);
1105 mdd
->search_rows
= NULL
;
1107 ms_dlx_webticket_request(sipe_private
, mdd
);
1109 /* callback data passed down the line */
1113 SIPE_DEBUG_ERROR_NOFORMAT("search_ab_entry_response: no matches");
1115 sipe_backend_search_failed(SIPE_CORE_PUBLIC
,
1117 _("No contacts found"));
1123 /* OK, we found something - show the results to the user */
1124 results
= sipe_backend_search_results_start(SIPE_CORE_PUBLIC
,
1127 SIPE_DEBUG_ERROR_NOFORMAT("search_ab_entry_response: Unable to display the search results.");
1128 sipe_backend_search_failed(SIPE_CORE_PUBLIC
,
1130 _("Unable to display the search results"));
1135 /* SearchAbEntryResult can contain duplicates */
1136 found
= g_hash_table_new_full(g_str_hash
, g_str_equal
,
1139 for (/* initialized above */ ; node
; node
= sipe_xml_twin(node
)) {
1140 const sipe_xml
*attrs
;
1141 gchar
*sip_uri
= NULL
;
1142 gchar
*displayname
= NULL
;
1143 gchar
*company
= NULL
;
1144 gchar
*country
= NULL
;
1145 gchar
*email
= NULL
;
1147 for (attrs
= sipe_xml_child(node
, "Attributes/Attribute");
1149 attrs
= sipe_xml_twin(attrs
)) {
1150 gchar
*name
= sipe_xml_data(sipe_xml_child(attrs
,
1152 gchar
*value
= sipe_xml_data(sipe_xml_child(attrs
,
1155 if (!is_empty(value
)) {
1156 if (sipe_strcase_equal(name
, "msrtcsip-primaryuseraddress")) {
1160 } else if (sipe_strcase_equal(name
, "displayname")) {
1161 g_free(displayname
);
1162 displayname
= value
;
1164 } else if (sipe_strcase_equal(name
, "mail")) {
1168 } else if (sipe_strcase_equal(name
, "company")) {
1172 } else if (sipe_strcase_equal(name
, "country")) {
1183 if (sip_uri
&& !g_hash_table_lookup(found
, sip_uri
)) {
1184 gchar
**uri_parts
= g_strsplit(sip_uri
, ":", 2);
1185 sipe_backend_search_results_add(SIPE_CORE_PUBLIC
,
1192 g_strfreev(uri_parts
);
1194 g_hash_table_insert(found
, sip_uri
, (gpointer
) TRUE
);
1201 g_free(displayname
);
1205 sipe_buddy_search_contacts_finalize(sipe_private
, results
,
1206 g_hash_table_size(found
),
1208 g_hash_table_destroy(found
);
1212 mdd
->failed_callback(sipe_private
, mdd
);
1216 static gboolean
process_search_contact_response(struct sipe_core_private
*sipe_private
,
1218 struct transaction
*trans
)
1220 struct sipe_backend_search_token
*token
= trans
->payload
->data
;
1221 struct sipe_backend_search_results
*results
;
1222 sipe_xml
*searchResults
;
1223 const sipe_xml
*mrow
;
1224 guint match_count
= 0;
1225 gboolean more
= FALSE
;
1227 /* valid response? */
1228 if (msg
->response
!= 200) {
1229 SIPE_DEBUG_ERROR("process_search_contact_response: request failed (%d)",
1231 sipe_backend_search_failed(SIPE_CORE_PUBLIC
,
1233 _("Contact search failed"));
1237 SIPE_DEBUG_INFO("process_search_contact_response: body:\n%s", msg
->body
? msg
->body
: "");
1240 searchResults
= sipe_xml_parse(msg
->body
, msg
->bodylen
);
1241 if (!searchResults
) {
1242 SIPE_DEBUG_INFO_NOFORMAT("process_search_contact_response: no parseable searchResults");
1243 sipe_backend_search_failed(SIPE_CORE_PUBLIC
,
1245 _("Contact search failed"));
1250 mrow
= sipe_xml_child(searchResults
, "Body/Array/row");
1252 SIPE_DEBUG_ERROR_NOFORMAT("process_search_contact_response: no matches");
1253 sipe_backend_search_failed(SIPE_CORE_PUBLIC
,
1255 _("No contacts found"));
1257 sipe_xml_free(searchResults
);
1261 /* OK, we found something - show the results to the user */
1262 results
= sipe_backend_search_results_start(SIPE_CORE_PUBLIC
,
1263 trans
->payload
->data
);
1265 SIPE_DEBUG_ERROR_NOFORMAT("process_search_contact_response: Unable to display the search results.");
1266 sipe_backend_search_failed(SIPE_CORE_PUBLIC
,
1268 _("Unable to display the search results"));
1270 sipe_xml_free(searchResults
);
1274 for (/* initialized above */ ; mrow
; mrow
= sipe_xml_twin(mrow
)) {
1275 gchar
**uri_parts
= g_strsplit(sipe_xml_attribute(mrow
, "uri"), ":", 2);
1276 sipe_backend_search_results_add(SIPE_CORE_PUBLIC
,
1279 sipe_xml_attribute(mrow
, "displayName"),
1280 sipe_xml_attribute(mrow
, "company"),
1281 sipe_xml_attribute(mrow
, "country"),
1282 sipe_xml_attribute(mrow
, "email"));
1283 g_strfreev(uri_parts
);
1287 if ((mrow
= sipe_xml_child(searchResults
, "Body/directorySearch/moreAvailable")) != NULL
) {
1288 char *data
= sipe_xml_data(mrow
);
1289 more
= (g_ascii_strcasecmp(data
, "true") == 0);
1293 sipe_buddy_search_contacts_finalize(sipe_private
, results
, match_count
, more
);
1294 sipe_xml_free(searchResults
);
1299 static void search_soap_request(struct sipe_core_private
*sipe_private
,
1300 GDestroyNotify destroy
,
1303 SoapTransCallback callback
,
1304 GSList
*search_rows
)
1306 gchar
*query
= prepare_buddy_search_query(search_rows
, FALSE
);
1307 struct transaction_payload
*payload
= g_new0(struct transaction_payload
, 1);
1309 payload
->destroy
= destroy
;
1310 payload
->data
= data
;
1312 sip_soap_directory_search(sipe_private
,
1320 static void search_ab_entry_failed(struct sipe_core_private
*sipe_private
,
1321 struct ms_dlx_data
*mdd
)
1323 /* error using [MS-DLX] server, retry using Active Directory */
1324 if (mdd
->search_rows
)
1325 search_soap_request(sipe_private
,
1329 process_search_contact_response
,
1334 void sipe_core_buddy_search(struct sipe_core_public
*sipe_public
,
1335 struct sipe_backend_search_token
*token
,
1336 const gchar
*given_name
,
1337 const gchar
*surname
,
1340 const gchar
*company
,
1341 const gchar
*country
)
1343 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
1345 /* Lync 2013 or newer: use UCS if contacts are migrated */
1346 if (SIPE_CORE_PRIVATE_FLAG_IS(LYNC2013
) &&
1347 sipe_ucs_is_migrated(sipe_private
)) {
1349 sipe_ucs_search(sipe_private
,
1359 GSList
*query_rows
= NULL
;
1361 const gchar
*simple
= NULL
;
1363 #define ADD_QUERY_ROW(attr, val) \
1365 query_rows = g_slist_append(query_rows, g_strdup(attr)); \
1366 query_rows = g_slist_append(query_rows, g_strdup(val)); \
1371 ADD_QUERY_ROW("givenName", given_name
);
1372 ADD_QUERY_ROW("sn", surname
);
1373 ADD_QUERY_ROW("mail", email
);
1374 /* prepare_buddy_search_query() interprets NULL as SIP ID */
1375 ADD_QUERY_ROW(NULL
, sipid
);
1376 ADD_QUERY_ROW("company", company
);
1377 ADD_QUERY_ROW("c", country
);
1380 if (sipe_private
->dlx_uri
!= NULL
) {
1381 struct ms_dlx_data
*mdd
= g_new0(struct ms_dlx_data
, 1);
1383 mdd
->search_rows
= query_rows
;
1384 /* user entered only one search string, remember that one */
1386 mdd
->other
= g_strdup(simple
);
1387 mdd
->max_returns
= 100;
1388 mdd
->callback
= search_ab_entry_response
;
1389 mdd
->failed_callback
= search_ab_entry_failed
;
1390 mdd
->session
= sipe_svc_session_start();
1393 ms_dlx_webticket_request(sipe_private
, mdd
);
1396 /* no [MS-DLX] server, use Active Directory search instead */
1397 search_soap_request(sipe_private
,
1401 process_search_contact_response
,
1403 free_search_rows(query_rows
);
1406 sipe_backend_search_failed(sipe_public
,
1408 _("Invalid contact search query"));
1412 static void get_info_finalize(struct sipe_core_private
*sipe_private
,
1413 struct sipe_backend_buddy_info
*info
,
1415 const gchar
*server_alias
,
1418 sipe_backend_buddy bbuddy
;
1419 struct sipe_buddy
*sbuddy
;
1424 info
= sipe_backend_buddy_info_start(SIPE_CORE_PUBLIC
);
1426 sipe_backend_buddy_info_break(SIPE_CORE_PUBLIC
, info
);
1431 bbuddy
= sipe_backend_buddy_find(SIPE_CORE_PUBLIC
, uri
, NULL
);
1433 if (is_empty(server_alias
)) {
1434 value
= sipe_backend_buddy_get_server_alias(SIPE_CORE_PUBLIC
,
1437 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1439 SIPE_BUDDY_INFO_DISPLAY_NAME
,
1443 value
= g_strdup(server_alias
);
1446 /* present alias if it differs from server alias */
1447 alias
= sipe_backend_buddy_get_local_alias(SIPE_CORE_PUBLIC
, bbuddy
);
1448 if (alias
&& !sipe_strequal(alias
, value
))
1450 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1452 SIPE_BUDDY_INFO_ALIAS
,
1458 if (is_empty(email
)) {
1459 value
= sipe_backend_buddy_get_string(SIPE_CORE_PUBLIC
,
1461 SIPE_BUDDY_INFO_EMAIL
);
1463 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1465 SIPE_BUDDY_INFO_EMAIL
,
1471 value
= sipe_backend_buddy_get_string(SIPE_CORE_PUBLIC
,
1473 SIPE_BUDDY_INFO_SITE
);
1475 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1477 SIPE_BUDDY_INFO_SITE
,
1482 sbuddy
= sipe_buddy_find_by_uri(sipe_private
, uri
);
1483 if (sbuddy
&& sbuddy
->device_name
) {
1484 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1486 SIPE_BUDDY_INFO_DEVICE
,
1487 sbuddy
->device_name
);
1490 sipe_backend_buddy_info_finalize(SIPE_CORE_PUBLIC
, info
, uri
);
1494 static void get_info_ab_entry_response(struct sipe_core_private
*sipe_private
,
1496 SIPE_UNUSED_PARAMETER
const gchar
*raw
,
1497 sipe_xml
*soap_body
,
1498 gpointer callback_data
)
1500 struct ms_dlx_data
*mdd
= callback_data
;
1501 struct sipe_backend_buddy_info
*info
= NULL
;
1502 gchar
*server_alias
= NULL
;
1503 gchar
*email
= NULL
;
1506 const sipe_xml
*node
;
1508 SIPE_DEBUG_INFO("get_info_ab_entry_response: received valid SOAP message from service %s",
1511 info
= sipe_backend_buddy_info_start(SIPE_CORE_PUBLIC
);
1513 for (node
= sipe_xml_child(soap_body
, "Body/SearchAbEntryResponse/SearchAbEntryResult/Items/AbEntry/Attributes/Attribute");
1515 node
= sipe_xml_twin(node
)) {
1516 gchar
*name
= sipe_xml_data(sipe_xml_child(node
,
1518 gchar
*value
= sipe_xml_data(sipe_xml_child(node
,
1520 const sipe_xml
*values
= sipe_xml_child(node
,
1523 /* Single value entries */
1524 if (!is_empty(value
)) {
1526 if (sipe_strcase_equal(name
, "displayname")) {
1527 g_free(server_alias
);
1528 server_alias
= value
;
1530 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1532 SIPE_BUDDY_INFO_DISPLAY_NAME
,
1534 } else if (sipe_strcase_equal(name
, "mail")) {
1538 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1540 SIPE_BUDDY_INFO_EMAIL
,
1542 } else if (sipe_strcase_equal(name
, "title")) {
1543 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1545 SIPE_BUDDY_INFO_JOB_TITLE
,
1547 } else if (sipe_strcase_equal(name
, "company")) {
1548 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1550 SIPE_BUDDY_INFO_COMPANY
,
1552 } else if (sipe_strcase_equal(name
, "country")) {
1553 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1555 SIPE_BUDDY_INFO_COUNTRY
,
1559 } else if (values
) {
1560 gchar
*first
= sipe_xml_data(sipe_xml_child(values
,
1563 if (sipe_strcase_equal(name
, "telephonenumber")) {
1564 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1566 SIPE_BUDDY_INFO_WORK_PHONE
,
1578 /* this will show the minmum information */
1579 get_info_finalize(sipe_private
,
1586 g_free(server_alias
);
1590 static gboolean
process_get_info_response(struct sipe_core_private
*sipe_private
,
1592 struct transaction
*trans
)
1594 const gchar
*uri
= trans
->payload
->data
;
1595 struct sipe_backend_buddy_info
*info
= NULL
;
1596 gchar
*server_alias
= NULL
;
1597 gchar
*email
= NULL
;
1599 SIPE_DEBUG_INFO("Fetching %s's user info for %s",
1600 uri
, sipe_private
->username
);
1602 if (msg
->response
!= 200) {
1603 SIPE_DEBUG_INFO("process_get_info_response: SERVICE response is %d", msg
->response
);
1605 sipe_xml
*searchResults
;
1606 const sipe_xml
*mrow
;
1608 SIPE_DEBUG_INFO("process_get_info_response: body:\n%s",
1609 msg
->body
? msg
->body
: "");
1611 searchResults
= sipe_xml_parse(msg
->body
, msg
->bodylen
);
1612 if (!searchResults
) {
1614 SIPE_DEBUG_INFO_NOFORMAT("process_get_info_response: no parseable searchResults");
1616 } else if ((mrow
= sipe_xml_child(searchResults
, "Body/Array/row"))) {
1618 gchar
*phone_number
;
1620 info
= sipe_backend_buddy_info_start(SIPE_CORE_PUBLIC
);
1622 server_alias
= g_strdup(sipe_xml_attribute(mrow
, "displayName"));
1623 email
= g_strdup(sipe_xml_attribute(mrow
, "email"));
1624 phone_number
= g_strdup(sipe_xml_attribute(mrow
, "phone"));
1627 * For 2007 system we will take this from ContactCard -
1628 * it has cleaner tel: URIs at least
1630 if (!SIPE_CORE_PRIVATE_FLAG_IS(OCS2007
)) {
1631 char *tel_uri
= sip_to_tel_uri(phone_number
);
1632 /* trims its parameters, so call first */
1633 sipe_buddy_update_property(sipe_private
, uri
, SIPE_BUDDY_INFO_DISPLAY_NAME
, server_alias
);
1634 sipe_buddy_update_property(sipe_private
, uri
, SIPE_BUDDY_INFO_EMAIL
, email
);
1635 sipe_buddy_update_property(sipe_private
, uri
, SIPE_BUDDY_INFO_WORK_PHONE
, tel_uri
);
1636 sipe_buddy_update_property(sipe_private
, uri
, SIPE_BUDDY_INFO_WORK_PHONE_DISPLAY
, phone_number
);
1639 sipe_backend_buddy_refresh_properties(SIPE_CORE_PUBLIC
,
1643 if (!is_empty(server_alias
)) {
1644 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1646 SIPE_BUDDY_INFO_DISPLAY_NAME
,
1649 if ((value
= sipe_xml_attribute(mrow
, "title")) && strlen(value
) > 0) {
1650 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1652 SIPE_BUDDY_INFO_JOB_TITLE
,
1655 if ((value
= sipe_xml_attribute(mrow
, "office")) && strlen(value
) > 0) {
1656 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1658 SIPE_BUDDY_INFO_OFFICE
,
1661 if (!is_empty(phone_number
)) {
1662 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1664 SIPE_BUDDY_INFO_WORK_PHONE
,
1667 g_free(phone_number
);
1668 if ((value
= sipe_xml_attribute(mrow
, "company")) && strlen(value
) > 0) {
1669 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1671 SIPE_BUDDY_INFO_COMPANY
,
1674 if ((value
= sipe_xml_attribute(mrow
, "city")) && strlen(value
) > 0) {
1675 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1677 SIPE_BUDDY_INFO_CITY
,
1680 if ((value
= sipe_xml_attribute(mrow
, "state")) && strlen(value
) > 0) {
1681 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1683 SIPE_BUDDY_INFO_STATE
,
1686 if ((value
= sipe_xml_attribute(mrow
, "country")) && strlen(value
) > 0) {
1687 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1689 SIPE_BUDDY_INFO_COUNTRY
,
1692 if (!is_empty(email
)) {
1693 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
1695 SIPE_BUDDY_INFO_EMAIL
,
1699 sipe_xml_free(searchResults
);
1702 /* this will show the minmum information */
1703 get_info_finalize(sipe_private
,
1709 g_free(server_alias
);
1715 static void get_info_ab_entry_failed(struct sipe_core_private
*sipe_private
,
1716 struct ms_dlx_data
*mdd
)
1718 /* error using [MS-DLX] server, retry using Active Directory */
1719 search_soap_request(sipe_private
,
1723 process_get_info_response
,
1729 static GSList
*search_rows_for_uri(const gchar
*uri
)
1731 /* prepare_buddy_search_query() interprets NULL as SIP ID */
1732 GSList
*l
= g_slist_append(NULL
, NULL
);
1733 return(g_slist_append(l
, g_strdup(uri
)));
1736 void sipe_core_buddy_get_info(struct sipe_core_public
*sipe_public
,
1739 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
1740 GSList
*search_rows
= search_rows_for_uri(who
);
1742 if (sipe_private
->dlx_uri
) {
1743 struct ms_dlx_data
*mdd
= g_new0(struct ms_dlx_data
, 1);
1745 mdd
->search_rows
= search_rows
;
1746 mdd
->other
= g_strdup(who
);
1747 mdd
->max_returns
= 1;
1748 mdd
->callback
= get_info_ab_entry_response
;
1749 mdd
->failed_callback
= get_info_ab_entry_failed
;
1750 mdd
->session
= sipe_svc_session_start();
1752 ms_dlx_webticket_request(sipe_private
, mdd
);
1755 /* no [MS-DLX] server, use Active Directory search instead */
1756 search_soap_request(sipe_private
,
1760 process_get_info_response
,
1762 free_search_rows(search_rows
);
1766 static void photo_response_data_free(struct photo_response_data
*data
)
1769 g_free(data
->photo_hash
);
1770 if (data
->request
) {
1771 sipe_http_request_cancel(data
->request
);
1776 static void process_buddy_photo_response(struct sipe_core_private
*sipe_private
,
1782 struct photo_response_data
*rdata
= (struct photo_response_data
*) data
;
1784 rdata
->request
= NULL
;
1786 if (status
== SIPE_HTTP_STATUS_OK
) {
1787 const gchar
*len_str
= sipe_utils_nameval_find(headers
,
1790 gsize photo_size
= atoi(len_str
);
1791 gpointer photo
= g_new(char, photo_size
);
1794 memcpy(photo
, body
, photo_size
);
1796 sipe_backend_buddy_set_photo(SIPE_CORE_PUBLIC
,
1805 sipe_private
->buddies
->pending_photo_requests
=
1806 g_slist_remove(sipe_private
->buddies
->pending_photo_requests
, rdata
);
1808 photo_response_data_free(rdata
);
1811 static gchar
*create_x_ms_webticket_header(const gchar
*wsse_security
)
1813 gchar
*assertion
= sipe_xml_extract_raw(wsse_security
, "saml:Assertion", TRUE
);
1814 gchar
*wsse_security_base64
;
1815 gchar
*x_ms_webticket_header
;
1821 wsse_security_base64
= g_base64_encode((const guchar
*)assertion
,
1823 x_ms_webticket_header
= g_strdup_printf("X-MS-WebTicket: opaque=%s\r\n",
1824 wsse_security_base64
);
1827 g_free(wsse_security_base64
);
1829 return x_ms_webticket_header
;
1832 void sipe_buddy_update_photo(struct sipe_core_private
*sipe_private
,
1834 const gchar
*photo_hash
,
1835 const gchar
*photo_url
,
1836 const gchar
*headers
)
1838 const gchar
*photo_hash_old
=
1839 sipe_backend_buddy_get_photo_hash(SIPE_CORE_PUBLIC
, uri
);
1841 if (!sipe_strequal(photo_hash
, photo_hash_old
)) {
1842 struct photo_response_data
*data
= g_new(struct photo_response_data
, 1);
1844 SIPE_DEBUG_INFO("sipe_buddy_update_photo: who '%s' url '%s' hash '%s'",
1845 uri
, photo_url
, photo_hash
);
1847 data
->who
= g_strdup(uri
);
1848 data
->photo_hash
= g_strdup(photo_hash
);
1850 data
->request
= sipe_http_request_get(sipe_private
,
1853 process_buddy_photo_response
,
1856 if (data
->request
) {
1857 sipe_private
->buddies
->pending_photo_requests
=
1858 g_slist_append(sipe_private
->buddies
->pending_photo_requests
, data
);
1859 sipe_http_request_ready(data
->request
);
1861 photo_response_data_free(data
);
1866 static void get_photo_ab_entry_response(struct sipe_core_private
*sipe_private
,
1868 SIPE_UNUSED_PARAMETER
const gchar
*raw
,
1869 sipe_xml
*soap_body
,
1870 gpointer callback_data
)
1872 struct ms_dlx_data
*mdd
= callback_data
;
1873 gchar
*photo_rel_path
= NULL
;
1874 gchar
*photo_hash
= NULL
;
1877 const sipe_xml
*node
;
1879 SIPE_DEBUG_INFO("get_photo_ab_entry_response: received valid SOAP message from service %s",
1882 for (node
= sipe_xml_child(soap_body
, "Body/SearchAbEntryResponse/SearchAbEntryResult/Items/AbEntry/Attributes/Attribute");
1884 node
= sipe_xml_twin(node
)) {
1885 gchar
*name
= sipe_xml_data(sipe_xml_child(node
, "Name"));
1886 gchar
*value
= sipe_xml_data(sipe_xml_child(node
, "Value"));
1888 if (!is_empty(value
)) {
1889 if (sipe_strcase_equal(name
, "PhotoRelPath")) {
1890 g_free(photo_rel_path
);
1891 photo_rel_path
= value
;
1893 } else if (sipe_strcase_equal(name
, "PhotoHash")) {
1905 if (sipe_private
->addressbook_uri
&& photo_rel_path
&& photo_hash
) {
1906 gchar
*photo_url
= g_strdup_printf("%s/%s",
1907 sipe_private
->addressbook_uri
, photo_rel_path
);
1908 gchar
*x_ms_webticket_header
= create_x_ms_webticket_header(mdd
->wsse_security
);
1910 sipe_buddy_update_photo(sipe_private
,
1914 x_ms_webticket_header
);
1916 g_free(x_ms_webticket_header
);
1920 g_free(photo_rel_path
);
1925 static void get_photo_ab_entry_failed(SIPE_UNUSED_PARAMETER
struct sipe_core_private
*sipe_private
,
1926 struct ms_dlx_data
*mdd
)
1931 static void buddy_fetch_photo(struct sipe_core_private
*sipe_private
,
1934 if (sipe_backend_uses_photo()) {
1936 /* Lync 2013 or newer: use UCS if contacts are migrated */
1937 if (SIPE_CORE_PRIVATE_FLAG_IS(LYNC2013
) &&
1938 sipe_ucs_is_migrated(sipe_private
)) {
1940 sipe_ucs_get_photo(sipe_private
, uri
);
1942 /* Lync 2010: use [MS-DLX] */
1943 } else if (sipe_private
->dlx_uri
&&
1944 sipe_private
->addressbook_uri
) {
1945 struct ms_dlx_data
*mdd
= g_new0(struct ms_dlx_data
, 1);
1947 mdd
->search_rows
= search_rows_for_uri(uri
);
1948 mdd
->other
= g_strdup(uri
);
1949 mdd
->max_returns
= 1;
1950 mdd
->callback
= get_photo_ab_entry_response
;
1951 mdd
->failed_callback
= get_photo_ab_entry_failed
;
1952 mdd
->session
= sipe_svc_session_start();
1954 ms_dlx_webticket_request(sipe_private
, mdd
);
1959 static void buddy_refresh_photos_cb(gpointer uri
,
1960 SIPE_UNUSED_PARAMETER gpointer value
,
1961 gpointer sipe_private
)
1963 buddy_fetch_photo(sipe_private
, uri
);
1966 void sipe_buddy_refresh_photos(struct sipe_core_private
*sipe_private
)
1968 g_hash_table_foreach(sipe_private
->buddies
->uri
,
1969 buddy_refresh_photos_cb
,
1973 /* Buddy menu callbacks*/
1975 void sipe_core_buddy_new_chat(struct sipe_core_public
*sipe_public
,
1978 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
1980 /* 2007+ conference */
1981 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007
)) {
1982 sipe_conf_add(sipe_private
, who
);
1984 /* 2005- multiparty chat */
1986 gchar
*self
= sip_uri_self(sipe_private
);
1987 struct sip_session
*session
;
1989 session
= sipe_session_add_chat(sipe_private
,
1993 session
->chat_session
->backend
= sipe_backend_chat_create(SIPE_CORE_PUBLIC
,
1994 session
->chat_session
,
1995 session
->chat_session
->title
,
1999 sipe_im_invite(sipe_private
, session
, who
,
2000 NULL
, NULL
, NULL
, FALSE
);
2004 void sipe_core_buddy_send_email(struct sipe_core_public
*sipe_public
,
2007 sipe_backend_buddy buddy
= sipe_backend_buddy_find(sipe_public
,
2010 gchar
*email
= sipe_backend_buddy_get_string(sipe_public
,
2012 SIPE_BUDDY_INFO_EMAIL
);
2015 gchar
*command_line
= g_strdup_printf(
2021 " mailto:%s", email
);
2024 SIPE_DEBUG_INFO("sipe_core_buddy_send_email: going to call email client: %s",
2026 g_spawn_command_line_async(command_line
, NULL
);
2027 g_free(command_line
);
2030 SIPE_DEBUG_INFO("sipe_core_buddy_send_email: no email address stored for buddy=%s",
2037 static struct sipe_backend_buddy_menu
*buddy_menu_phone(struct sipe_core_public
*sipe_public
,
2038 struct sipe_backend_buddy_menu
*menu
,
2039 sipe_backend_buddy buddy
,
2040 sipe_buddy_info_fields id_phone
,
2041 sipe_buddy_info_fields id_display
,
2044 gchar
*phone
= sipe_backend_buddy_get_string(sipe_public
,
2048 gchar
*display
= sipe_backend_buddy_get_string(sipe_public
,
2052 gchar
*label
= g_strdup_printf("%s %s",
2055 (tmp
= sip_tel_uri_denormalize(phone
)));
2056 menu
= sipe_backend_buddy_menu_add(sipe_public
,
2059 SIPE_BUDDY_MENU_MAKE_CALL
,
2070 struct sipe_backend_buddy_menu
*sipe_core_buddy_create_menu(struct sipe_core_public
*sipe_public
,
2071 const gchar
*buddy_name
,
2072 struct sipe_backend_buddy_menu
*menu
)
2074 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
2075 sipe_backend_buddy buddy
= sipe_backend_buddy_find(sipe_public
,
2078 gchar
*self
= sip_uri_self(sipe_private
);
2080 SIPE_SESSION_FOREACH
{
2081 if (!sipe_strcase_equal(self
, buddy_name
) && session
->chat_session
)
2083 struct sipe_chat_session
*chat_session
= session
->chat_session
;
2084 gboolean is_conf
= (chat_session
->type
== SIPE_CHAT_TYPE_CONFERENCE
);
2086 if (sipe_backend_chat_find(chat_session
->backend
, buddy_name
))
2088 gboolean conf_op
= sipe_backend_chat_is_operator(chat_session
->backend
, self
);
2092 !sipe_backend_chat_is_operator(chat_session
->backend
, buddy_name
) &&
2093 /* We are a conf OP */
2095 gchar
*label
= g_strdup_printf(_("Make leader of '%s'"),
2096 chat_session
->title
);
2097 menu
= sipe_backend_buddy_menu_add(sipe_public
,
2100 SIPE_BUDDY_MENU_MAKE_CHAT_LEADER
,
2106 /* We are a conf OP */
2108 gchar
*label
= g_strdup_printf(_("Remove from '%s'"),
2109 chat_session
->title
);
2110 menu
= sipe_backend_buddy_menu_add(sipe_public
,
2113 SIPE_BUDDY_MENU_REMOVE_FROM_CHAT
,
2121 (is_conf
&& !session
->locked
)) {
2122 gchar
*label
= g_strdup_printf(_("Invite to '%s'"),
2123 chat_session
->title
);
2124 menu
= sipe_backend_buddy_menu_add(sipe_public
,
2127 SIPE_BUDDY_MENU_INVITE_TO_CHAT
,
2133 } SIPE_SESSION_FOREACH_END
;
2136 menu
= sipe_backend_buddy_menu_add(sipe_public
,
2139 SIPE_BUDDY_MENU_NEW_CHAT
,
2142 /* add buddy's phone numbers if we have call control */
2143 if (sip_csta_is_idle(sipe_private
)) {
2146 menu
= buddy_menu_phone(sipe_public
,
2149 SIPE_BUDDY_INFO_WORK_PHONE
,
2150 SIPE_BUDDY_INFO_WORK_PHONE_DISPLAY
,
2153 menu
= buddy_menu_phone(sipe_public
,
2156 SIPE_BUDDY_INFO_MOBILE_PHONE
,
2157 SIPE_BUDDY_INFO_MOBILE_PHONE_DISPLAY
,
2161 menu
= buddy_menu_phone(sipe_public
,
2164 SIPE_BUDDY_INFO_HOME_PHONE
,
2165 SIPE_BUDDY_INFO_HOME_PHONE_DISPLAY
,
2169 menu
= buddy_menu_phone(sipe_public
,
2172 SIPE_BUDDY_INFO_OTHER_PHONE
,
2173 SIPE_BUDDY_INFO_OTHER_PHONE_DISPLAY
,
2177 menu
= buddy_menu_phone(sipe_public
,
2180 SIPE_BUDDY_INFO_CUSTOM1_PHONE
,
2181 SIPE_BUDDY_INFO_CUSTOM1_PHONE_DISPLAY
,
2186 gchar
*email
= sipe_backend_buddy_get_string(sipe_public
,
2188 SIPE_BUDDY_INFO_EMAIL
);
2190 menu
= sipe_backend_buddy_menu_add(sipe_public
,
2193 SIPE_BUDDY_MENU_SEND_EMAIL
,
2199 /* access level control */
2200 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007
))
2201 menu
= sipe_backend_buddy_sub_menu_add(sipe_public
,
2204 sipe_ocs2007_access_control_menu(sipe_private
,
2210 guint
sipe_buddy_count(struct sipe_core_private
*sipe_private
)
2212 return(g_hash_table_size(sipe_private
->buddies
->uri
));
2215 static guint
sipe_ht_hash_nick(const char *nick
)
2217 char *lc
= g_utf8_strdown(nick
, -1);
2218 guint bucket
= g_str_hash(lc
);
2224 static gboolean
sipe_ht_equals_nick(const char *nick1
, const char *nick2
)
2226 char *nick1_norm
= NULL
;
2227 char *nick2_norm
= NULL
;
2230 if (nick1
== NULL
&& nick2
== NULL
) return TRUE
;
2231 if (nick1
== NULL
|| nick2
== NULL
||
2232 !g_utf8_validate(nick1
, -1, NULL
) ||
2233 !g_utf8_validate(nick2
, -1, NULL
)) return FALSE
;
2235 nick1_norm
= g_utf8_casefold(nick1
, -1);
2236 nick2_norm
= g_utf8_casefold(nick2
, -1);
2237 equal
= g_utf8_collate(nick1_norm
, nick2_norm
) == 0;
2244 void sipe_buddy_init(struct sipe_core_private
*sipe_private
)
2246 struct sipe_buddies
*buddies
= g_new0(struct sipe_buddies
, 1);
2247 buddies
->uri
= g_hash_table_new((GHashFunc
) sipe_ht_hash_nick
,
2248 (GEqualFunc
) sipe_ht_equals_nick
);
2249 buddies
->exchange_key
= g_hash_table_new(g_str_hash
,
2251 sipe_private
->buddies
= buddies
;