#include <stdio.h>
#include <glib/gprintf.h>
-#include "libzakauth.h"
+#include "libzakauthe.h"
-static void zak_auth_class_init (ZakAuthClass *class);
-static void zak_auth_init (ZakAuth *form);
+static void zak_authe_class_init (ZakAutheClass *class);
+static void zak_authe_init (ZakAuthe *form);
-static void zak_auth_set_property (GObject *object,
+static void zak_authe_set_property (GObject *object,
guint property_id,
const GValue *value,
GParamSpec *pspec);
-static void zak_auth_get_property (GObject *object,
+static void zak_authe_get_property (GObject *object,
guint property_id,
GValue *value,
GParamSpec *pspec);
-static void zak_auth_finalize (GObject *object);
+static void zak_authe_finalize (GObject *object);
-GModule *zak_auth_get_module_from_confi (ZakAuth *aute);
+GModule *zak_authe_get_module_from_confi (ZakAuthe *aute);
-#define ZAK_AUTH_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), ZAK_TYPE_AUTH, ZakAuthPrivate))
+#define ZAK_AUTHE_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), ZAK_TYPE_AUTHE, ZakAuthePrivate))
-typedef struct _ZakAuthPrivate ZakAuthPrivate;
-struct _ZakAuthPrivate
+typedef struct _ZakAuthePrivate ZakAuthePrivate;
+struct _ZakAuthePrivate
{
GModule *module;
#endif
};
-G_DEFINE_TYPE (ZakAuth, zak_auth, G_TYPE_OBJECT)
+G_DEFINE_TYPE (ZakAuthe, zak_authe, G_TYPE_OBJECT)
static void
-zak_auth_class_init (ZakAuthClass *class)
+zak_authe_class_init (ZakAutheClass *class)
{
GObjectClass *object_class = G_OBJECT_CLASS (class);
- object_class->set_property = zak_auth_set_property;
- object_class->get_property = zak_auth_get_property;
- object_class->finalize = zak_auth_finalize;
+ object_class->set_property = zak_authe_set_property;
+ object_class->get_property = zak_authe_get_property;
+ object_class->finalize = zak_authe_finalize;
- g_type_class_add_private (object_class, sizeof (ZakAuthPrivate));
+ g_type_class_add_private (object_class, sizeof (ZakAuthePrivate));
}
static void
-zak_auth_init (ZakAuth *form)
+zak_authe_init (ZakAuthe *form)
{
- ZakAuthPrivate *priv = ZAK_AUTH_GET_PRIVATE (form);
+ ZakAuthePrivate *priv = ZAK_AUTHE_GET_PRIVATE (form);
priv->module = NULL;
priv->parameters = NULL;
}
/**
- * zak_auth_new:
+ * zak_authe_new:
*
- * Returns: the newly created #ZakAuth object.
+ * Returns: the newly created #ZakAuthe object.
*/
-ZakAuth
-*zak_auth_new ()
+ZakAuthe
+*zak_authe_new ()
{
- return ZAK_AUTH (g_object_new (zak_auth_get_type (), NULL));
+ return ZAK_AUTHE (g_object_new (zak_authe_get_type (), NULL));
}
/*
- * zak_auth_set_config:
- * @aute: an #ZakAuth object.
+ * zak_authe_set_config:
+ * @aute: an #ZakAuthe object.
* @parameters: a #GSList of config parameters.
*
*/
gboolean
-zak_auth_set_config (ZakAuth *aute, GSList *parameters)
+zak_authe_set_config (ZakAuthe *aute, GSList *parameters)
{
gchar *module_name;
- ZakAuthPrivate *priv = ZAK_AUTH_GET_PRIVATE (aute);
+ ZakAuthePrivate *priv = ZAK_AUTHE_GET_PRIVATE (aute);
g_return_val_if_fail (parameters != NULL && parameters->data != NULL, FALSE);
if (IS_CONFI (priv->parameters->data))
{
priv->confi = CONFI (priv->parameters->data);
- module_name = zak_auth_get_module_from_confi (aute);
+ module_name = zak_authe_get_module_from_confi (aute);
}
#endif
}
/**
- * zak_auth_auth:
+ * zak_authe_authe:
* @aute:
*
* Returns: il nome utente se l'autenticazione va a buon fine;
* stringa vuota ("") se viene premuto "Annulla"; NULL in caso di errore.
*/
gchar
-*zak_auth_auth (ZakAuth *aute)
+*zak_authe_authe (ZakAuthe *aute)
{
gchar *(*autentica) (GSList *parameters);
gchar *ret;
- ZakAuthPrivate *priv = ZAK_AUTH_GET_PRIVATE (aute);
+ ZakAuthePrivate *priv = ZAK_AUTHE_GET_PRIVATE (aute);
g_return_val_if_fail (priv->module != NULL, NULL);
}
/**
- * zak_auth_get_password:
+ * zak_authe_get_password:
* @aute:
* @password:
*
* Nel parametro @password ritorna la password inserita.
*/
gchar
-*zak_auth_get_password (ZakAuth *aute, gchar **password)
+*zak_authe_get_password (ZakAuthe *aute, gchar **password)
{
- gchar *(*zak_auth_plg_get_password) (GSList *parameters, gchar **password);
+ gchar *(*zak_authe_plg_get_password) (GSList *parameters, gchar **password);
gchar *ret;
- ZakAuthPrivate *priv = ZAK_AUTH_GET_PRIVATE (aute);
+ ZakAuthePrivate *priv = ZAK_AUTHE_GET_PRIVATE (aute);
g_return_val_if_fail (priv->module != NULL, NULL);
ret = NULL;
/* loading the function */
- if (!g_module_symbol (priv->module, "zak_auth_plg_get_password", (gpointer *)&zak_auth_plg_get_password))
+ if (!g_module_symbol (priv->module, "zak_authe_plg_get_password", (gpointer *)&zak_authe_plg_get_password))
{
/* TO DO */
- g_warning ("Error g_module_symbol: zak_auth_plg_get_password.\n");
+ g_warning ("Error g_module_symbol: zak_authe_plg_get_password.\n");
- /* try zak_auth_auth */
- ret = zak_auth_auth (aute);
+ /* try zak_authe_authe */
+ ret = zak_authe_authe (aute);
}
else
{
/* calling plugin's function */
- ret = (*zak_auth_plg_get_password) (priv->parameters, password);
+ ret = (*zak_authe_plg_get_password) (priv->parameters, password);
}
return ret;
}
/**
- * zak_auth_get_management_gui:
+ * zak_authe_get_management_gui:
* @aute:
*
*/
GtkWidget
-*zak_auth_get_management_gui (ZakAuth *aute)
+*zak_authe_get_management_gui (ZakAuthe *aute)
{
GtkWidget *(*get_management_gui) (GSList *parameters);
GtkWidget *ret;
- ZakAuthPrivate *priv = ZAK_AUTH_GET_PRIVATE (aute);
+ ZakAuthePrivate *priv = ZAK_AUTHE_GET_PRIVATE (aute);
g_return_val_if_fail (priv->module != NULL, NULL);
/* PRIVATE */
static void
-zak_auth_set_property (GObject *object,
+zak_authe_set_property (GObject *object,
guint property_id,
const GValue *value,
GParamSpec *pspec)
{
- ZakAuth *aute = (ZakAuth *)object;
+ ZakAuthe *aute = (ZakAuthe *)object;
- ZakAuthPrivate *priv = ZAK_AUTH_GET_PRIVATE (aute);
+ ZakAuthePrivate *priv = ZAK_AUTHE_GET_PRIVATE (aute);
switch (property_id)
{
}
static void
-zak_auth_get_property (GObject *object,
+zak_authe_get_property (GObject *object,
guint property_id,
GValue *value,
GParamSpec *pspec)
{
- ZakAuth *aute = (ZakAuth *)object;
+ ZakAuthe *aute = (ZakAuthe *)object;
- ZakAuthPrivate *priv = ZAK_AUTH_GET_PRIVATE (aute);
+ ZakAuthePrivate *priv = ZAK_AUTHE_GET_PRIVATE (aute);
switch (property_id)
{
}
static void
-zak_auth_finalize (GObject *object)
+zak_authe_finalize (GObject *object)
{
- ZakAuth *aute = ZAK_AUTH (object);
+ ZakAuthe *aute = ZAK_AUTHE (object);
- ZakAuthPrivate *priv = ZAK_AUTH_GET_PRIVATE (aute);
+ ZakAuthePrivate *priv = ZAK_AUTHE_GET_PRIVATE (aute);
/* closing the library */
if (priv->module != NULL)
}
/* Chain up to the parent class */
- G_OBJECT_CLASS (zak_auth_parent_class)->finalize (object);
+ G_OBJECT_CLASS (zak_authe_parent_class)->finalize (object);
}
#ifdef HAVE_LIBCONFI
/**
- * zak_auth_get_plugin_module:
- * @aute: un oggetto #ZakAuth.
+ * zak_authe_get_plugin_module:
+ * @aute: un oggetto #ZakAuthe.
*
* Returns: il nome, con il percorso, del plugin.
* Returns: il nome, con il percorso, del plugin.
*/
gchar
-*zak_auth_get_module_from_confi (ZakAuth *aute)
+*zak_authe_get_module_from_confi (ZakAuthe *aute)
{
gchar *libname;
- ZakAuthPrivate *priv = ZAK_AUTH_GET_PRIVATE (aute);
+ ZakAuthePrivate *priv = ZAK_AUTHE_GET_PRIVATE (aute);
g_return_val_if_fail (IS_CONFI (priv->confi), NULL);
g_warning ("Valore nullo della configurazione per il plugin.");
return NULL;
}
- libname = g_strconcat (LIB_ZAK_AUTH_PLUGINS_DIR "/", libname, NULL);
+ libname = g_strconcat (LIB_ZAK_AUTHE_PLUGINS_DIR "/", libname, NULL);
return libname;
}
+++ /dev/null
-/*
- * Copyright 2005-2015 Andrea Zagli <azagli@libero.it>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __ZAKAUTH_H__
-#define __ZAKAUTH_H__
-
-#include <glib.h>
-#include <glib-object.h>
-#include <gmodule.h>
-#include <gtk/gtk.h>
-
-G_BEGIN_DECLS
-
-#define ZAK_TYPE_AUTH (zak_auth_get_type ())
-#define ZAK_AUTH(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ZAK_TYPE_AUTH, ZakAuth))
-#define ZAK_AUTH_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ZAK_TYPE_AUTH, ZakAuthClass))
-#define ZAK_IS_AUTH(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ZAK_TYPE_AUTH))
-#define ZAK_IS_AUTH_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ZAK_TYPE_AUTH))
-#define ZAKAUTH_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ZAK_TYPE_AUTH, ZakAuthClass))
-
-
-typedef struct _ZakAuth ZakAuth;
-typedef struct _ZakAuthClass ZakAuthClass;
-
-struct _ZakAuth
- {
- GObject parent;
- };
-
-struct _ZakAuthClass
- {
- GObjectClass parent_class;
- };
-
-GType zak_auth_get_type (void) G_GNUC_CONST;
-
-ZakAuth *zak_auth_new (void);
-
-gboolean zak_auth_set_config (ZakAuth *zakauth, GSList *parameters);
-
-gchar *zak_auth_auth (ZakAuth *zakauth);
-gchar *zak_auth_get_password (ZakAuth *zakauth, gchar **password);
-
-GtkWidget *zak_auth_get_management_gui (ZakAuth *zakauth);
-
-
-G_END_DECLS
-
-
-#endif /* __ZAKAUTH_H__ */
--- /dev/null
+/*
+ * Copyright 2005-2015 Andrea Zagli <azagli@libero.it>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __ZAKAUTH_H__
+#define __ZAKAUTHE_H__
+
+#include <glib.h>
+#include <glib-object.h>
+#include <gmodule.h>
+#include <gtk/gtk.h>
+
+G_BEGIN_DECLS
+
+#define ZAK_TYPE_AUTHE (zak_authe_get_type ())
+#define ZAK_AUTHE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ZAK_TYPE_AUTHE, ZakAuthe))
+#define ZAK_AUTHE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ZAK_TYPE_AUTHE, ZakAutheClass))
+#define ZAK_IS_AUTHE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ZAK_TYPE_AUTHE))
+#define ZAK_IS_AUTHE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ZAK_TYPE_AUTHE))
+#define ZAKAUTHE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ZAK_TYPE_AUTHE, ZakAutheClass))
+
+
+typedef struct _ZakAuthe ZakAuthe;
+typedef struct _ZakAutheClass ZakAutheClass;
+
+struct _ZakAuthe
+ {
+ GObject parent;
+ };
+
+struct _ZakAutheClass
+ {
+ GObjectClass parent_class;
+ };
+
+GType zak_authe_get_type (void) G_GNUC_CONST;
+
+ZakAuthe *zak_authe_new (void);
+
+gboolean zak_authe_set_config (ZakAuthe *zakauthe, GSList *parameters);
+
+gchar *zak_authe_authe (ZakAuthe *zakauthe);
+gchar *zak_authe_get_password (ZakAuthe *zakauthe, gchar **password);
+
+GtkWidget *zak_authe_get_management_gui (ZakAuthe *zakauthe);
+
+
+G_END_DECLS
+
+
+#endif /* __ZAKAUTHE_H__ */