2005-07-23 18:16:03 +02:00
|
|
|
<?php
|
|
|
|
|
2007-06-02 01:13:41 +02:00
|
|
|
/**
|
|
|
|
* Checks whether the given username exists.
|
|
|
|
* @param string $username Username.
|
|
|
|
* @return mixed The user's ID on success, and null on failure.
|
|
|
|
*/
|
2005-07-23 18:16:03 +02:00
|
|
|
function username_exists( $username ) {
|
2007-11-27 23:14:53 +01:00
|
|
|
if ( $user = get_userdatabylogin( $username ) ) {
|
2005-12-24 00:16:01 +01:00
|
|
|
return $user->ID;
|
2007-06-02 01:13:41 +02:00
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2005-07-23 18:16:03 +02:00
|
|
|
}
|
|
|
|
|
2007-06-02 01:13:41 +02:00
|
|
|
/**
|
|
|
|
* Checks whether the given email exists.
|
|
|
|
* @global object $wpdb WordPress database layer.
|
|
|
|
* @param string $email Email.
|
|
|
|
* @return mixed The user's ID on success, and false on failure.
|
|
|
|
*/
|
2006-02-09 09:11:26 +01:00
|
|
|
function email_exists( $email ) {
|
2007-11-27 23:14:53 +01:00
|
|
|
if ( $user = get_user_by_email($email) )
|
|
|
|
return $user->ID;
|
|
|
|
|
|
|
|
return false;
|
2006-02-09 09:11:26 +01:00
|
|
|
}
|
|
|
|
|
2007-06-02 01:13:41 +02:00
|
|
|
/**
|
|
|
|
* Checks whether an username is valid.
|
|
|
|
* @param string $username Username.
|
|
|
|
* @return bool A filtered boolean.
|
|
|
|
*/
|
2006-01-25 04:09:16 +01:00
|
|
|
function validate_username( $username ) {
|
2007-06-02 01:13:41 +02:00
|
|
|
$sanitized = sanitize_user( $username, true );
|
|
|
|
$valid = ( $sanitized == $username );
|
|
|
|
return apply_filters( 'validate_username', $valid, $username );
|
2006-01-25 04:09:16 +01:00
|
|
|
}
|
|
|
|
|
2007-06-02 01:13:41 +02:00
|
|
|
/**
|
|
|
|
* Insert an user into the database.
|
|
|
|
* @global object $wpdb WordPress database layer.
|
|
|
|
* @param array $userdata An array of user data.
|
|
|
|
* @return int The newly created user's ID.
|
|
|
|
*/
|
2005-09-14 02:03:02 +02:00
|
|
|
function wp_insert_user($userdata) {
|
2005-07-23 18:16:03 +02:00
|
|
|
global $wpdb;
|
2005-09-14 02:03:02 +02:00
|
|
|
|
2007-06-15 00:45:40 +02:00
|
|
|
extract($userdata, EXTR_SKIP);
|
2005-09-14 02:03:02 +02:00
|
|
|
|
|
|
|
// Are we updating or creating?
|
|
|
|
if ( !empty($ID) ) {
|
2006-05-27 00:47:13 +02:00
|
|
|
$ID = (int) $ID;
|
2005-09-14 02:03:02 +02:00
|
|
|
$update = true;
|
|
|
|
} else {
|
|
|
|
$update = false;
|
2007-12-02 06:14:11 +01:00
|
|
|
// Hash the password
|
|
|
|
$user_pass = wp_hash_password($user_pass);
|
2005-09-14 02:03:02 +02:00
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2006-01-25 04:09:16 +01:00
|
|
|
$user_login = sanitize_user($user_login, true);
|
2006-05-27 00:47:13 +02:00
|
|
|
$user_login = apply_filters('pre_user_login', $user_login);
|
2006-01-25 04:09:16 +01:00
|
|
|
|
2005-09-14 02:03:02 +02:00
|
|
|
if ( empty($user_nicename) )
|
|
|
|
$user_nicename = sanitize_title( $user_login );
|
2006-05-27 00:47:13 +02:00
|
|
|
$user_nicename = apply_filters('pre_user_nicename', $user_nicename);
|
|
|
|
|
|
|
|
if ( empty($user_url) )
|
|
|
|
$user_url = '';
|
|
|
|
$user_url = apply_filters('pre_user_url', $user_url);
|
|
|
|
|
|
|
|
if ( empty($user_email) )
|
|
|
|
$user_email = '';
|
|
|
|
$user_email = apply_filters('pre_user_email', $user_email);
|
2005-09-14 02:03:02 +02:00
|
|
|
|
|
|
|
if ( empty($display_name) )
|
|
|
|
$display_name = $user_login;
|
2006-05-27 00:47:13 +02:00
|
|
|
$display_name = apply_filters('pre_user_display_name', $display_name);
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-09-14 02:03:02 +02:00
|
|
|
if ( empty($nickname) )
|
|
|
|
$nickname = $user_login;
|
2006-05-27 00:47:13 +02:00
|
|
|
$nickname = apply_filters('pre_user_nickname', $nickname);
|
|
|
|
|
|
|
|
if ( empty($first_name) )
|
|
|
|
$first_name = '';
|
|
|
|
$first_name = apply_filters('pre_user_first_name', $first_name);
|
|
|
|
|
|
|
|
if ( empty($last_name) )
|
|
|
|
$last_name = '';
|
|
|
|
$last_name = apply_filters('pre_user_last_name', $last_name);
|
|
|
|
|
|
|
|
if ( empty($description) )
|
|
|
|
$description = '';
|
|
|
|
$description = apply_filters('pre_user_description', $description);
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2006-12-20 00:19:12 +01:00
|
|
|
if ( empty($rich_editing) )
|
|
|
|
$rich_editing = 'true';
|
|
|
|
|
2005-09-14 02:03:02 +02:00
|
|
|
if ( empty($user_registered) )
|
|
|
|
$user_registered = gmdate('Y-m-d H:i:s');
|
|
|
|
|
2007-11-01 06:49:23 +01:00
|
|
|
$data = compact( 'user_pass', 'user_email', 'user_url', 'user_nicename', 'display_name', 'user_registered' );
|
2007-10-13 05:51:11 +02:00
|
|
|
|
2005-09-14 02:03:02 +02:00
|
|
|
if ( $update ) {
|
2007-10-13 05:51:11 +02:00
|
|
|
$wpdb->update( $wpdb->users, $data, compact( 'ID' ) );
|
2007-03-23 01:59:21 +01:00
|
|
|
$user_id = (int) $ID;
|
2005-09-14 02:03:02 +02:00
|
|
|
} else {
|
2007-10-13 05:51:11 +02:00
|
|
|
$wpdb->insert( $wpdb->users, $data + compact( 'user_login' ) );
|
2007-03-23 01:59:21 +01:00
|
|
|
$user_id = (int) $wpdb->insert_id;
|
2005-09-14 02:03:02 +02:00
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-09-14 02:03:02 +02:00
|
|
|
update_usermeta( $user_id, 'first_name', $first_name);
|
|
|
|
update_usermeta( $user_id, 'last_name', $last_name);
|
|
|
|
update_usermeta( $user_id, 'nickname', $nickname );
|
|
|
|
update_usermeta( $user_id, 'description', $description );
|
|
|
|
update_usermeta( $user_id, 'jabber', $jabber );
|
|
|
|
update_usermeta( $user_id, 'aim', $aim );
|
|
|
|
update_usermeta( $user_id, 'yim', $yim );
|
2006-12-20 00:19:12 +01:00
|
|
|
update_usermeta( $user_id, 'rich_editing', $rich_editing);
|
2005-11-06 04:58:52 +01:00
|
|
|
|
2006-06-11 22:54:07 +02:00
|
|
|
if ( $update && isset($role) ) {
|
2005-11-06 04:58:52 +01:00
|
|
|
$user = new WP_User($user_id);
|
|
|
|
$user->set_role($role);
|
|
|
|
}
|
|
|
|
|
2005-09-14 02:03:02 +02:00
|
|
|
if ( !$update ) {
|
|
|
|
$user = new WP_User($user_id);
|
2006-08-30 23:46:31 +02:00
|
|
|
$user->set_role(get_option('default_role'));
|
2005-09-14 02:03:02 +02:00
|
|
|
}
|
2005-11-07 22:56:03 +01:00
|
|
|
|
|
|
|
wp_cache_delete($user_id, 'users');
|
2005-12-19 20:14:22 +01:00
|
|
|
wp_cache_delete($user_login, 'userlogins');
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-09-14 02:03:02 +02:00
|
|
|
if ( $update )
|
|
|
|
do_action('profile_update', $user_id);
|
|
|
|
else
|
|
|
|
do_action('user_register', $user_id);
|
2006-02-12 08:53:23 +01:00
|
|
|
|
|
|
|
return $user_id;
|
2005-09-14 02:03:02 +02:00
|
|
|
}
|
|
|
|
|
2007-06-02 01:13:41 +02:00
|
|
|
/**
|
|
|
|
* Update an user in the database.
|
|
|
|
* @param array $userdata An array of user data.
|
|
|
|
* @return int The updated user's ID.
|
|
|
|
*/
|
2005-09-14 02:03:02 +02:00
|
|
|
function wp_update_user($userdata) {
|
|
|
|
$ID = (int) $userdata['ID'];
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-09-14 02:03:02 +02:00
|
|
|
// First, get all of the original fields
|
2006-02-12 08:53:23 +01:00
|
|
|
$user = get_userdata($ID);
|
2005-09-14 02:03:02 +02:00
|
|
|
|
|
|
|
// Escape data pulled from DB.
|
|
|
|
$user = add_magic_quotes(get_object_vars($user));
|
|
|
|
|
|
|
|
// If password is changing, hash it now.
|
|
|
|
if ( ! empty($userdata['user_pass']) ) {
|
|
|
|
$plaintext_pass = $userdata['user_pass'];
|
2007-12-02 06:14:11 +01:00
|
|
|
$userdata['user_pass'] = wp_hash_password($userdata['user_pass']);
|
2005-09-14 02:03:02 +02:00
|
|
|
}
|
2005-11-06 04:40:43 +01:00
|
|
|
|
2005-09-14 02:03:02 +02:00
|
|
|
// Merge old and new fields with new fields overwriting old ones.
|
|
|
|
$userdata = array_merge($user, $userdata);
|
|
|
|
$user_id = wp_insert_user($userdata);
|
2005-07-23 18:16:03 +02:00
|
|
|
|
2006-02-12 08:53:23 +01:00
|
|
|
// Update the cookies if the password changed.
|
2006-02-22 20:08:55 +01:00
|
|
|
$current_user = wp_get_current_user();
|
2006-12-07 04:57:23 +01:00
|
|
|
if ( $current_user->id == $ID ) {
|
2005-09-20 19:55:16 +02:00
|
|
|
if ( isset($plaintext_pass) ) {
|
2007-12-16 18:41:59 +01:00
|
|
|
wp_clear_auth_cookie();
|
|
|
|
wp_set_auth_cookie($ID);
|
2005-09-20 19:55:16 +02:00
|
|
|
}
|
2005-09-14 02:03:02 +02:00
|
|
|
}
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-07-23 18:16:03 +02:00
|
|
|
return $user_id;
|
|
|
|
}
|
|
|
|
|
2007-06-02 01:13:41 +02:00
|
|
|
/**
|
|
|
|
* A simpler way of inserting an user into the database.
|
2007-12-28 22:47:54 +01:00
|
|
|
* @see wp_insert_user().
|
2007-06-02 01:13:41 +02:00
|
|
|
* @global object $wpdb WordPress database layer.
|
|
|
|
* @param string $username The user's username.
|
|
|
|
* @param string $password The user's password.
|
|
|
|
* @param string $email The user's email (optional).
|
|
|
|
* @return int The new user's ID.
|
|
|
|
*/
|
2006-12-07 04:57:23 +01:00
|
|
|
function wp_create_user($username, $password, $email = '') {
|
2005-09-14 02:03:02 +02:00
|
|
|
global $wpdb;
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2006-12-07 04:57:23 +01:00
|
|
|
$user_login = $wpdb->escape($username);
|
|
|
|
$user_email = $wpdb->escape($email);
|
2005-09-14 02:03:02 +02:00
|
|
|
$user_pass = $password;
|
|
|
|
|
|
|
|
$userdata = compact('user_login', 'user_email', 'user_pass');
|
|
|
|
return wp_insert_user($userdata);
|
|
|
|
}
|
|
|
|
|
2007-12-02 06:14:11 +01:00
|
|
|
?>
|