diff --git a/lib/fields.js b/lib/fields.js index a6a8a02..b5c6c06 100644 --- a/lib/fields.js +++ b/lib/fields.js @@ -66,6 +66,20 @@ maps.labels = createFieldMaps({ viewItem: "view_item" }); +maps.user = createFieldMaps({ + id: /* string */ "user_id", + userName: /* string */ "username", + firstName: /* string */ "first_name", + lastName: /* string */ "last_name", + bio: /* string */ "bio", + email: /* string */ "email", + nickname: /* string */ "nickname", + nicename: /* string */ "nicename", + url: /* string */ "url", + displayName: /* string */ "display_name", + registered: /* datetime */ "registered" +}); + maps.post = createFieldMaps({ author: /* int */ "post_author", commentStatus: /* string */ "comment_status", diff --git a/lib/wordpress.js b/lib/wordpress.js index 91aadb8..dfa0020 100644 --- a/lib/wordpress.js +++ b/lib/wordpress.js @@ -257,6 +257,88 @@ extend( Client.prototype, { } }); +extend( Client.prototype, { + getUsersBlogs: function( fn ) { + this.credentialsCall( "wp.getUsersBlogs", fn); + }, + + getUser: function( id, fields, fn ) { + if ( typeof fields === "function" ) { + fn = fields; + fields = null; + } + + if ( fields ) { + fields = fieldMap.array( fields, "user" ); + } + + this.authenticatedCall( "wp.getUser", id, fields, function( error, user ) { + if ( error ) { + return fn( error ); + } + + fn( null, fieldMap.from( user, "user" ) ); + }); + }, + + getUsers: function ( filter, fields, fn ) { + if ( typeof filter === "function" ) { + fn = filter; + fields = null; + filter = {}; + } + + if ( typeof fields === "function" ) { + fn = fields; + fields = null; + } + + if ( filter.orderby ) { + filter.orderby = fieldMap.array( [ filter.orderby ], "user" )[ 0 ]; + } + + if ( fields ) { + fields = fieldMap.array( fields, "user" ); + } + + this.authenticatedCall( "wp.getUsers", filter, fields, function( error, users ) { + if ( error ) { + return fn( error ); + } + + fn( null, users.map(function( user ) { + return fieldMap.from( user, "user" ); + })); + }); + }, + + getProfile: function ( fields, fn ) { + this.authenticatedCall( "wp.getProfile", fields, function (error, user ) { + if ( error ) { + return fn ( error ); + } + + fn( null, fieldMap.from( user, "user" )); + }); + }, + + editProfile: function ( data, fn ) { + this.authenticatedCall( "wp.editProfile", fieldMap.to( data, "user" ), fn ); + }, + + getAuthors: function( fn ) { + this.authenticatedCall( "wp.getAuthors", function ( error, authors ) { + if ( error ) { + return fn( error ); + } + + fn( null, authors.map(function( author ) { + return fieldMap.from( author, "author" ); + })); + }); + } +}); + module.exports = { Client: Client,