/*
- * Copyright (C) 2005-2015 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2005-2016 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
return ret;
}
+/**
+ * zak_authe_authe_nogui:
+ * @zakaute:
+ * @username:
+ * @password:
+ * @new_password:
+ *
+ * Returns: #TRUE if the user is authenticated; #FALSE otherwise.
+ */
+gboolean
+zak_authe_authe_nogui (ZakAuthe *zakauthe, const gchar *username, const gchar *password, const gchar *new_password)
+{
+ gboolean ret;
+
+ gboolean (*zak_authe_plg_authe_nogui) (GSList *parameters, const gchar *username, const gchar *password, const gchar *new_password);
+
+ ZakAuthePrivate *priv = ZAK_AUTHE_GET_PRIVATE (zakauthe);
+
+ g_return_val_if_fail (priv->module != NULL, FALSE);
+
+ /* loading the function */
+ if (!g_module_symbol (priv->module, "zak_authe_plg_authe_nogui", (gpointer *)&zak_authe_plg_authe_nogui))
+ {
+ /* TO DO */
+ g_warning ("Error g_module_symbol: zak_authe_plg_authe_nogui.\n");
+
+ ret = FALSE;
+ }
+ else
+ {
+ /* calling plugin's function */
+ ret = (*zak_authe_plg_authe_nogui) (priv->parameters, username, password, new_password);
+ }
+
+ return ret;
+}
+
/**
* zak_authe_get_management_gui:
* @aute:
/*
- * Copyright 2005-2015 Andrea Zagli <azagli@libero.it>
+ * Copyright 2005-2016 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
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#ifndef __ZAKAUTH_H__
+#ifndef __ZAKAUTHE_H__
#define __ZAKAUTHE_H__
#include <glib.h>
gchar *zak_authe_authe (ZakAuthe *zakauthe);
gchar *zak_authe_get_password (ZakAuthe *zakauthe, gchar **password);
+gboolean zak_authe_authe_nogui (ZakAuthe *zakauthe, const gchar *username, const gchar *password, const gchar *new_password);
GtkWidget *zak_authe_get_management_gui (ZakAuthe *zakauthe);