168 lines
4.3 KiB
PHP
168 lines
4.3 KiB
PHP
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
|
|
/**
|
|
* Extend the REST API functionality for VideoPress users.
|
|
*
|
|
* @package automattic/jetpack-videopress
|
|
* @since-jetpack 7.1.0
|
|
* @since 0.3.0
|
|
*/
|
|
|
|
namespace Automattic\Jetpack\VideoPress;
|
|
|
|
use Automattic\Jetpack\Connection\Manager as Jetpack_Connection;
|
|
use WP_Post;
|
|
use WP_REST_Request;
|
|
use WP_REST_Response;
|
|
|
|
/**
|
|
* Add per-attachment VideoPress data.
|
|
*
|
|
* { # Attachment Object
|
|
* ...
|
|
* jetpack_videopress_guid: (string) VideoPress identifier
|
|
* ...
|
|
* }
|
|
*/
|
|
class WPCOM_REST_API_V2_Attachment_VideoPress_Field {
|
|
/**
|
|
* The REST Object Type to which the jetpack_videopress_guid field will be added.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $object_type = 'attachment';
|
|
|
|
/**
|
|
* The name of the REST API field to add.
|
|
*
|
|
* @var string $field_name
|
|
*/
|
|
protected $field_name = 'jetpack_videopress_guid';
|
|
|
|
/**
|
|
* Constructor.
|
|
*/
|
|
public function __construct() {
|
|
add_action( 'rest_api_init', array( $this, 'register_fields' ) );
|
|
|
|
// do this again later to collect any CPTs that get registered later.
|
|
add_action( 'restapi_theme_init', array( $this, 'register_fields' ), 20 );
|
|
}
|
|
|
|
/**
|
|
* Registers the jetpack_videopress field and adds a filter to remove it for attachments that are not videos.
|
|
*/
|
|
public function register_fields() {
|
|
global $wp_rest_additional_fields;
|
|
|
|
if ( ! empty( $wp_rest_additional_fields[ $this->object_type ][ $this->field_name ] ) ) {
|
|
return;
|
|
}
|
|
|
|
register_rest_field(
|
|
$this->object_type,
|
|
$this->field_name,
|
|
array(
|
|
'get_callback' => array( $this, 'get' ),
|
|
'update_callback' => null,
|
|
'schema' => $this->get_schema(),
|
|
)
|
|
);
|
|
|
|
add_filter( 'rest_prepare_attachment', array( $this, 'remove_field_for_non_videos' ), 10, 2 );
|
|
}
|
|
|
|
/**
|
|
* Defines data structure and what elements are visible in which contexts.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function get_schema() {
|
|
return array(
|
|
'$schema' => 'http://json-schema.org/draft-04/schema#',
|
|
'title' => $this->field_name,
|
|
'type' => 'string',
|
|
'context' => array( 'view', 'edit' ),
|
|
'readonly' => true,
|
|
'description' => __( 'Unique VideoPress ID', 'jetpack-videopress-pkg' ),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Getter: Retrieve current VideoPress data for a given attachment.
|
|
*
|
|
* @param array $attachment Response from the attachment endpoint.
|
|
* @param WP_REST_Request $request Request to the attachment endpoint.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get( $attachment, $request ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
|
|
if ( ! isset( $attachment['id'] ) ) {
|
|
return array();
|
|
}
|
|
|
|
$blog_id = Jetpack_Connection::get_site_id();
|
|
if ( ! is_int( $blog_id ) ) {
|
|
return array();
|
|
}
|
|
|
|
$videopress_guid = $this->get_videopress_guid( (int) $attachment['id'], $blog_id );
|
|
|
|
if ( ! $videopress_guid ) {
|
|
return '';
|
|
}
|
|
|
|
$schema = $this->get_schema();
|
|
$is_valid = rest_validate_value_from_schema( $videopress_guid, $schema, $this->field_name );
|
|
if ( is_wp_error( $is_valid ) ) {
|
|
return $is_valid;
|
|
}
|
|
|
|
return $videopress_guid;
|
|
}
|
|
|
|
/**
|
|
* Gets the VideoPress GUID for a given attachment.
|
|
*
|
|
* This is pulled out into a separate method to support unit test mocking.
|
|
*
|
|
* @param int $attachment_id Attachment ID.
|
|
* @param int $blog_id Blog ID.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_videopress_guid( $attachment_id, $blog_id ) {
|
|
return video_get_info_by_blogpostid( $blog_id, $attachment_id )->guid ?? '';
|
|
}
|
|
|
|
/**
|
|
* Checks if the given attachment is a video.
|
|
*
|
|
* @param object $attachment The attachment object.
|
|
*
|
|
* @return false|int
|
|
*/
|
|
public function is_video( $attachment ) {
|
|
return wp_startswith( $attachment->post_mime_type, 'video/' );
|
|
}
|
|
|
|
/**
|
|
* Removes the jetpack_videopress_guid field from the response if the
|
|
* given attachment is not a video.
|
|
*
|
|
* @param WP_REST_Response $response Response from the attachment endpoint.
|
|
* @param WP_Post $attachment The original attachment object.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function remove_field_for_non_videos( $response, $attachment ) {
|
|
if ( ! $this->is_video( $attachment ) ) {
|
|
unset( $response->data[ $this->field_name ] );
|
|
}
|
|
|
|
return $response;
|
|
}
|
|
}
|
|
|
|
if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) {
|
|
wpcom_rest_api_v2_load_plugin( 'Automattic\Jetpack\VideoPress\WPCOM_REST_API_V2_Attachment_VideoPress_Field' );
|
|
}
|