From 996c9d79f9391aef5f7459a073112cf8dc86518a Mon Sep 17 00:00:00 2001 From: infirit Date: Fri, 11 Sep 2015 13:34:12 +0200 Subject: Optionally use accountsservice to retrieve face Patch by Marc Deslauriers taken from https://bugzilla.gnome.org/show_bug.cgi?id=669857 Modified by infirit for MATE Thanks to raveit who pointed it out. --- configure.ac | 7 ++ src/polkitmateauthenticationdialog.c | 128 ++++++++++++++++++++++++++++++++--- 2 files changed, 125 insertions(+), 10 deletions(-) diff --git a/configure.ac b/configure.ac index 3d4b8d4..ab27fba 100644 --- a/configure.ac +++ b/configure.ac @@ -158,6 +158,12 @@ PKG_CHECK_MODULES(POLKIT_GOBJECT, polkit-gobject-1 >= $POLKIT_GOBJECT_REQUIRED) AC_SUBST(POLKIT_GOBJECT_CFLAGS) AC_SUBST(POLKIT_GOBJECT_LIBS) +AC_ARG_ENABLE([accountsservice], + AC_HELP_STRING([--enable-accountsservice], [Enable accountsservice]),, + [enable_accountsservice=yes]) + +AM_CONDITIONAL([HAVE_ACCOUNTSSERVICE], [test "x$enable_accountsservice" = xyes]) + AC_ARG_ENABLE([examples], AC_HELP_STRING([--enable-examples], [Build the example programs]),, [enable_examples=yes]) @@ -233,6 +239,7 @@ echo " cppflags: ${CPPFLAGS} Gtk+ version: ${GTK_API_VERSION} + Accountsservice: ${enable_accountsservice} Maintainer mode: ${USE_MAINTAINER_MODE} Building api docs: ${enable_gtk_doc} GObject Introspection: ${enable_introspection} diff --git a/src/polkitmateauthenticationdialog.c b/src/polkitmateauthenticationdialog.c index fa60b32..806df27 100644 --- a/src/polkitmateauthenticationdialog.c +++ b/src/polkitmateauthenticationdialog.c @@ -135,6 +135,122 @@ user_combobox_changed (GtkComboBox *widget, } } +#if HAVE_ACCOUNTSSERVICE +static GdkPixbuf * +get_user_icon (char *username) +{ + GError *error; + GDBusConnection *connection; + GVariant *find_user_result; + GVariant *get_icon_result; + GVariant *icon_result_variant; + const gchar *user_path; + const gchar *icon_filename; + GdkPixbuf *pixbuf = NULL; + + error = NULL; + connection = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error); + + if (connection == NULL) + { + g_warning ("Unable to connect to system bus: %s", error->message); + g_error_free (error); + return NULL; + } + + find_user_result = g_dbus_connection_call_sync (connection, + "org.freedesktop.Accounts", + "/org/freedesktop/Accounts", + "org.freedesktop.Accounts", + "FindUserByName", + g_variant_new ("(s)", + username), + G_VARIANT_TYPE ("(o)"), + G_DBUS_CALL_FLAGS_NONE, + -1, + NULL, + &error); + + if (find_user_result == NULL) + { + g_warning ("Accounts couldn't find user: %s", error->message); + g_error_free (error); + return NULL; + } + + user_path = g_variant_get_string (g_variant_get_child_value (find_user_result, 0), + NULL); + + get_icon_result = g_dbus_connection_call_sync (connection, + "org.freedesktop.Accounts", + user_path, + "org.freedesktop.DBus.Properties", + "Get", + g_variant_new ("(ss)", + "org.freedesktop.Accounts.User", + "IconFile"), + G_VARIANT_TYPE ("(v)"), + G_DBUS_CALL_FLAGS_NONE, + -1, + NULL, + &error); + + g_variant_unref (find_user_result); + + if (get_icon_result == NULL) + { + g_warning ("Accounts couldn't find user icon: %s", error->message); + g_error_free (error); + return NULL; + } + + g_variant_get_child (get_icon_result, 0, "v", &icon_result_variant); + icon_filename = g_variant_get_string (icon_result_variant, NULL); + + if (icon_filename == NULL) + { + g_warning ("Accounts didn't return a valid filename for user icon"); + } + else + { + /* TODO: we probably shouldn't hard-code the size to 16x16 */ + pixbuf = gdk_pixbuf_new_from_file_at_size (icon_filename, + 16, + 16, + &error); + if (pixbuf == NULL) + { + g_warning ("Couldn't open user icon: %s", error->message); + g_error_free (error); + } + } + + g_variant_unref (icon_result_variant); + g_variant_unref (get_icon_result); + + return pixbuf; +} +#else +static GdkPixbuf * +get_user_icon (char *username) +{ + GdkPixbuf *pixbuf = NULL; + struct passwd *passwd; + + passwd = getpwnam (username); + if (passwd->pw_dir != NULL) + { + gchar *path; + path = g_strdup_printf ("%s/.face", passwd->pw_dir); + /* TODO: we probably shouldn't hard-code the size to 16x16 */ + pixbuf = gdk_pixbuf_new_from_file_at_scale (path, 16, 16, TRUE, NULL); + g_free (path); + } + + return pixbuf; +} +#endif /* HAVE_ACCOUNTSSERVICE */ + static void create_user_combobox (PolkitMateAuthenticationDialog *dialog) { @@ -166,7 +282,7 @@ create_user_combobox (PolkitMateAuthenticationDialog *dialog) { gchar *gecos; gchar *real_name; - GdkPixbuf *pixbuf; + GdkPixbuf *pixbuf = NULL; struct passwd *passwd; /* we're single threaded so this is fine */ @@ -197,15 +313,7 @@ create_user_combobox (PolkitMateAuthenticationDialog *dialog) g_free (gecos); /* Load users face */ - pixbuf = NULL; - if (passwd->pw_dir != NULL) - { - gchar *path; - path = g_strdup_printf ("%s/.face", passwd->pw_dir); - /* TODO: we probably shouldn't hard-code the size to 16x16 */ - pixbuf = gdk_pixbuf_new_from_file_at_scale (path, 16, 16, TRUE, NULL); - g_free (path); - } + pixbuf = get_user_icon (dialog->priv->users[n]); /* fall back to stock_person icon */ if (pixbuf == NULL) -- cgit v1.2.1