-guidir = $(datadir)/libzakauthedb/gui
-formdir = $(datadir)/libzakauthedb/form
+guidir = $(datadir)/$(PACKAGE)/gui
+formdir = $(datadir)/$(PACKAGE)/form
AM_CPPFLAGS = $(LIBZAKAUTHEDB_CFLAGS) \
$(LIBGCRYPT_CFLAGS) \
-DGUIDIR=\""$(guidir)"\" \
-DFORMDIR=\""$(formdir)"\"
-LIBS = $(LIBZAKAUTHEDB_LIBS) \
- $(LIBGCRYPT_LIBS) \
- $(GPG_ERROR_LIBS) \
- $(LIBZAKCONFI_LIBS)
-
-libzakauthe_pluginsdir = $(libdir)/libzakauthe/plugins
+libzakauthe_pluginsdir = `pkg-config --variable=pluginsdir libzakauthe`
libzakauthe_plugins_LTLIBRARIES = libzakauthedb.la
+libzakauthe_plugins_DATA = zakauthedb.plugin
libzakauthedb_la_SOURCES = aute_db.c \
aute_db.h \
user.c \
user.h
-libzakauthedb_la_LDFLAGS = -no-undefined
+libzakauthedb_la_LDFLAGS = -module -avoid-version -no-undefined
+libzakauthedb_la_LIBADD = $(LIBZAKAUTHEDB_LIBS) \
+ $(LIBGCRYPT_LIBS) \
+ $(GPG_ERROR_LIBS) \
+ $(LIBZAKCONFI_LIBS)
#include <glib/gprintf.h>
#include <gtk/gtk.h>
+
+#include <libpeas/peas.h>
+
#include <gcrypt.h>
#include <libgdaex/libgdaex.h>
#include <libzakutils/libzakutils.h>
+#include <libzakauthe/libzakauthe.h>
+
#ifdef HAVE_LIBZAKCONFI
#include <libzakconfi/libzakconfi.h>
#endif
+#include "aute_db.h"
#include "user.h"
static GtkBuilder *gtkbuilder;
};
/* PRIVATE */
+static void zak_authe_pluggable_iface_init (ZakAuthePluggableInterface *iface);
+
+static void zak_authe_db_finalize (GObject *object);
+
+static gchar *zak_authe_db_authe_get_password (ZakAuthePluggable *pluggable, GSList *parameters, gchar **password);
+static gchar *zak_authe_db_authe (ZakAuthePluggable *pluggable, GSList *parameters);
+static gboolean zak_authe_db_authe_nogui (ZakAuthePluggable *pluggable, GSList *parameters, const gchar *username, const gchar *password, const gchar *new_password);
+static GtkWidget *zak_authe_db_get_management_gui (ZakAuthePluggable *pluggable, GSList *parameters);
+
+#define ZAK_AUTHE_DB_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), ZAK_AUTHE_TYPE_DB, ZakAutheDBPrivate))
+
+typedef struct _ZakAutheDBPrivate ZakAutheDBPrivate;
+struct _ZakAutheDBPrivate
+ {
+ gpointer empty;
+ };
+
+G_DEFINE_DYNAMIC_TYPE_EXTENDED (ZakAutheDB,
+ zak_authe_db,
+ PEAS_TYPE_EXTENSION_BASE,
+ 0,
+ G_IMPLEMENT_INTERFACE_DYNAMIC (ZAK_AUTHE_TYPE_PLUGGABLE,
+ zak_authe_pluggable_iface_init))
+
#ifdef G_OS_WIN32
static HMODULE backend_dll = NULL;
}
#endif
+static void
+zak_authe_db_class_init (ZakAutheDBClass *klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+ g_type_class_add_private (object_class, sizeof (ZakAutheDBPrivate));
+
+ object_class->finalize = zak_authe_db_finalize;
+}
+
+static void
+zak_authe_pluggable_iface_init (ZakAuthePluggableInterface *iface)
+{
+ iface->authe = zak_authe_db_authe;
+ iface->authe_get_password = zak_authe_db_authe_get_password;
+ iface->authe_nogui = zak_authe_db_authe_nogui;
+ iface->get_management_gui = zak_authe_db_get_management_gui;
+}
+
+static void
+zak_authe_db_init (ZakAutheDB *plugin)
+{
+ ZakAutheDBPrivate *priv = ZAK_AUTHE_DB_GET_PRIVATE (plugin);
+}
+
+static void
+zak_authe_db_finalize (GObject *object)
+{
+ ZakAutheDB *plugin = ZAK_AUTHE_DB (object);
+
+ G_OBJECT_CLASS (zak_authe_db_parent_class)->finalize (object);
+}
+
#ifdef HAVE_LIBZAKCONFI
static gboolean
get_connection_parameters_from_confi (ZakConfi *confi, gchar **cnc_string)
{
}
-/* PUBLIC */
-gchar
-*zak_authe_plg_authe (GSList *parameters)
+static gchar
+*zak_authe_db_authe_get_password (ZakAuthePluggable *pluggable, GSList *parameters, gchar **password)
{
GError *error;
gchar *ret = NULL;
gchar *utente;
- gchar *password;
+ gchar *_password;
gchar *new_password;
error = NULL;
{
case GTK_RESPONSE_OK:
/* controllo dell'utente e della password */
- password = g_strstrip (g_strdup (gtk_entry_get_text (GTK_ENTRY (txt_password))));
+ _password = g_strstrip (g_strdup (gtk_entry_get_text (GTK_ENTRY (txt_password))));
utente = g_strstrip (g_strdup (gtk_entry_get_text (GTK_ENTRY (txt_utente))));
new_password = NULL;
if (gtk_expander_get_expanded (GTK_EXPANDER (exp_cambio)))
new_password = NULL;
}
}
- ret = controllo (utente, password, new_password);
+ ret = controllo (utente, _password, new_password);
break;
case GTK_RESPONSE_CANCEL:
break;
}
+ if (ret != NULL && g_strcmp0 (ret, "") != 0 && password != NULL && *password == NULL)
+ {
+ if (g_strcmp0 (gtk_entry_get_text (GTK_ENTRY (txt_password_conferma)), "") != 0)
+ {
+ *password = g_strdup (gtk_entry_get_text (GTK_ENTRY (txt_password_conferma)));
+ }
+ else
+ {
+ *password = g_strdup (gtk_entry_get_text (GTK_ENTRY (txt_password)));
+ }
+ }
+
gtk_widget_destroy (diag);
g_object_unref (gtkbuilder);
return ret;
}
+static gchar
+*zak_authe_db_authe (ZakAuthePluggable *pluggable, GSList *parameters)
+{
+ return zak_authe_db_authe_get_password (pluggable, parameters, NULL);
+}
/**
- * zak_authe_plg_authe_nogui:
+ * zak_authe_db_authe_nogui:
* @parameters:
* @username:
* @password:
* @new_password:
*
*/
-gboolean
-zak_authe_plg_authe_nogui (GSList *parameters, const gchar *username, const gchar *password, const gchar *new_password)
+static gboolean
+zak_authe_db_authe_nogui (ZakAuthePluggable *pluggable, GSList *parameters, const gchar *username, const gchar *password, const gchar *new_password)
{
gboolean ret;
* @parameters:
*
*/
-GtkWidget
-*zak_authe_plg_get_management_gui (GSList *parameters)
+static GtkWidget
+*zak_authe_db_get_management_gui (ZakAuthePluggable *pluggable, GSList *parameters)
{
GError *error;
return w_users;
}
+
+static void
+zak_authe_db_class_finalize (ZakAutheDBClass *klass)
+{
+}
+
+G_MODULE_EXPORT void
+peas_register_types (PeasObjectModule *module)
+{
+ zak_authe_db_register_type (G_TYPE_MODULE (module));
+
+ peas_object_module_register_extension_type (module,
+ ZAK_AUTHE_TYPE_PLUGGABLE,
+ ZAK_AUTHE_TYPE_DB);
+}
/*
- * Copyright (C) 2010-2015 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2016 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#ifndef __ZAKAUTHEDB_H__
#define __ZAKAUTHEDB_H__
+
+#include <libpeas/peas.h>
+
+
G_BEGIN_DECLS
+#define ZAK_AUTHE_TYPE_DB (zak_authe_db_get_type ())
+#define ZAK_AUTHE_DB(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), ZAK_AUTHE_TYPE_DB, ZakAutheDB))
+#define ZAK_AUTHE_DB_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), ZAK_AUTHE_TYPE_DB, ZakAutheDB))
+#define ZAK_AUTHE_IS_DB(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), ZAK_AUTHE_TYPE_DB))
+#define ZAK_AUTHE_IS_DB_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), ZAK_AUTHE_TYPE_DB))
+#define ZAK_AUTHE_DB_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), ZAK_AUTHE_TYPE_DB, ZakAutheDBClass))
+
+typedef struct _ZakAutheDB ZakAutheDB;
+typedef struct _ZakAutheDBClass ZakAutheDBClass;
+
+struct _ZakAutheDB {
+ PeasExtensionBase parent_instance;
+};
+
+struct _ZakAutheDBClass {
+ PeasExtensionBaseClass parent_class;
+};
+
+GType zak_authe_db_get_type (void) G_GNUC_CONST;
+G_MODULE_EXPORT void peas_register_types (PeasObjectModule *module);
+
+
gchar *zak_authe_db_encrypt_password (const gchar *password);