Skip to content

Commit

Permalink
Introduce WP_User::exists(). see #20372
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.automattic.com/wordpress/trunk@20378 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
ryan committed Apr 6, 2012
1 parent f06fb15 commit de41bc2
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 13 deletions.
2 changes: 1 addition & 1 deletion wp-admin/includes/ajax-actions.php
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ function wp_ajax_replyto_comment( $action ) {
wp_die( __('ERROR: you are replying to a comment on a draft post.') );

$user = wp_get_current_user();
if ( $user->ID ) {
if ( $user->exists() ) {
$user_ID = $user->ID;
$comment_author = $wpdb->escape($user->display_name);
$comment_author_email = $wpdb->escape($user->user_email);
Expand Down
4 changes: 2 additions & 2 deletions wp-comments-post.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

// If the user is logged in
$user = wp_get_current_user();
if ( $user->ID ) {
if ( $user->exists() ) {
if ( empty( $user->display_name ) )
$user->display_name=$user->user_login;
$comment_author = $wpdb->escape($user->display_name);
Expand All @@ -73,7 +73,7 @@

$comment_type = '';

if ( get_option('require_name_email') && !$user->ID ) {
if ( get_option('require_name_email') && !$user->exists() ) {
if ( 6 > strlen($comment_author_email) || '' == $comment_author )
wp_die( __('<strong>ERROR</strong>: please fill the required fields (name, email).') );
elseif ( !is_email($comment_author_email))
Expand Down
16 changes: 14 additions & 2 deletions wp-includes/capabilities.php
Original file line number Diff line number Diff line change
Expand Up @@ -598,6 +598,18 @@ function __set( $key, $value ) {
$this->data->$key = $value;
}

/**
* Determine whether the user exists in the database.
*
* @since 3.4.0
* @access public
*
* @return bool True if user exists in the database, false if not.
*/
function exists() {
return ! empty( $this->ID );
}

/**
* Retrieve the value of a property or meta key.
*
Expand Down Expand Up @@ -1259,7 +1271,7 @@ function user_can( $user, $capability ) {
if ( ! is_object( $user ) )
$user = new WP_User( $user );

if ( ! $user || ! $user->ID )
if ( ! $user || ! $user->exists() )
return false;

$args = array_slice( func_get_args(), 2 );
Expand Down Expand Up @@ -1356,7 +1368,7 @@ function is_super_admin( $user_id = false ) {
else
$user = wp_get_current_user();

if ( empty( $user->ID ) )
if ( ! $user->exists() )
return false;

if ( is_multisite() ) {
Expand Down
2 changes: 1 addition & 1 deletion wp-includes/comment-template.php
Original file line number Diff line number Diff line change
Expand Up @@ -1517,7 +1517,7 @@ function comment_form( $args = array(), $post_id = null ) {

$commenter = wp_get_current_commenter();
$user = wp_get_current_user();
$user_identity = ! empty( $user->ID ) ? $user->display_name : '';
$user_identity = $user->exists() ? $user->display_name : '';

$req = get_option( 'require_name_email' );
$aria_req = ( $req ? " aria-required='true'" : '' );
Expand Down
2 changes: 1 addition & 1 deletion wp-includes/comment.php
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ function update_comment_meta($comment_id, $meta_key, $meta_value, $prev_value =
* @since 3.4.0
*/
function wp_set_comment_cookies($comment, $user) {
if ( $user->ID )
if ( $user->exists() )
return;

$comment_cookie_lifetime = apply_filters('comment_cookie_lifetime', 30000000);
Expand Down
2 changes: 1 addition & 1 deletion wp-includes/ms-deprecated.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function is_site_admin( $user_login = '' ) {
return false;
} else {
$user = get_user_by( 'login', $user_login );
if ( empty( $user->ID ) )
if ( ! $user->exists() )
return false;
$user_id = $user->ID;
}
Expand Down
4 changes: 2 additions & 2 deletions wp-includes/ms-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ function add_user_to_blog( $blog_id, $user_id, $role ) {

$user = new WP_User($user_id);

if ( empty( $user->ID ) ) {
if ( ! $user->exists() ) {
restore_current_blog();
return new WP_Error('user_does_not_exist', __('That user does not exist.'));
}
Expand Down Expand Up @@ -247,7 +247,7 @@ function remove_user_from_blog($user_id, $blog_id = '', $reassign = '') {

// wp_revoke_user($user_id);
$user = new WP_User($user_id);
if ( empty( $user->ID ) ) {
if ( ! $user->exists() ) {
restore_current_blog();
return new WP_Error('user_does_not_exist', __('That user does not exist.'));
}
Expand Down
2 changes: 1 addition & 1 deletion wp-includes/pluggable.php
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ function wp_clear_auth_cookie() {
function is_user_logged_in() {
$user = wp_get_current_user();

if ( empty( $user->ID ) )
if ( ! $user->exists() )
return false;

return true;
Expand Down
4 changes: 2 additions & 2 deletions wp-includes/user.php
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ function get_user_option( $option, $user = 0, $deprecated = '' ) {
else
$user = new WP_User( $user );

if ( ! isset( $user->ID ) )
if ( ! $user->exists() )
return false;

if ( $user->has_prop( $wpdb->prefix . $option ) ) // Blog specific
Expand Down Expand Up @@ -940,7 +940,7 @@ function setup_userdata($for_user_id = '') {
$user_ID = (int) $user->ID;
$user_level = (int) isset($user->user_level) ? $user->user_level : 0;

if ( 0 == $user->ID ) {
if ( ! $user->exists() ) {
$user_login = $user_email = $user_url = $user_pass_md5 = $user_identity = '';
return;
}
Expand Down

0 comments on commit de41bc2

Please sign in to comment.