BP_REST_Activity_Comment_Endpoint::create_item_permissions_check( WP_REST_Request $request )

Checks if a given request has access to create an activity comment.

Description

Parameters

$request

(Required) Full details about the request.

Return

(bool|WP_Error)

Source

File: bp-activity/classes/class-bp-rest-activity-comment-endpoint.php

267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
public function create_item_permissions_check( $request ) {
    $retval = true;
 
    if ( ! is_user_logged_in() ) {
        $retval = new WP_Error(
            'bp_rest_authorization_required',
            __( 'Sorry, you are not allowed to create an activity comment.', 'buddyboss' ),
            array(
                'status' => rest_authorization_required_code(),
            )
        );
    }
 
    $activity = $this->get_activity_object( $request );
 
    if ( empty( $activity ) || empty( $activity->id ) ) {
        return new WP_Error(
            'bp_rest_invalid_id',
            __( 'Invalid activity ID.', 'buddyboss' ),
            array(
                'status' => 404,
            )
        );
    }
 
    /**
     * Filter the activity comment `create_item` permissions check.
     *
     * @param bool|WP_Error $retval Returned value.
     * @param WP_REST_Request $request The request sent to the API.
     *
     * @since 0.1.0
     */
    return apply_filters( 'bp_rest_activity_comment_create_item_permissions_check', $retval, $request );
}

Changelog

Changelog
Version Description
0.1.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.