mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-11 03:04:09 +02:00
Auth plug-in, say thanks to Sergey Kanareykin
git-svn-id: file:///svn/phpbb/trunk@2828 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
44
phpBB/includes/auth/auth_ldap.php
Normal file
44
phpBB/includes/auth/auth_ldap.php
Normal file
@@ -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;
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user