From c15b19aaa839e587eb1c27e0936a8aea3dd58452 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sun, 24 Jan 2016 11:59:43 +0100 Subject: [PATCH] Added function ZakAuthe::authe_nogui. --- src/aute.c | 39 ++++++++++++++++++++++++++++++++++++++- src/libzakauthe.h | 5 +++-- 2 files changed, 41 insertions(+), 3 deletions(-) diff --git a/src/aute.c b/src/aute.c index 453fdac..9c29098 100644 --- a/src/aute.c +++ b/src/aute.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2015 Andrea Zagli + * Copyright (C) 2005-2016 Andrea Zagli * * 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: diff --git a/src/libzakauthe.h b/src/libzakauthe.h index 6de4f98..db9c41e 100644 --- a/src/libzakauthe.h +++ b/src/libzakauthe.h @@ -1,5 +1,5 @@ /* - * Copyright 2005-2015 Andrea Zagli + * Copyright 2005-2016 Andrea Zagli * * 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 @@ -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); -- 2.49.0