Skip to content
This repository was archived by the owner on Sep 24, 2018. It is now read-only.

Comments Endpoints #693

Merged
merged 83 commits into from
Jan 26, 2015
Merged

Comments Endpoints #693

merged 83 commits into from
Jan 26, 2015

Conversation

joehoyle
Copy link
Member

@joehoyle joehoyle commented Dec 8, 2014

Still a Work In Progress, but opening to show progress and encourage any feedback as this progresses.

I took the (controversial) decision to use /comments as the canonical place for comments. I was then thinking /posts/1/comments would 301 to /comments?post_id=1 or somehting along those lines. I think it's nicer to keep the comments at their own top level so they are independant of posts apart from the embedding we are doing elsewhere already.

Also we send the "Allow" header taking into account the capabilities and the current user
I had to make the send_header() method public on the server class - which I don't think is a bad thing.
This means we can get rid of the spy methods too
Conflicts:
	tests/test-json-server.php
'number' => isset( $request['per_page'] ) ? (int) $request['per_page'] : 10,
'post_id' => isset( $request['post_id'] ) ? (int) $request['post_id'] : 0,
'user_id' => isset( $request['user_id'] ) ? (int) $request['user_id'] : '',
'status' => isset( $request['status'] ) ? (int) $request['status'] : '',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need to normalize the status argument in some way? (e.g. do we want to expose more friendly status arguments)?

@danielbachhuber
Copy link
Member

I took the (controversial) decision to use /comments as the canonical place for comments.

Dig it!

protected function check_read_post_permission( $post ) {
$posts_controller = new WP_JSON_Posts_Controller;

return $posts_controller->check_read_permission( $post );
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems too tightly-coupled. Can we do it in a more de-coupled manner?

Do comments always need to have a post? If so, why are we exposing them at /wp/comments ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Related Trac Ticket: https://core.trac.wordpress.org/ticket/23931
When checking capabilities some checks return wp_die or fail if there isn't a post_id associated with a post.

@danielbachhuber
Copy link
Member

Thanks @rachelbaker , looking pretty good. Just needs a little bit of cleanup.


$prepared_args['offset'] = $prepared_args['number'] * ( absint( $request['page'] ) - 1 );

if ( current_user_can( 'edit_posts' ) ) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rmccue @justinshreve @joehoyle I expanded the available /comments query parameters BUT I limited the parameters available to unauthenticated users. I tried to separate what is "public" vs "private" using some logic. Any concerns here?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The private vs public separation here makes sense to me.

@rmccue rmccue mentioned this pull request Jan 22, 2015
46 tasks
rachelbaker added a commit that referenced this pull request Jan 26, 2015
@rachelbaker rachelbaker merged commit ba54264 into develop Jan 26, 2015
@rachelbaker rachelbaker deleted the comments-controller branch January 26, 2015 23:22
@fahmi182
Copy link

and how to enable this?

like this?
add_filter('rest_allow_anonymous_comments',false);

@kingstakh
Copy link

kingstakh commented Dec 24, 2016

+1 how enable guest comments now?

@fahmi182
Copy link

fahmi182 commented Dec 24, 2016

@kingstakh

add_filter( 'rest_allow_anonymous_comments', '__return_true' );

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants