6 * Copyright (C) 2010-11 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 #include "sipe-common.h"
33 #include "http-conn.h" /* sipe-cal.h requires this */
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"
48 #include "sipe-ocs2005.h"
49 #include "sipe-ocs2007.h"
50 #include "sipe-schedule.h"
51 #include "sipe-session.h"
52 #include "sipe-subscriptions.h"
53 #include "sipe-utils.h"
56 static void buddy_free(struct sipe_buddy
*buddy
)
60 * We are calling g_hash_table_foreach_steal(). That means that no
61 * key/value deallocation functions are called. Therefore the glib
62 * hash code does not touch the key (buddy->name) or value (buddy)
63 * of the to-be-deleted hash node at all. It follows that we
65 * - MUST free the memory for the key ourselves and
66 * - ARE allowed to do it in this function
68 * Conclusion: glib must be broken on the Windows platform if sipe
69 * crashes with SIGTRAP when closing. You'll have to live
70 * with the memory leak until this is fixed.
74 g_free(buddy
->activity
);
75 g_free(buddy
->meeting_subject
);
76 g_free(buddy
->meeting_location
);
79 g_free(buddy
->cal_start_time
);
80 g_free(buddy
->cal_free_busy_base64
);
81 g_free(buddy
->cal_free_busy
);
82 g_free(buddy
->last_non_cal_activity
);
84 sipe_cal_free_working_hours(buddy
->cal_working_hours
);
86 g_free(buddy
->device_name
);
87 g_slist_free(buddy
->groups
);
91 static gboolean
buddy_free_cb(SIPE_UNUSED_PARAMETER gpointer key
,
93 SIPE_UNUSED_PARAMETER gpointer user_data
)
96 /* We must return TRUE as the key/value have already been deleted */
100 void sipe_buddy_free_all(struct sipe_core_private
*sipe_private
)
102 g_hash_table_foreach_steal(sipe_private
->buddies
,
107 gchar
*sipe_core_buddy_status(struct sipe_core_public
*sipe_public
,
110 const gchar
*status_text
)
112 struct sipe_buddy
*sbuddy
;
113 const char *activity_str
;
115 if (!sipe_public
) return NULL
; /* happens on pidgin exit */
117 sbuddy
= g_hash_table_lookup(SIPE_CORE_PRIVATE
->buddies
, uri
);
118 if (!sbuddy
) return NULL
;
120 activity_str
= sbuddy
->activity
? sbuddy
->activity
:
121 (activity
== SIPE_ACTIVITY_BUSY
) || (activity
== SIPE_ACTIVITY_BRB
) ?
124 if (activity_str
&& sbuddy
->note
) {
125 return g_strdup_printf("%s - <i>%s</i>", activity_str
, sbuddy
->note
);
126 } else if (activity_str
) {
127 return g_strdup(activity_str
);
128 } else if (sbuddy
->note
) {
129 return g_strdup_printf("<i>%s</i>", sbuddy
->note
);
135 gchar
*sipe_buddy_get_alias(struct sipe_core_private
*sipe_private
,
138 sipe_backend_buddy pbuddy
;
140 if ((pbuddy
= sipe_backend_buddy_find(SIPE_CORE_PUBLIC
, with
, NULL
))) {
141 alias
= sipe_backend_buddy_get_alias(SIPE_CORE_PUBLIC
, pbuddy
);
146 void sipe_core_buddy_group(struct sipe_core_public
*sipe_public
,
148 const gchar
*old_group_name
,
149 const gchar
*new_group_name
)
151 struct sipe_buddy
* buddy
= g_hash_table_lookup(SIPE_CORE_PRIVATE
->buddies
, who
);
152 struct sipe_group
* old_group
= NULL
;
153 struct sipe_group
* new_group
;
155 SIPE_DEBUG_INFO("sipe_core_buddy_group: who:%s old_group_name:%s new_group_name:%s",
156 who
? who
: "", old_group_name
? old_group_name
: "", new_group_name
? new_group_name
: "");
158 if(!buddy
) { // buddy not in roaming list
162 if (old_group_name
) {
163 old_group
= sipe_group_find_by_name(SIPE_CORE_PRIVATE
, old_group_name
);
165 new_group
= sipe_group_find_by_name(SIPE_CORE_PRIVATE
, new_group_name
);
168 buddy
->groups
= g_slist_remove(buddy
->groups
, old_group
);
169 SIPE_DEBUG_INFO("sipe_core_buddy_group: buddy %s removed from old group %s", who
, old_group_name
);
173 sipe_group_create(SIPE_CORE_PRIVATE
, new_group_name
, who
);
175 buddy
->groups
= slist_insert_unique_sorted(buddy
->groups
, new_group
, (GCompareFunc
)sipe_group_compare
);
176 sipe_core_group_set_user(sipe_public
, who
);
180 void sipe_core_buddy_add(struct sipe_core_public
*sipe_public
,
182 const gchar
*group_name
)
184 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
186 if (!g_hash_table_lookup(sipe_private
->buddies
, uri
)) {
187 struct sipe_buddy
*b
= g_new0(struct sipe_buddy
, 1);
189 SIPE_DEBUG_INFO("sipe_core_buddy_add: %s", uri
);
191 b
->name
= g_strdup(uri
);
192 b
->just_added
= TRUE
;
193 g_hash_table_insert(sipe_private
->buddies
, b
->name
, b
);
195 /* @TODO should go to callback */
196 sipe_subscribe_presence_single(sipe_private
, b
->name
);
199 SIPE_DEBUG_INFO("sipe_core_buddy_add: buddy %s already in internal list",
203 sipe_core_buddy_group(sipe_public
,
210 * Unassociates buddy from group first.
211 * Then see if no groups left, removes buddy completely.
212 * Otherwise updates buddy groups on server.
214 void sipe_core_buddy_remove(struct sipe_core_public
*sipe_public
,
216 const gchar
*group_name
)
218 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
219 struct sipe_buddy
*b
= g_hash_table_lookup(sipe_private
->buddies
,
225 struct sipe_group
*g
= sipe_group_find_by_name(sipe_private
,
228 b
->groups
= g_slist_remove(b
->groups
, g
);
229 SIPE_DEBUG_INFO("sipe_core_buddy_remove: buddy %s removed from group %s",
234 if (g_slist_length(b
->groups
) < 1) {
235 gchar
*action_name
= sipe_utils_presence_key(uri
);
236 sipe_schedule_cancel(sipe_private
, action_name
);
239 g_hash_table_remove(sipe_private
->buddies
, uri
);
242 gchar
*request
= g_strdup_printf("<m:URI>%s</m:URI>",
244 sip_soap_request(sipe_private
,
252 /* updates groups on server */
253 sipe_core_group_set_user(sipe_public
, b
->name
);
258 void sipe_core_buddy_got_status(struct sipe_core_public
*sipe_public
,
260 const gchar
*status_id
)
262 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
263 struct sipe_buddy
*sbuddy
= g_hash_table_lookup(sipe_private
->buddies
,
268 /* Check if on 2005 system contact's calendar,
269 * then set/preserve it.
271 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007
)) {
272 sipe_backend_buddy_set_status(sipe_public
, uri
, status_id
);
274 sipe_ocs2005_apply_calendar_status(sipe_private
,
280 void sipe_core_buddy_tooltip_info(struct sipe_core_public
*sipe_public
,
282 const gchar
*status_name
,
284 struct sipe_backend_buddy_tooltip
*tooltip
)
286 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
288 gboolean is_oof_note
= FALSE
;
289 const gchar
*activity
= NULL
;
290 gchar
*calendar
= NULL
;
291 const gchar
*meeting_subject
= NULL
;
292 const gchar
*meeting_location
= NULL
;
293 gchar
*access_text
= NULL
;
295 #define SIPE_ADD_BUDDY_INFO(l, t) \
297 gchar *tmp = g_markup_escape_text((t), -1); \
298 sipe_backend_buddy_tooltip_add(sipe_public, tooltip, (l), tmp); \
301 #define SIPE_ADD_BUDDY_INFO_NOESCAPE(l, t) \
302 sipe_backend_buddy_tooltip_add(sipe_public, tooltip, (l), (t))
304 if (sipe_public
) { /* happens on pidgin exit */
305 struct sipe_buddy
*sbuddy
= g_hash_table_lookup(sipe_private
->buddies
, uri
);
308 is_oof_note
= sbuddy
->is_oof_note
;
309 activity
= sbuddy
->activity
;
310 calendar
= sipe_cal_get_description(sbuddy
);
311 meeting_subject
= sbuddy
->meeting_subject
;
312 meeting_location
= sbuddy
->meeting_location
;
314 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007
)) {
315 gboolean is_group_access
= FALSE
;
316 const int container_id
= sipe_ocs2007_find_access_level(sipe_private
,
318 sipe_get_no_sip_uri(uri
),
320 const char *access_level
= sipe_ocs2007_access_level_name(container_id
);
321 access_text
= is_group_access
?
322 g_strdup(access_level
) :
323 g_strdup_printf(SIPE_OCS2007_INDENT_MARKED_FMT
,
329 const gchar
*status_str
= activity
? activity
: status_name
;
331 SIPE_ADD_BUDDY_INFO(_("Status"), status_str
);
333 if (is_online
&& !is_empty(calendar
)) {
334 SIPE_ADD_BUDDY_INFO(_("Calendar"), calendar
);
337 if (!is_empty(meeting_location
)) {
338 SIPE_DEBUG_INFO("sipe_tooltip_text: %s meeting location: '%s'", uri
, meeting_location
);
339 SIPE_ADD_BUDDY_INFO(_("Meeting in"), meeting_location
);
341 if (!is_empty(meeting_subject
)) {
342 SIPE_DEBUG_INFO("sipe_tooltip_text: %s meeting subject: '%s'", uri
, meeting_subject
);
343 SIPE_ADD_BUDDY_INFO(_("Meeting about"), meeting_subject
);
346 SIPE_DEBUG_INFO("sipe_tooltip_text: %s note: '%s'", uri
, note
);
347 SIPE_ADD_BUDDY_INFO_NOESCAPE(is_oof_note
? _("Out of office note") : _("Note"),
348 g_strdup_printf("<i>%s</i>", note
));
351 SIPE_ADD_BUDDY_INFO(_("Access level"), access_text
);
356 void sipe_buddy_update_property(struct sipe_core_private
*sipe_private
,
358 sipe_buddy_info_fields propkey
,
359 char *property_value
)
361 GSList
*buddies
, *entry
;
364 property_value
= g_strstrip(property_value
);
366 entry
= buddies
= sipe_backend_buddy_find_all(SIPE_CORE_PUBLIC
, uri
, NULL
); /* all buddies in different groups */
371 sipe_backend_buddy p_buddy
= entry
->data
;
373 /* for Display Name */
374 if (propkey
== SIPE_BUDDY_INFO_DISPLAY_NAME
) {
375 alias
= sipe_backend_buddy_get_alias(SIPE_CORE_PUBLIC
, p_buddy
);
376 if (property_value
&& sipe_is_bad_alias(uri
, alias
)) {
377 SIPE_DEBUG_INFO("Replacing alias for %s with %s", uri
, property_value
);
378 sipe_backend_buddy_set_alias(SIPE_CORE_PUBLIC
, p_buddy
, property_value
);
382 server_alias
= sipe_backend_buddy_get_server_alias(SIPE_CORE_PUBLIC
, p_buddy
);
383 if (!is_empty(property_value
) &&
384 (!sipe_strequal(property_value
, server_alias
) || is_empty(server_alias
)) )
386 SIPE_DEBUG_INFO("Replacing service alias for %s with %s", uri
, property_value
);
387 sipe_backend_buddy_set_server_alias(SIPE_CORE_PUBLIC
, p_buddy
, property_value
);
389 g_free(server_alias
);
391 /* for other properties */
393 if (!is_empty(property_value
)) {
394 prop_str
= sipe_backend_buddy_get_string(SIPE_CORE_PUBLIC
, p_buddy
, propkey
);
395 if (!prop_str
|| !sipe_strcase_equal(prop_str
, property_value
)) {
396 sipe_backend_buddy_set_string(SIPE_CORE_PUBLIC
, p_buddy
, propkey
, property_value
);
404 g_slist_free(buddies
);
407 static gboolean
process_search_contact_response(struct sipe_core_private
*sipe_private
,
409 SIPE_UNUSED_PARAMETER
struct transaction
*trans
)
411 struct sipe_backend_search_results
*results
;
412 sipe_xml
*searchResults
;
413 const sipe_xml
*mrow
;
414 guint match_count
= 0;
415 gboolean more
= FALSE
;
418 /* valid response? */
419 if (msg
->response
!= 200) {
420 SIPE_DEBUG_ERROR("process_search_contact_response: request failed (%d)",
422 sipe_backend_notify_error(SIPE_CORE_PUBLIC
,
423 _("Contact search failed"),
428 SIPE_DEBUG_INFO("process_search_contact_response: body:\n%s", msg
->body
? msg
->body
: "");
431 searchResults
= sipe_xml_parse(msg
->body
, msg
->bodylen
);
432 if (!searchResults
) {
433 SIPE_DEBUG_INFO_NOFORMAT("process_search_contact_response: no parseable searchResults");
434 sipe_backend_notify_error(SIPE_CORE_PUBLIC
,
435 _("Contact search failed"),
441 mrow
= sipe_xml_child(searchResults
, "Body/Array/row");
443 SIPE_DEBUG_ERROR_NOFORMAT("process_search_contact_response: no matches");
444 sipe_backend_notify_error(SIPE_CORE_PUBLIC
,
445 _("No contacts found"),
448 sipe_xml_free(searchResults
);
452 /* OK, we found something - show the results to the user */
453 results
= sipe_backend_search_results_start(SIPE_CORE_PUBLIC
);
455 SIPE_DEBUG_ERROR_NOFORMAT("process_search_contact_response: Unable to display the search results.");
456 sipe_backend_notify_error(SIPE_CORE_PUBLIC
,
457 _("Unable to display the search results"),
460 sipe_xml_free(searchResults
);
464 for (/* initialized above */ ; mrow
; mrow
= sipe_xml_twin(mrow
)) {
465 gchar
**uri_parts
= g_strsplit(sipe_xml_attribute(mrow
, "uri"), ":", 2);
466 sipe_backend_search_results_add(SIPE_CORE_PUBLIC
,
469 sipe_xml_attribute(mrow
, "displayName"),
470 sipe_xml_attribute(mrow
, "company"),
471 sipe_xml_attribute(mrow
, "country"),
472 sipe_xml_attribute(mrow
, "email"));
473 g_strfreev(uri_parts
);
477 if ((mrow
= sipe_xml_child(searchResults
, "Body/directorySearch/moreAvailable")) != NULL
) {
478 char *data
= sipe_xml_data(mrow
);
479 more
= (g_strcasecmp(data
, "true") == 0);
483 secondary
= g_strdup_printf(
484 dngettext(PACKAGE_NAME
,
485 "Found %d contact%s:",
486 "Found %d contacts%s:", match_count
),
487 match_count
, more
? _(" (more matched your query)") : "");
489 sipe_backend_search_results_finalize(SIPE_CORE_PUBLIC
,
494 sipe_xml_free(searchResults
);
499 #define SIPE_SOAP_SEARCH_ROW "<m:row m:attrib=\"%s\" m:value=\"%s\"/>"
501 void sipe_core_buddy_search(struct sipe_core_public
*sipe_public
,
502 const gchar
*given_name
,
503 const gchar
*surname
,
504 const gchar
*company
,
505 const gchar
*country
)
507 gchar
**attrs
= g_new(gchar
*, 5);
512 #define ADD_QUERY_ROW(a, v) \
513 if (v) attrs[i++] = g_markup_printf_escaped(SIPE_SOAP_SEARCH_ROW, a, v)
515 ADD_QUERY_ROW("givenName", given_name
);
516 ADD_QUERY_ROW("sn", surname
);
517 ADD_QUERY_ROW("company", company
);
518 ADD_QUERY_ROW("c", country
);
524 query
= g_strjoinv(NULL
, attrs
);
525 SIPE_DEBUG_INFO("sipe_core_buddy_search: rows:\n%s",
527 sip_soap_directory_search(SIPE_CORE_PRIVATE
,
530 process_search_contact_response
,
538 static gboolean
process_options_response(SIPE_UNUSED_PARAMETER
struct sipe_core_private
*sipe_private
,
540 SIPE_UNUSED_PARAMETER
struct transaction
*trans
)
542 if (msg
->response
!= 200) {
543 SIPE_DEBUG_INFO("process_options_response: OPTIONS response is %d",
547 SIPE_DEBUG_INFO("process_options_response: body:\n%s",
548 msg
->body
? msg
->body
: "");
553 /* Asks UA/proxy about its capabilities */
554 static void sipe_options_request(struct sipe_core_private
*sipe_private
,
557 gchar
*to
= sip_uri(who
);
558 gchar
*contact
= get_contact(sipe_private
);
559 gchar
*request
= g_strdup_printf("Accept: application/sdp\r\n"
564 sip_transport_request(sipe_private
,
571 process_options_response
);
577 static gboolean
process_get_info_response(struct sipe_core_private
*sipe_private
,
579 struct transaction
*trans
)
581 const gchar
*uri
= trans
->payload
->data
;
582 sipe_backend_buddy bbuddy
;
583 struct sipe_backend_buddy_info
*info
;
584 struct sipe_buddy
*sbuddy
;
586 gchar
*device_name
= NULL
;
587 gchar
*server_alias
= NULL
;
588 gchar
*phone_number
= NULL
;
592 SIPE_DEBUG_INFO("Fetching %s's user info for %s",
593 uri
, sipe_private
->username
);
595 info
= sipe_backend_buddy_info_start(SIPE_CORE_PUBLIC
);
596 if (!info
) return(FALSE
);
598 bbuddy
= sipe_backend_buddy_find(SIPE_CORE_PUBLIC
, uri
, NULL
);
599 alias
= sipe_backend_buddy_get_local_alias(SIPE_CORE_PUBLIC
, bbuddy
);
601 /* will query buddy UA's capabilities and send answer to log */
602 if (sipe_backend_debug_enabled())
603 sipe_options_request(sipe_private
, uri
);
605 sbuddy
= g_hash_table_lookup(sipe_private
->buddies
, uri
);
607 device_name
= sbuddy
->device_name
? g_strdup(sbuddy
->device_name
) : NULL
;
610 if (msg
->response
!= 200) {
611 SIPE_DEBUG_INFO("process_get_info_response: SERVICE response is %d", msg
->response
);
613 sipe_xml
*searchResults
;
614 const sipe_xml
*mrow
;
616 SIPE_DEBUG_INFO("process_get_info_response: body:\n%s",
617 msg
->body
? msg
->body
: "");
619 searchResults
= sipe_xml_parse(msg
->body
, msg
->bodylen
);
620 if (!searchResults
) {
622 SIPE_DEBUG_INFO_NOFORMAT("process_get_info_response: no parseable searchResults");
624 } else if ((mrow
= sipe_xml_child(searchResults
, "Body/Array/row"))) {
627 server_alias
= g_strdup(sipe_xml_attribute(mrow
, "displayName"));
628 email
= g_strdup(sipe_xml_attribute(mrow
, "email"));
629 phone_number
= g_strdup(sipe_xml_attribute(mrow
, "phone"));
632 * For 2007 system we will take this from ContactCard -
633 * it has cleaner tel: URIs at least
635 if (!SIPE_CORE_PRIVATE_FLAG_IS(OCS2007
)) {
636 char *tel_uri
= sip_to_tel_uri(phone_number
);
637 /* trims its parameters, so call first */
638 sipe_buddy_update_property(sipe_private
, uri
, SIPE_BUDDY_INFO_DISPLAY_NAME
, server_alias
);
639 sipe_buddy_update_property(sipe_private
, uri
, SIPE_BUDDY_INFO_EMAIL
, email
);
640 sipe_buddy_update_property(sipe_private
, uri
, SIPE_BUDDY_INFO_WORK_PHONE
, tel_uri
);
641 sipe_buddy_update_property(sipe_private
, uri
, SIPE_BUDDY_INFO_WORK_PHONE_DISPLAY
, phone_number
);
645 if (server_alias
&& strlen(server_alias
) > 0) {
646 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
651 if ((value
= sipe_xml_attribute(mrow
, "title")) && strlen(value
) > 0) {
652 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
657 if ((value
= sipe_xml_attribute(mrow
, "office")) && strlen(value
) > 0) {
658 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
663 if (phone_number
&& strlen(phone_number
) > 0) {
664 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
669 if ((value
= sipe_xml_attribute(mrow
, "company")) && strlen(value
) > 0) {
670 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
675 if ((value
= sipe_xml_attribute(mrow
, "city")) && strlen(value
) > 0) {
676 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
681 if ((value
= sipe_xml_attribute(mrow
, "state")) && strlen(value
) > 0) {
682 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
687 if ((value
= sipe_xml_attribute(mrow
, "country")) && strlen(value
) > 0) {
688 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
693 if (email
&& strlen(email
) > 0) {
694 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
701 sipe_xml_free(searchResults
);
704 sipe_backend_buddy_info_break(SIPE_CORE_PUBLIC
, info
);
706 if (is_empty(server_alias
)) {
707 g_free(server_alias
);
708 server_alias
= sipe_backend_buddy_get_server_alias(SIPE_CORE_PUBLIC
,
711 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
718 /* present alias if it differs from server alias */
719 if (alias
&& !sipe_strequal(alias
, server_alias
))
721 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
727 if (is_empty(email
)) {
729 email
= sipe_backend_buddy_get_string(SIPE_CORE_PUBLIC
,
731 SIPE_BUDDY_INFO_EMAIL
);
733 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
740 site
= sipe_backend_buddy_get_string(SIPE_CORE_PUBLIC
,
742 SIPE_BUDDY_INFO_SITE
);
744 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
752 sipe_backend_buddy_info_add(SIPE_CORE_PUBLIC
,
758 sipe_backend_buddy_info_finalize(SIPE_CORE_PUBLIC
, info
, uri
);
760 g_free(phone_number
);
761 g_free(server_alias
);
770 * AD search first, LDAP based
772 void sipe_core_buddy_get_info(struct sipe_core_public
*sipe_public
,
775 char *row
= g_markup_printf_escaped(SIPE_SOAP_SEARCH_ROW
,
776 "msRTCSIP-PrimaryUserAddress",
778 struct transaction_payload
*payload
= g_new0(struct transaction_payload
, 1);
780 SIPE_DEBUG_INFO("sipe_core_buddy_get_info: row: %s", row
? row
: "");
782 payload
->destroy
= g_free
;
783 payload
->data
= g_strdup(who
);
785 sip_soap_directory_search(SIPE_CORE_PRIVATE
,
788 process_get_info_response
,
793 /* Buddy menu callbacks*/
795 void sipe_core_buddy_new_chat(struct sipe_core_public
*sipe_public
,
798 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
800 /* 2007+ conference */
801 if (SIPE_CORE_PRIVATE_FLAG_IS(OCS2007
)) {
802 sipe_conf_add(sipe_private
, who
);
804 /* 2005- multiparty chat */
806 gchar
*self
= sip_uri_self(sipe_private
);
807 struct sip_session
*session
;
809 session
= sipe_session_add_chat(sipe_private
,
813 session
->chat_session
->backend
= sipe_backend_chat_create(SIPE_CORE_PUBLIC
,
814 session
->chat_session
,
815 session
->chat_session
->title
,
819 sipe_im_invite(sipe_private
, session
, who
,
820 NULL
, NULL
, NULL
, FALSE
);
824 void sipe_core_buddy_send_email(struct sipe_core_public
*sipe_public
,
827 sipe_backend_buddy buddy
= sipe_backend_buddy_find(sipe_public
,
830 gchar
*email
= sipe_backend_buddy_get_string(sipe_public
,
832 SIPE_BUDDY_INFO_EMAIL
);
835 gchar
*command_line
= g_strdup_printf(
841 " mailto:%s", email
);
844 SIPE_DEBUG_INFO("sipe_core_buddy_send_email: going to call email client: %s",
846 g_spawn_command_line_async(command_line
, NULL
);
847 g_free(command_line
);
850 SIPE_DEBUG_INFO("sipe_core_buddy_send_email: no email address stored for buddy=%s",
857 static struct sipe_backend_buddy_menu
*buddy_menu_phone(struct sipe_core_public
*sipe_public
,
858 struct sipe_backend_buddy_menu
*menu
,
859 sipe_backend_buddy buddy
,
860 sipe_buddy_info_fields id_phone
,
861 sipe_buddy_info_fields id_display
,
864 gchar
*phone
= sipe_backend_buddy_get_string(sipe_public
,
868 gchar
*display
= sipe_backend_buddy_get_string(sipe_public
,
872 gchar
*label
= g_strdup_printf("%s %s",
875 (tmp
= sip_tel_uri_denormalize(phone
)));
876 menu
= sipe_backend_buddy_menu_add(sipe_public
,
879 SIPE_BUDDY_MENU_MAKE_CALL
,
890 struct sipe_backend_buddy_menu
*sipe_core_buddy_create_menu(struct sipe_core_public
*sipe_public
,
891 const gchar
*buddy_name
,
892 struct sipe_backend_buddy_menu
*menu
)
894 struct sipe_core_private
*sipe_private
= SIPE_CORE_PRIVATE
;
895 sipe_backend_buddy buddy
= sipe_backend_buddy_find(sipe_public
,
898 gchar
*self
= sip_uri_self(sipe_private
);
900 SIPE_SESSION_FOREACH
{
901 if (!sipe_strcase_equal(self
, buddy_name
) && session
->chat_session
)
903 struct sipe_chat_session
*chat_session
= session
->chat_session
;
904 gboolean is_conf
= (chat_session
->type
== SIPE_CHAT_TYPE_CONFERENCE
);
906 if (sipe_backend_chat_find(chat_session
->backend
, buddy_name
))
908 gboolean conf_op
= sipe_backend_chat_is_operator(chat_session
->backend
, self
);
912 !sipe_backend_chat_is_operator(chat_session
->backend
, buddy_name
) &&
913 /* We are a conf OP */
915 gchar
*label
= g_strdup_printf(_("Make leader of '%s'"),
916 chat_session
->title
);
917 menu
= sipe_backend_buddy_menu_add(sipe_public
,
920 SIPE_BUDDY_MENU_MAKE_CHAT_LEADER
,
926 /* We are a conf OP */
928 gchar
*label
= g_strdup_printf(_("Remove from '%s'"),
929 chat_session
->title
);
930 menu
= sipe_backend_buddy_menu_add(sipe_public
,
933 SIPE_BUDDY_MENU_REMOVE_FROM_CHAT
,
941 (is_conf
&& !session
->locked
)) {
942 gchar
*label
= g_strdup_printf(_("Invite to '%s'"),
943 chat_session
->title
);
944 menu
= sipe_backend_buddy_menu_add(sipe_public
,
947 SIPE_BUDDY_MENU_INVITE_TO_CHAT
,
953 } SIPE_SESSION_FOREACH_END
;
956 menu
= sipe_backend_buddy_menu_add(sipe_public
,
959 SIPE_BUDDY_MENU_NEW_CHAT
,
962 /* add buddy's phone numbers if we have call control */
963 if (sip_csta_is_idle(sipe_private
)) {
966 menu
= buddy_menu_phone(sipe_public
,
969 SIPE_BUDDY_INFO_WORK_PHONE
,
970 SIPE_BUDDY_INFO_WORK_PHONE_DISPLAY
,
973 menu
= buddy_menu_phone(sipe_public
,
976 SIPE_BUDDY_INFO_MOBILE_PHONE
,
977 SIPE_BUDDY_INFO_MOBILE_PHONE_DISPLAY
,
981 menu
= buddy_menu_phone(sipe_public
,
984 SIPE_BUDDY_INFO_HOME_PHONE
,
985 SIPE_BUDDY_INFO_HOME_PHONE_DISPLAY
,
989 menu
= buddy_menu_phone(sipe_public
,
992 SIPE_BUDDY_INFO_OTHER_PHONE
,
993 SIPE_BUDDY_INFO_OTHER_PHONE_DISPLAY
,
997 menu
= buddy_menu_phone(sipe_public
,
1000 SIPE_BUDDY_INFO_CUSTOM1_PHONE
,
1001 SIPE_BUDDY_INFO_CUSTOM1_PHONE_DISPLAY
,
1006 gchar
*email
= sipe_backend_buddy_get_string(sipe_public
,
1008 SIPE_BUDDY_INFO_EMAIL
);
1010 menu
= sipe_backend_buddy_menu_add(sipe_public
,
1013 SIPE_BUDDY_MENU_SEND_EMAIL
,
1019 /*--------------------- START WIP ------------------------------*/