aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/auth/auth_ldap.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2002-08-06 16:56:14 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2002-08-06 16:56:14 +0000
commitf8ea2a46a8910848ca00dbd3c9de5bbe7a5b925f (patch)
tree0761369b34ba69cfde6aea5e6a2cdda98e293cdd /phpBB/includes/auth/auth_ldap.php
parent685c8b066919a02264e5b8991349c4feea097000 (diff)
downloadforums-f8ea2a46a8910848ca00dbd3c9de5bbe7a5b925f.tar
forums-f8ea2a46a8910848ca00dbd3c9de5bbe7a5b925f.tar.gz
forums-f8ea2a46a8910848ca00dbd3c9de5bbe7a5b925f.tar.bz2
forums-f8ea2a46a8910848ca00dbd3c9de5bbe7a5b925f.tar.xz
forums-f8ea2a46a8910848ca00dbd3c9de5bbe7a5b925f.zip
Auth plug-in, say thanks to Sergey Kanareykin
git-svn-id: file:///svn/phpbb/trunk@2828 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/auth/auth_ldap.php')
-rw-r--r--phpBB/includes/auth/auth_ldap.php44
1 files changed, 44 insertions, 0 deletions
diff --git a/phpBB/includes/auth/auth_ldap.php b/phpBB/includes/auth/auth_ldap.php
new file mode 100644
index 0000000000..0957b56949
--- /dev/null
+++ b/phpBB/includes/auth/auth_ldap.php
@@ -0,0 +1,44 @@
+<?php
+
+//
+// Authentication plug-ins is largely down to
+// Sergey Kanareykin, our thanks to him.
+//
+function login_ldap(&$username, &$password)
+{
+ global $board_config;
+
+ if ( !extension_loaded('ldap') )
+ {
+ return 'LDAP extension not available';
+ }
+
+ if ( !($ldap = @ldap_connect($board_config['ldap_server'])) )
+ {
+ return 'Could not connect to LDAP server';
+ }
+
+ $search = @ldap_search($ldap, $board_config['ldap_base_dn'], $board_config['ldap_uid'] . '=' . $username, array($board_config['ldap_uid']));
+ $result = @ldap_get_entries($ldap, $search);
+
+ if ( is_array($result) && count($result) > 1 )
+ {
+ if ( @ldap_bind($ldap, $result[0]['dn'], $password) )
+ {
+ @ldap_close($ldap);
+
+ $sql = "SELECT user_id, username, user_password, user_email, user_active
+ FROM " . USERS_TABLE . "
+ WHERE username = '" . str_replace("\'", "''", $username) . "'";
+ $result = $db->sql_query($sql);
+
+ return ( $row = $db->sql_fetchrow($result) ? $row : false;
+ }
+ }
+
+ @ldap_close($ldap);
+
+ return false;
+}
+
+?> \ No newline at end of file