Make WordPress Core

Ticket #38816: 38816.diff

File 38816.diff, 2.4 KB (added by dd32, 8 years ago)
  • src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php

    class WP_REST_Comments_Controller extend 
    373373                }
    374374
    375375                // Limit who can set comment `author`, `karma` or `status` to anything other than the default.
    376376                if ( isset( $request['author'] ) && get_current_user_id() !== $request['author'] && ! current_user_can( 'moderate_comments' ) ) {
    377377                        return new WP_Error( 'rest_comment_invalid_author', __( 'Comment author invalid.' ), array( 'status' => rest_authorization_required_code() ) );
    378378                }
    379379
    380380                if ( isset( $request['karma'] ) && $request['karma'] > 0 && ! current_user_can( 'moderate_comments' ) ) {
    381381                        return new WP_Error( 'rest_comment_invalid_karma', __( 'Sorry, you are not allowed to set karma for comments.' ), array( 'status' => rest_authorization_required_code() ) );
    382382                }
    383383
    384384                if ( isset( $request['status'] ) && ! current_user_can( 'moderate_comments' ) ) {
    385385                        return new WP_Error( 'rest_comment_invalid_status', __( 'Sorry, you are not allowed to set status for comments.' ), array( 'status' => rest_authorization_required_code() ) );
    386386                }
    387387
    388                 if ( empty( $request['post'] ) && ! current_user_can( 'moderate_comments' ) ) {
     388                if ( ( empty( $request['post'] ) || ! get_post( (int) $request['post'] ) ) && ! current_user_can( 'moderate_comments' ) ) {
    389389                        return new WP_Error( 'rest_comment_invalid_post_id', __( 'Sorry, you are not allowed to create this comment without a post.' ), array( 'status' => rest_authorization_required_code() ) );
    390390                }
    391391
    392392                if ( ! empty( $request['post'] ) && $post = get_post( (int) $request['post'] ) ) {
    393393                        if ( 'draft' === $post->post_status ) {
    394394                                return new WP_Error( 'rest_comment_draft_post', __( 'Sorry, you are not allowed to create a comment on this post.' ), array( 'status' => 403 ) );
    395395                        }
    396396
    397397                        if ( 'trash' === $post->post_status ) {
    398398                                return new WP_Error( 'rest_comment_trash_post', __( 'Sorry, you are not allowed to create a comment on this post.' ), array( 'status' => 403 ) );
    399399                        }
    400400
    401401                        if ( ! $this->check_read_post_permission( $post ) ) {
    402402                                return new WP_Error( 'rest_cannot_read_post', __( 'Sorry, you are not allowed to read the post for this comment.' ), array( 'status' => rest_authorization_required_code() ) );
    403403                        }