[evolution-data-server/gnome-3-0] Bug #651054 - Support queries based on "photo" contact field (cherry picked from commit ac16f4aeb1c1
- From: Patrick Ohly <pohly src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server/gnome-3-0] Bug #651054 - Support queries based on "photo" contact field (cherry picked from commit ac16f4aeb1c1
- Date: Tue, 7 Jun 2011 08:59:58 +0000 (UTC)
commit 9b0bff12a98fac22aaa2bb79d0b27fda7bd4717e
Author: Christophe Dumez <christophe dumez intel com>
Date: Fri May 27 15:37:35 2011 +0200
Bug #651054 - Support queries based on "photo" contact field
(cherry picked from commit ac16f4aeb1c146e89e709d0f0f5455275fbe62e8)
addressbook/libedata-book/e-book-backend-sexp.c | 21 +++++++++++++++++++++
1 files changed, 21 insertions(+), 0 deletions(-)
---
diff --git a/addressbook/libedata-book/e-book-backend-sexp.c b/addressbook/libedata-book/e-book-backend-sexp.c
index 7867f4e..47aaefb 100644
--- a/addressbook/libedata-book/e-book-backend-sexp.c
+++ b/addressbook/libedata-book/e-book-backend-sexp.c
@@ -181,6 +181,26 @@ compare_name (EContact *contact, const gchar *str,
}
static gboolean
+compare_photo_uri (EContact *contact, const gchar *str,
+ gchar *(*compare)(const gchar *, const gchar *))
+{
+ EContactPhoto *photo;
+ gboolean ret_val = FALSE;
+
+ photo = e_contact_get (contact, E_CONTACT_PHOTO);
+
+ if (photo) {
+ /* Compare the photo uri with the string */
+ if ((photo->type == E_CONTACT_PHOTO_TYPE_URI)
+ && compare(photo->data.uri, str)) {
+ ret_val = TRUE;
+ }
+ e_contact_photo_free (photo);
+ }
+ return ret_val;
+}
+
+static gboolean
compare_address (EContact *contact, const gchar *str,
gchar *(*compare)(const gchar *, const gchar *))
{
@@ -255,6 +275,7 @@ static struct prop_info {
NORMAL_PROP ( E_CONTACT_FILE_AS, "file_as" ),
NORMAL_PROP ( E_CONTACT_UID, "id" ),
LIST_PROP ( "full_name", compare_name), /* not really a list, but we need to compare both full and surname */
+ LIST_PROP ( "photo", compare_photo_uri ), /* not really a list, but we need to compare the uri in the struct */
NORMAL_PROP ( E_CONTACT_GIVEN_NAME, "given_name"),
NORMAL_PROP ( E_CONTACT_FAMILY_NAME, "family_name"),
NORMAL_PROP ( E_CONTACT_HOMEPAGE_URL, "url"),
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]