BP_REST_Media_Endpoint::bp_media_ids_update_rest_field_callback( object $object, object $value, string $attribute )

The function to use to update the medias’s value of the activity REST Field.

Description

Parameters

$object

(Required) The BuddyPress component's object that was just created/updated during the request. (in this case the BP_Activity_Activity object).

$value

(Required) The value of the REST Field to save.

$attribute

(Required) The REST Field key used into the REST response.

Return

(object)

Source

File: bp-media/classes/class-bp-rest-media-endpoint.php

2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
protected function bp_media_ids_update_rest_field_callback( $object, $value, $attribute ) {
 
    if ( 'bp_media_ids' !== $attribute || empty( $object ) ) {
        $value->bp_media_ids = null;
        return $value;
    }
 
    $privacy = $value->privacy;
    $medias  = wp_parse_id_list( $object );
    if ( empty( $medias ) ) {
        $value->bp_media_ids = null;
        return $value;
    }
 
    $args = array(
        'upload_ids'  => $medias,
        'privacy'     => $privacy,
        'activity_id' => $value->id,
    );
 
    if ( ! empty( $value->component ) && 'groups' === $value->component ) {
        $args['group_id'] = $value->item_id;
        $args['privacy']  = 'grouponly';
    }
 
    $medias_ids = $this->bp_rest_create_media( $args );
 
    if ( is_wp_error( $medias_ids ) ) {
        $value->bp_media_ids = $medias_ids;
        return $value;
    }
 
    $medias = $this->assemble_response_data( array( 'media_ids' => $medias_ids ) );
 
    if ( empty( $medias['medias'] ) ) {
        return;
    }
 
    $retval = array();
    foreach ( $medias['medias'] as $media ) {
        $retval[] = array(
            'id'    => $media->id,
            'full'  => wp_get_attachment_image_url( $media->attachment_id, 'full' ),
            'thumb' => wp_get_attachment_image_url( $media->attachment_id, 'bp-media-thumbnail' ),
        );
    }
 
    $value->bp_media_ids = $retval;
    return $value;
}

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.