Make WordPress Core

Ticket #38820: 38820.diff

File 38820.diff, 2.6 KB (added by dd32, 9 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 ( isset( $request['type'] ) && 'comment' !== $request['type'] && ! current_user_can( 'moderate_comments' ) ) {
     389                        return new WP_Error( 'rest_comment_invalid_type', __( 'Sorry, you are not allowed to set type for comments.' ), array( 'status' => rest_authorization_required_code() ) );
     390                }
     391
    388392                if ( empty( $request['post'] ) && ! current_user_can( 'moderate_comments' ) ) {
    389393                        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() ) );
    390394                }
    391395
    392396                if ( ! empty( $request['post'] ) && $post = get_post( (int) $request['post'] ) ) {
    393397                        if ( 'draft' === $post->post_status ) {
    394398                                return new WP_Error( 'rest_comment_draft_post', __( 'Sorry, you are not allowed to create a comment on this post.' ), array( 'status' => 403 ) );
    395399                        }
    396400
    397401                        if ( 'trash' === $post->post_status ) {
    398402                                return new WP_Error( 'rest_comment_trash_post', __( 'Sorry, you are not allowed to create a comment on this post.' ), array( 'status' => 403 ) );
    399403                        }
    400404
    401405                        if ( ! $this->check_read_post_permission( $post ) ) {
    402406                                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() ) );