-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added user functions #11
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" ); | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So much repetition (my fault, not yours). I should try to abstract out the common parts of this code. If you have any ideas for that, let me know. But don't worry about that for this PR; you've got the right approach. I'm really just writing this as a note for myself :-) |
||
|
||
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 ) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This method needs all the repetition :-) |
||
this.authenticatedCall( "wp.getProfile", fields, function (error, user ) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing space after opening paren in callback signature. |
||
if ( error ) { | ||
return fn ( error ); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Extraneous space before opening paren. |
||
} | ||
|
||
fn( null, fieldMap.from( user, "user" )); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing space before the last closing paren. |
||
}); | ||
}, | ||
|
||
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, | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this.authenticatedCall
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing space before the closing paren.