BP_REST_Attachments_Member_Cover_Endpoint::create_item( WP_REST_Request $request )

Upload a user cover.

Description

Parameters

$request

(Required) Full details about the request.

Return

(WP_REST_Response) | WP_Error

Source

File: bp-members/classes/class-bp-rest-attachments-member-cover-endpoint.php

211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
public function create_item( $request ) {
    $request->set_param( 'context', 'edit' );
 
    // Get the image file from $_FILES.
    $files = $request->get_file_params();
 
    if ( empty( $files ) ) {
        return new WP_Error(
            'bp_rest_attachments_member_cover_no_image_file',
            __( 'Sorry, you need an image file to upload.', 'buddyboss' ),
            array(
                'status' => 500,
            )
        );
    }
 
    // Upload the user cover.
    $cover_url = $this->upload_cover_from_file( $files );
    if ( is_wp_error( $cover_url ) ) {
        return $cover_url;
    }
 
    $retval = $this->prepare_response_for_collection(
        $this->prepare_item_for_response( $cover_url, $request )
    );
 
    $response = rest_ensure_response( $retval );
 
    /**
     * Fires after a user cover is uploaded via the REST API.
     *
     * @param string $cover_url The user cover url.
     * @param WP_REST_Response $response The response data.
     * @param WP_REST_Request $request The request sent to the API.
     *
     * @since 0.1.0
     */
    do_action( 'bp_rest_attachments_member_cover_create_item', $cover_url, $response, $request );
 
    return $response;
}

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.