]> saetta.ns0.it Git - zakauthe/plugins/smbldap/commitdiff
Re-enabled libzakconfi. confi
authorAndrea Zagli <azagli@libero.it>
Sat, 30 Apr 2016 08:13:52 +0000 (10:13 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 30 Apr 2016 08:13:52 +0000 (10:13 +0200)
.gitignore
src/aute_smbldap.c
tests/Makefile.am
tests/test_confi.c [new file with mode: 0644]
tests/test_confi.conf [new file with mode: 0644]

index 0907eeda90125ea76c0794b55df81c16e036b35b..fb3a8ff8df2a881dad9ef2b40347be624502c480 100644 (file)
@@ -27,6 +27,7 @@ missing
 config.h
 stamp-h1
 tests/test
+tests/test_confi
 tests/test_get_password
 *.tar.gz
 *.exe
index c052c65d8054ad4ec88b1c57288e54f9e915bfb1..64dbff3ab08d635fb6d37bbb5d47228c09059442 100644 (file)
@@ -114,17 +114,17 @@ DllMain (HINSTANCE hinstDLL,
 #endif
 
 
-#ifdef HAVE_LIBCONFI
+#ifdef HAVE_LIBZAKCONFI
 static gboolean
-get_connection_parameters_from_confi (Confi *confi, gchar **user_field)
+get_connection_parameters_from_confi (ZakConfi *confi, gchar **user_field)
 {
        gboolean ret = TRUE;
 
-       host = confi_path_get_value (confi, "aute/aute-smbldap/ldap/host");
-       base_dn = confi_path_get_value (confi, "aute/aute-smbldap/ldap/base_dn");
-       users_ou = confi_path_get_value (confi, "aute/aute-smbldap/ldap/users_ou");
-       groups_ou = confi_path_get_value (confi, "aute/aute-smbldap/ldap/groups_ou");
-       *user_field = confi_path_get_value (confi, "aute/aute-smbldap/ldap/user_field");
+       host = zak_confi_path_get_value (confi, "libzakauthe/libzakauthesmbldap/ldap/host");
+       base_dn = zak_confi_path_get_value (confi, "libzakauthe/libzakauthesmbldap/ldap/base_dn");
+       users_ou = zak_confi_path_get_value (confi, "libzakauthe/libzakauthesmbldap/ldap/users_ou");
+       groups_ou = zak_confi_path_get_value (confi, "libzakauthe/libzakauthesmbldap/ldap/groups_ou");
+       *user_field = zak_confi_path_get_value (confi, "libzakauthe/libzakauthesmbldap/ldap/user_field");
 
        if (host == NULL
            || strcmp (g_strstrip (host), "") == 0
@@ -323,18 +323,20 @@ static gchar
        groups_ou = NULL;
        user_field = NULL;
 
-#ifdef HAVE_LIBCONFI
-       /* the first and only parameters must be a Confi object */
-       /* leggo i parametri di connessione dalla configurazione */
-       if (IS_CONFI (parameters->data))
+#ifdef HAVE_LIBZAKCONFI
+       /* the first and only parameters must be a ZakConfi object */
+       if (g_strcmp0 ((gchar *)parameters->data, "{libzakconfi}") == 0)
                {
-                       if (!get_connection_parameters_from_confi (CONFI (parameters->data), &user_field))
+                       if (ZAK_IS_CONFI ((ZakConfi *)g_slist_nth_data (parameters, 1)))
                                {
-                                       host = NULL;
-                                       base_dn = NULL;
-                                       users_ou = NULL;
-                                       groups_ou = NULL;
-                                       user_field = NULL;
+                                       if (!get_connection_parameters_from_confi (ZAK_CONFI ((ZakConfi *)g_slist_nth_data (parameters, 1)), &user_field))
+                                               {
+                                                       host = NULL;
+                                                       base_dn = NULL;
+                                                       users_ou = NULL;
+                                                       groups_ou = NULL;
+                                                       user_field = NULL;
+                                               }
                                }
                }
 #endif
index c942d71ed5defd05a82d1b54bafb9f3ad582bf5a..02e5ab2b6132e9ffc3d762c7632c1fdbc7f3b8d3 100644 (file)
@@ -1,12 +1,17 @@
 AM_CPPFLAGS = $(WARN_CFLAGS) \
               $(DISABLE_DEPRECATED_CFLAGS) \
               $(LIBZAKAUTHESMBLDAP_CFLAGS) \
+              $(LIBZAKCONFI_CFLAGS) \
               -I../src
 
 LIBS = $(GTK_LIBS) \
-       $(LIBZAKAUTHESMBLDAP_LIBS)
+       $(LIBZAKAUTHESMBLDAP_LIBS) \
+       $(LIBZAKCONFI_LIBS)
 
 LDADD = ../src/libzakauthesmbldap.la
 
 noinst_PROGRAMS = test \
+                  test_confi \
                   test_get_password
+
+EXTRA_DIST = test_confi.conf
diff --git a/tests/test_confi.c b/tests/test_confi.c
new file mode 100644 (file)
index 0000000..a90a356
--- /dev/null
@@ -0,0 +1,48 @@
+/*
+ * Copyright (C) 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
+ *  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.
+ */
+
+#include <gtk/gtk.h>
+
+#include <libzakconfi/libzakconfi.h>
+
+#include <libzakauthe.h>
+
+int
+main (int argc, char **argv)
+{
+       ZakAuthe *aute;
+       ZakConfi *confi;
+       GSList *params;
+
+       gtk_init (&argc, &argv);
+
+       aute = zak_authe_new ();
+
+       params = NULL;
+
+       confi = zak_confi_new (argv[1]);
+
+       params = g_slist_append (params, "{libzakconfi}");
+       params = g_slist_append (params, confi);
+
+       zak_authe_set_config (aute, params);
+
+       g_message ("User %s\n", zak_authe_authe (aute));
+
+       return 0;
+}
diff --git a/tests/test_confi.conf b/tests/test_confi.conf
new file mode 100644 (file)
index 0000000..8054de1
--- /dev/null
@@ -0,0 +1,9 @@
+[libzakauthe]
+plugin=/usr/local/lib/libzakauthe/plugins/libzakauthesmbldap.so
+
+[libzakauthe/libzakauthesmbldap/ldap]
+host=ldap://ldap.comune.scandicci.fi.it/
+base_dn=dc=comune,dc=scandicci,dc=fi,dc=it
+users_ou=ou=Users
+groups_ou=ou=Groups
+user_field=uid