2002-08-06 16:56:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
//
|
|
|
|
// Authentication plug-ins is largely down to
|
2002-10-04 13:09:10 +00:00
|
|
|
// Sergey Kanareykin, our thanks to him.
|
2002-08-06 16:56:14 +00:00
|
|
|
//
|
|
|
|
function login_ldap(&$username, &$password)
|
|
|
|
{
|
|
|
|
global $board_config;
|
|
|
|
|
|
|
|
if ( !extension_loaded('ldap') )
|
|
|
|
{
|
|
|
|
return 'LDAP extension not available';
|
|
|
|
}
|
|
|
|
|
2002-10-04 13:09:10 +00:00
|
|
|
if ( !($ldap = @ldap_connect($board_config['ldap_server'])) )
|
2002-08-06 16:56:14 +00:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
2002-10-04 13:09:10 +00:00
|
|
|
if ( is_array($result) && count($result) > 1 )
|
2002-08-06 16:56:14 +00:00
|
|
|
{
|
2002-10-04 13:09:10 +00:00
|
|
|
if ( @ldap_bind($ldap, $result[0]['dn'], $password) )
|
2002-08-06 16:56:14 +00:00
|
|
|
{
|
|
|
|
@ldap_close($ldap);
|
|
|
|
|
2002-10-04 13:09:10 +00:00
|
|
|
$sql = "SELECT user_id, username, user_password, user_email, user_active
|
2002-08-06 16:56:14 +00:00
|
|
|
FROM " . USERS_TABLE . "
|
|
|
|
WHERE username = '" . str_replace("\'", "''", $username) . "'";
|
|
|
|
$result = $db->sql_query($sql);
|
|
|
|
|
2002-08-07 01:11:38 +00:00
|
|
|
return ( $row = $db->sql_fetchrow($result) ) ? $row : false;
|
2002-08-06 16:56:14 +00:00
|
|
|
}
|
2002-10-04 13:09:10 +00:00
|
|
|
}
|
|
|
|
|
2002-08-06 16:56:14 +00:00
|
|
|
@ldap_close($ldap);
|
2002-10-04 13:09:10 +00:00
|
|
|
|
2002-08-06 16:56:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2002-10-04 13:09:10 +00:00
|
|
|
//
|
|
|
|
// This function is used to output any required fields in the authentication
|
|
|
|
// admin panel. It also defines any required configuration table fields.
|
|
|
|
//
|
2002-08-07 01:11:38 +00:00
|
|
|
function admin_ldap(&$new)
|
|
|
|
{
|
|
|
|
global $lang;
|
|
|
|
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td class="row1"><?php echo $lang['LDAP_server']; ?>:<br /><span class="gensmall"><?php echo $lang['LDAP_server_explain']; ?></span></td>
|
|
|
|
<td class="row2"><input type="text" size="40" name="ldap_server" value="<?php echo $new['ldap_server']; ?>" /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="row1"><?php echo $lang['LDAP_dn']; ?>:<br /><span class="gensmall"><?php echo $lang['LDAP_dn_explain']; ?></span></td>
|
|
|
|
<td class="row2"><input type="text" size="40" name="ldap_base_dn" value="<?php echo $new['ldap_base_dn']; ?>" /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="row1"><?php echo $lang['LDAP_uid']; ?>:<br /><span class="gensmall"><?php echo $lang['LDAP_uid_explain']; ?></span></td>
|
|
|
|
<td class="row2"><input type="text" size="40" name="ldap_uid" value="<?php echo $new['ldap_uid']; ?>" /></td>
|
|
|
|
</tr>
|
|
|
|
<?php
|
2002-10-04 13:09:10 +00:00
|
|
|
|
2002-08-07 13:02:48 +00:00
|
|
|
//
|
|
|
|
// These are fields required in the config table
|
|
|
|
//
|
|
|
|
return array('ldap_server', 'ldap_base_dn', 'ldap_uid');
|
2002-08-07 01:11:38 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-10-04 13:09:10 +00:00
|
|
|
//
|
|
|
|
// Would be nice to allow syncing of 'appropriate' data when user updates
|
|
|
|
// their username, password, etc. ... should be up to the plugin what data
|
|
|
|
// is updated.
|
|
|
|
//
|
|
|
|
// $mode perhaps being one of NEW, UPDATE, DELETE
|
|
|
|
//
|
|
|
|
function usercp_ldap($mode)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-08-06 16:56:14 +00:00
|
|
|
?>
|