]> saetta.ns0.it Git - zakauthe/libzakauthe/commitdiff
Added function ZakAuthe::authe_nogui.
authorAndrea Zagli <azagli@libero.it>
Sun, 24 Jan 2016 10:59:43 +0000 (11:59 +0100)
committerAndrea Zagli <azagli@libero.it>
Sun, 24 Jan 2016 10:59:43 +0000 (11:59 +0100)
src/aute.c
src/libzakauthe.h

index 453fdace8365458164ffabc89d768d7ec3dac425..9c290983caae467535aeebfdb23a3922d1cb907a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * 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
@@ -218,6 +218,43 @@ gchar
        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:
index 6de4f98719feec436affaf23a7f0eceef398cf39..db9c41e1e0a066c103f9ddd2cd7b58b53287655a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * 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
@@ -16,7 +16,7 @@
  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  */
 
-#ifndef __ZAKAUTH_H__
+#ifndef __ZAKAUTHE_H__
 #define __ZAKAUTHE_H__
 
 #include <glib.h>
@@ -55,6 +55,7 @@ gboolean zak_authe_set_config (ZakAuthe *zakauthe, GSList *parameters);
 
 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);