$role_group)
{
$role_group = explode('=', $role_group);
if ( count($role_group) != 2 )
{
next;
}
$ad_group = $role_group[0];
$corresponding_role = $role_group[1];
if ( $ad_ldap->user_ingroup(
$ad_username, $ad_group, true ) )
{
$user_role = $corresponding_role;
break;
}
}
return $user_role;
}
/*
* If the REMOTE_USER evironment is set, use it as the username.
* This assumes that you have externally authenticated the user.
*/
function authenticate($username, $password) {
$adldap;
$this->authenticated = false;
$account_suffix = get_option('ActiveDirectory_authentication_account_suffix');
$domain_controllers = explode(';',
get_option('ActiveDirectory_authentication_domain_controllers')
);
$base_dn = get_option('ActiveDirectory_authentication_base_dn');
$adldap = new adLDAP(array(
"account_suffix" => $account_suffix,
"base_dn" => $base_dn,
"domain_controllers" => $domain_controllers
));
if ( $adldap->authenticate($username, $password) )
{
$this->authenticated = true;
}
if ( $this->authenticated == false )
{
$this->authenticated = false;
return false;
}
$ad_username = $username;
$username .= $account_suffix;
// Create new users automatically, if configured
$user = get_userdatabylogin($username);
if (! $user or $user->user_login != $username) {
$user_role = $this->_get_user_role_equiv($adldap, $ad_username);
if ((bool) get_option('ActiveDirectory_authentication_auto_create_user')
|| $user_role != '' ) {
$userinfo = $adldap->user_info($ad_username,
array("sn", "givenname", "mail")
);
$userinfo = $userinfo[0];
$email = $userinfo['mail'][0];
$first_name = $userinfo['givenname'][0];
$last_name = $userinfo['sn'][0];
$this->_create_user($ad_username, $email, $first_name, $last_name, $user_role);
}
else {
// Bail out to avoid showing the login form
return new WP_Error('invalid_username', __('ERROR: This user exists in Active Directory, but has not been granted access to this installation of WordPress.'));
}
}
}
/*
* Skip the password check, since we've externally authenticated.
*/
function override_password_check($check, $password, $hash, $user_id) {
if ( $this->authenticated == true )
{
return true;
}
else
{
return $check;
}
}
/*
* Generate a password for the user. This plugin does not
* require the user to enter this value, but we want to set it
* to something nonobvious.
*/
function generate_password($username, $password1, $password2) {
$password1 = $password2 = $this->_get_password();
}
/*
* Used to disable certain display elements, e.g. password
* fields on profile screen.
*/
function disable_password_fields($show_password_fields) {
return false;
}
/*
* Used to disable certain login functions, e.g. retrieving a
* user's password.
*/
function disable_function() {
die('Disabled');
}
/*************************************************************
* Functions
*************************************************************/
/*
* Generate a random password.
*/
function _get_password($length = 10) {
return substr(md5(uniqid(microtime())), 0, $length);
}
/*
* Create a new WordPress account for the specified username.
*/
function _create_user($username, $email, $first_name, $last_name, $role = '') {
$password = $this->_get_password();
$email_domain = get_option('ActiveDirectory_authentication_default_email_domain');
if ( $email == '' )
{
$email = $username . '@' . $email_domain;
}
$username .= get_option('ActiveDirectory_authentication_account_suffix');
require_once(ABSPATH . WPINC . DIRECTORY_SEPARATOR . 'registration.php');
$error = wp_create_user($username, $password, $email);
if ( is_wp_error($errors) )
die($errors->get_error_message());
$user_id = username_exists($username);
if ( !$user_id ) {
die("Error creating user!");
} else {
update_usermeta($user_id, 'first_name', $first_name);
update_usermeta($user_id, 'last_name', $last_name);
if ( $role != '' )
{
wp_update_user(array("ID" => $user_id, "role" => $role));
}
}
}
/*
function _add_users_for_role_equivalent_groups($ad_username, $ad_password)
{
$authenticated = false;
$account_suffix = get_option('ActiveDirectory_authentication_account_suffix');
$domain_controllers = explode(';',
get_option('ActiveDirectory_authentication_domain_controllers')
);
$base_dn = get_option('ActiveDirectory_authentication_base_dn');
$adldap = new adLDAP(array(
"account_suffix" => $account_suffix,
"base_dn" => "DC=qc,DC=ads",
"domain_controllers" => $domain_controllers
));
if ( $adldap->authenticate($ad_username, $ad_password) )
{
$authenticated = true;
}
if ( $authenticated == false )
{
return "Cannot log on to Active Directory system with the provided credentials.";
echo $ad_username . $ad_password;
}
$users_added = "";
$letters = array('a', 'b', 'c', 'd', 'e', 'f',
'g', 'h', 'i', 'j',
'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's',
't', 'u', 'v', 'w', 'x', 'y', 'z');
$prefixes = array();
foreach ( $letters as $l1 )
foreach ( $letters as $l2 )
$prefixes[] = $l1 . $l2;
$users = array();
foreach ( $prefixes as $prefix )
{
$users_new = array_merge($users,
$adldap->listUsersWithNames($prefix . "*"));
$users = $users_new;
}
$role_equiv_groups = get_option('ActiveDirectory_authentication_role_equivalent_groups');
$role_equiv_groups = explode(';', $role_equiv_groups);
foreach ( $users as $check_username => $user )
{
$wp_user = get_userdatabylogin(
$check_username . $account_suffix);
if ( ! $wp_user or $wp_user->user_login != $check_username)
{
$user_role = $this->_get_user_role_equiv($adldap, $check_username);
if ( $user_role != '' )
{
$userinfo = $adldap->user_info($check_username,
array("sn", "givenname", "mail")
);
$userinfo = $userinfo[0];
$email = $userinfo['mail'][0];
$first_name = $userinfo['givenname'][0];
$last_name = $userinfo['sn'][0];
$this->_create_user($check_username . $account_suffix,
$email, $first_name,
$last_name, $user_role);
$users_added .= "
$check_username$account_suffix";
}
}
}
if ( $users_added != "" )
{
return "The following users were created: $users_added";
}
else
{
return "No users were added. (This can occur if you do not have sufficient AD permissions, or you provided incorrect login information.)";
}
}
*/
/*
* Display the options for this plugin.
*/
function _display_options_page() {
$account_suffix = get_option('ActiveDirectory_authentication_account_suffix');
$domain_controllers = get_option('ActiveDirectory_authentication_domain_controllers');
$base_dn = get_option('ActiveDirectory_authentication_base_dn');
$role_equiv_groups = get_option('ActiveDirectory_authentication_role_equivalent_groups');
$auto_create_user = (bool) get_option('ActiveDirectory_authentication_auto_create_user');
$email_domain = get_option('ActiveDirectory_authentication_default_email_domain');
/*
if ( $_REQUEST['create_users_for_role_equivalent_groups'] == 'yes' )
{
$users_created_msg =
$this->_add_users_for_role_equivalent_groups($_REQUEST['ad_username'],
$_REQUEST['ad_password']
);
echo "