{ $json_params = $request->get_json_params(); $post_id = $json_params['id']; if ( ! defined( 'IS_WPCOM' ) || ! IS_WPCOM ) { $guid = get_post_meta( $post_id, 'videopress_guid', true ); } else { $blog_id = get_current_blog_id(); $info = video_get_info_by_blogpostid( $blog_id, $post_id ); $guid = $info->guid; } if ( ! $guid ) { return rest_ensure_response( new WP_Error( 'error', __( 'This attachment cannot be updated yet.', 'jetpack-videopress-pkg' ) ) ); } $video_request_params = $json_params; unset( $video_request_params['id'] ); $video_request_params['guid'] = $guid; $endpoint = 'videos'; $args = array( 'method' => 'POST', 'headers' => array( 'content-type' => 'application/json' ), ); $result = Client::wpcom_json_api_request_as_blog( $endpoint, '2', $args, wp_json_encode( $video_request_params ), 'wpcom' ); if ( is_wp_error( $result ) ) { return rest_ensure_response( $result ); } $response_body = json_decode( wp_remote_retrieve_body( $result ) ); if ( is_bool( $response_body ) && $response_body ) { /* * Title, description and caption of the video are not stored as metadata on the attachment, * but as post_content, post_title and post_excerpt on the attachment's post object. * We need to update those fields here, too. */ $post_title = null; if ( isset( $json_params['title'] ) ) { $post_title = sanitize_text_field( $json_params['title'] ); wp_update_post( array( 'ID' => $post_id, 'post_title' => $post_title, ) ); } $post_content = null; if ( isset( $json_params['description'] ) ) { $post_content = sanitize_textarea_field( $json_params['description'] ); wp_update_post( array( 'ID' => $post_id, 'post_content' => $post_content, ) ); } $post_excerpt = null; if ( isset( $json_params['caption'] ) ) { $post_excerpt = sanitize_textarea_field( $json_params['caption'] ); wp_update_post( array( 'ID' => $post_id, 'post_excerpt' => $post_excerpt, ) ); } // VideoPress data is stored in attachment meta for Jetpack sites, but not on wpcom. if ( ! defined( 'IS_WPCOM' ) || ! IS_WPCOM ) { $meta = wp_get_attachment_metadata( $post_id ); $should_update_meta = false; if ( ! $meta ) { return rest_ensure_response( new WP_Error( 'error', __( 'Attachment meta was not found.', 'jetpack-videopress-pkg' ) ) ); } if ( isset( $json_params['display_embed'] ) && isset( $meta['videopress']['display_embed'] ) ) { $meta['videopress']['display_embed'] = $json_params['display_embed']; $should_update_meta = true; } if ( isset( $json_params['rating'] ) && isset( $meta['videopress']['rating'] ) && videopress_is_valid_video_rating( $json_params['rating'] ) ) { $meta['videopress']['rating'] = $json_params['rating']; $should_update_meta = true; /** Set a new meta field so we can filter using it directly */ update_post_meta( $post_id, 'videopress_rating', $json_params['rating'] ); } if ( isset( $json_params['title'] ) ) { $meta['videopress']['title'] = $post_title; $should_update_meta = true; } if ( isset( $json_params['description'] ) ) { $meta['videopress']['description'] = $post_content; $should_update_meta = true; } if ( isset( $json_params['caption'] ) ) { $meta['videopress']['caption'] = $post_excerpt; $should_update_meta = true; } if ( isset( $json_params['poster'] ) ) { $meta['videopress']['poster'] = $json_params['poster']; $should_update_meta = true; } if ( isset( $json_params['allow_download'] ) ) { $allow_download = (bool) $json_params['allow_download']; if ( ! isset( $meta['videopress']['allow_download'] ) || $meta['videopress']['allow_download'] !== $allow_download ) { $meta['videopress']['allow_download'] = $allow_download; $should_update_meta = true; } } if ( isset( $json_params['privacy_setting'] ) ) { $privacy_setting = $json_params['privacy_setting']; if ( ! isset( $meta['videopress']['privacy_setting'] ) || $meta['videopress']['privacy_setting'] !== $privacy_setting ) { $meta['videopress']['privacy_setting'] = $privacy_setting; $should_update_meta = true; /** Set a new meta field so we can filter using it directly */ update_post_meta( $post_id, 'videopress_privacy_setting', $privacy_setting ); } } if ( $should_update_meta ) { wp_update_attachment_metadata( $post_id, $meta ); } } return rest_ensure_response( array( 'code' => 'success', 'message' => __( 'Video meta updated successfully.', 'jetpack-videopress-pkg' ), 'data' => 200, ) ); } else { return rest_ensure_response( new WP_Error( $response_body->code, $response_body->message, $response_body->data ) ); } } } if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { wpcom_rest_api_v2_load_plugin( 'Automattic\Jetpack\VideoPress\WPCOM_REST_API_V2_Endpoint_VideoPress' ); }