diff plugins/gevolution/eds-utils.c @ 11117:5a8bc4b1f5b6

[gaim-migrate @ 13173] Patch #1052811, from Szilard Novaki "gevolution plugin should register a "Send Email" popup menuitem to send mail for users using gaim contact list. See the attached patch (patched for gaim-1.0.2 release)." I made a number of changes to this to simplify it. Thanks to shres and NotZed in #evolution on irc.gnome.org for their help. Other changes: - I may have squashed some leaks in existing code as I tracked down leaks in the new code. I'm not really sure. It still leaks something that I can't track down, but that happens even if you don't call any of the new code. I verified that it was happening pre-patch, so it's no worse with this feature addition. - It's not really Ximian Evolution anymore, so I changed the summary and description to remove "Ximian", leaving it just Evolution. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 18 Jul 2005 07:26:09 +0000
parents 455c0830d108
children 8d7c99f20e4c
line wrap: on
line diff
--- a/plugins/gevolution/eds-utils.c	Mon Jul 18 01:52:43 2005 +0000
+++ b/plugins/gevolution/eds-utils.c	Mon Jul 18 07:26:09 2005 +0000
@@ -113,3 +113,133 @@
 
 	g_object_unref(addressbooks);
 }
+
+EContact * 
+gevo_run_query_in_uri(const gchar *uri, EBookQuery *query)
+{
+	EBook *book;
+	gboolean status;
+	GList *cards;
+
+	if (!gevo_load_addressbook(uri, &book, NULL))
+	{
+		gaim_debug_error("evolution",
+						 "Error retrieving addressbook\n");
+		return NULL;
+	}
+
+	status = e_book_get_contacts(book, query, &cards, NULL);
+	if (!status)
+	{
+		gaim_debug_error("evolution", "Error %d in getting card list\n",
+						 status);
+		g_object_unref(book);
+		return NULL;
+	}
+	g_object_unref(book);
+
+	if (cards != NULL)
+	{
+		EContact *contact = E_CONTACT(cards->data);
+		GList *cards2 = cards->next;
+
+		if (cards2 != NULL)
+		{
+			/* Break off the first contact and free the rest. */
+			cards->next = NULL;
+			cards2->prev = NULL;
+			g_list_foreach(cards2, (GFunc)g_object_unref, NULL);
+		}
+
+		/* Free the whole list. */
+		g_list_free(cards);
+
+		return contact;
+	}
+
+	return NULL;
+}
+
+/*
+ * Search for a buddy in the Evolution contacts.
+ *
+ * @param buddy The buddy to search for.
+ * @param query An optional query. This function takes ownership of @a query,
+ *              so callers must e_book_query_ref() it in advance (to obtain a
+ *              second reference) if they want to reuse @a query.
+ */
+EContact * 
+gevo_search_buddy_in_contacts(GaimBuddy *buddy, EBookQuery *query)
+{
+	ESourceList *addressbooks;
+	GError *err;
+	EBookQuery *full_query;
+	GSList *groups, *g;
+	EContact *result;
+	EContactField protocol_field = gevo_prpl_get_field(buddy->account, buddy);
+
+	if (protocol_field == 0)
+		return NULL;
+
+	if (query != NULL)
+	{
+		EBookQuery *queries[2];
+
+		queries[0] = query;
+		queries[1] = e_book_query_field_test(protocol_field, E_BOOK_QUERY_IS, buddy->name);
+		if (queries[1] == NULL)
+		{
+			gaim_debug_error("evolution", "Error in creating protocol query\n");
+			e_book_query_unref(query);
+			return NULL;
+		}
+
+		full_query = e_book_query_and(2, queries, TRUE);
+	}
+	else
+	{
+		full_query = e_book_query_field_test(protocol_field, E_BOOK_QUERY_IS, buddy->name);
+		if (full_query == NULL)
+		{
+			gaim_debug_error("evolution", "Error in creating protocol query\n");
+			return NULL;
+		}
+	}
+
+	if (!e_book_get_addressbooks(&addressbooks, &err))
+	{
+		gaim_debug_error("evolution",
+						 "Unable to fetch list of address books.\n");
+		e_book_query_unref(full_query);
+		if (err != NULL)
+			g_error_free(err);
+		return NULL;
+	}
+
+	groups = e_source_list_peek_groups(addressbooks);
+	if (groups == NULL)
+	{
+		g_object_unref(addressbooks);
+		e_book_query_unref(full_query);
+		return NULL;
+	}
+
+	for (g = groups; g != NULL; g = g->next)
+	{
+		GSList *sources, *s;
+		sources = e_source_group_peek_sources(g->data);
+		for (s = sources; s != NULL; s = s->next)
+		{
+			result = gevo_run_query_in_uri(e_source_get_uri(E_SOURCE(s->data)), full_query);
+			if (result != NULL) {
+			    g_object_unref(addressbooks);
+				e_book_query_unref(full_query);
+			    return result;
+			}
+		}
+	}
+
+	g_object_unref(addressbooks);
+	e_book_query_unref(full_query);
+	return NULL;
+}