Make WordPress Core

Ticket #18427: wp.getUser.2.patch

File wp.getUser.2.patch, 3.6 KB (added by nprasath002, 13 years ago)
  • class-wp-xmlrpc-server.php

    # This patch file was generated by NetBeans IDE
    # Following Index: paths are relative to: C:\xampp\htdocs\wordtrunk\wp-includes
    # This patch can be applied using context Tools: Patch action on respective folder.
    # It uses platform neutral UTF-8 encoding and \n newlines.
    # Above lines and this line are ignored by the patching process.
     
    6464                        'wp.getMediaItem'               => 'this:wp_getMediaItem',
    6565                        'wp.getMediaLibrary'    => 'this:wp_getMediaLibrary',
    6666                        'wp.getPostFormats'     => 'this:wp_getPostFormats',
     67                        'wp.getUser'            => 'this:wp_getUser',
    6768
    6869                        // Blogger API
    6970                        'blogger.getUsersBlogs' => 'this:blogger_getUsersBlogs',
     
    17021703                return $formats;
    17031704        }
    17041705
     1706        /**
     1707         * Retrieve  user
     1708         *
     1709         * @uses get_userdata()
     1710         * @param array $args Method parameters. Contains:
     1711         *  - int     $blog_id
     1712         *  - string  $username
     1713         *  - string  $password
     1714         *  - int     $user_id
     1715         * @return array contains:
     1716         *  - 'user_login'
     1717         *  - 'user_firstname'
     1718         *  - 'user_lastname'
     1719         *  - 'user_registered'
     1720         *  - 'user_description'
     1721         *  - 'user_email'
     1722         *  - 'nickname'
     1723         *  - 'user_nicename'
     1724         *  - 'user_url'
     1725         *  - 'display_name'
     1726         *  - 'usercontacts'
     1727         */
     1728        function wp_getUser( $args ) {
     1729
     1730                $this->escape( $args );
     1731
     1732                $blog_ID    = (int) $args[0];
     1733                $username   = $args[1];
     1734                $password   = $args[2];
     1735                $user_ID    = (int) $args[3];
     1736
     1737                if ( !$user = $this->login( $username, $password ) )
     1738                        return $this->error;
     1739               
     1740                $user_data = get_userdata( $user_ID );
     1741
     1742                if( ! $user_data )
     1743                        return new IXR_Error(404, __('Invalid user ID'));
     1744 
     1745                if( ! ( $user_ID == $user->ID || current_user_can( 'edit_users' ) ))
     1746                        return new IXR_Error( 401, __( 'Sorry, you cannot edit users.' ) );
     1747               
     1748     
     1749                $contact_methods = _wp_get_user_contactmethods();
     1750                foreach( $contact_methods as $key => $value ) {
     1751                    $user_contacts->$key = $user_data->$key;
     1752                }
     1753
     1754                $struct = array(
     1755                        'user_login'        => $user_data->user_login,
     1756                        'user_firstname'    => $user_data->user_firstname,
     1757                        'user_lastname'     => $user_data->user_lastname,
     1758                        'user_registered'   => $user_data->user_registered,
     1759                        'user_description'  => $user_data->user_description,
     1760                        'user_email'        => $user_data->user_email,
     1761                        'nickname'          => $user_data->nickname,
     1762                        'user_nicename'     => $user_data->user_nicename,
     1763                        'user_url'          => $user_data->user_url,
     1764                        'display_name'      => $user_data->display_name,
     1765                        'wp_capabilities'   => $user_data->wp_capabilities,
     1766                        'wp_user_level'     => $user_data->wp_user_level,
     1767                        'usercontacts'      => $user_contacts,
     1768                );
     1769
     1770                return $struct;
     1771
     1772        }
     1773
    17051774        /* Blogger API functions.
    17061775         * specs on http://plant.blogger.com/api and http://groups.yahoo.com/group/bloggerDev/
    17071776         */