0 );
}
if ( 'attachment' != $post_type ) {
return;
}
// If this has not been processed by videopress, we can skip the rest.
if ( ! is_videopress_attachment( $post->ID ) ) {
return;
}
add_meta_box( 'videopress-media-info', __( 'VideoPress Information', 'jetpack' ), array( $this, 'videopress_information_box' ), 'attachment', 'side', 'core' );
}
/**
* @param array $post
* @param array|null $attachment
*
* @return array
*/
public function save_fields( $post, $attachment = null ) {
if ( $attachment === null && isset( $_POST['attachment'] ) ) {
$attachment = $_POST['attachment'];
}
if ( ! isset( $attachment['is_videopress_attachment'] ) || $attachment['is_videopress_attachment'] !== 'yes' ) {
return $post;
}
$post_id = absint( $post['ID'] );
$meta = wp_get_attachment_metadata( $post_id );
// If this has not been processed by videopress, we can skip the rest.
if ( ! is_videopress_attachment( $post['ID'] ) ) {
return $post;
}
$values = array();
// Add the video title & description in, so that we save it properly.
if ( isset( $_POST['post_title'] ) ) {
$values['title'] = trim( strip_tags( $_POST['post_title'] ) );
}
if ( isset( $_POST['post_excerpt'] ) ) {
$values['description'] = trim( strip_tags( $_POST['post_excerpt'] ) );
}
if ( isset( $attachment['rating'] ) ) {
$rating = $attachment['rating'];
if ( ! empty( $rating ) && in_array( $rating, array( 'G', 'PG-13', 'R-17', 'X-18' ) ) ) {
$values['rating'] = $rating;
}
}
// We set a default here, as if it isn't selected, then we'll turn it off.
$values['display_embed'] = 0;
if ( isset( $attachment['display_embed'] ) ) {
$display_embed = $attachment['display_embed'];
$values['display_embed'] = 'on' === $display_embed ? 1 : 0;
}
$args = array(
'method' => 'POST',
);
$guid = get_post_meta( $post_id, 'videopress_guid', true );
$endpoint = "videos/{$guid}";
$result = Client::wpcom_json_api_request_as_blog( $endpoint, Client::WPCOM_JSON_API_VERSION, $args, $values );
if ( is_wp_error( $result ) ) {
$post['errors']['videopress']['errors'][] = __( 'There was an issue saving your updates to the VideoPress service. Please try again later.', 'jetpack' );
return $post;
}
if ( isset( $values['display_embed'] ) ) {
$meta['videopress']['display_embed'] = $values['display_embed'];
}
if ( isset( $values['rating'] ) ) {
$meta['videopress']['rating'] = $values['rating'];
}
wp_update_attachment_metadata( $post_id, $meta );
$response = json_decode( $result['body'], true );
if ( 'true' !== $response ) {
return $post;
}
return $post;
}
/**
* Get the upload api path.
*
* @param string $guid
* @return string
*/
public function make_video_api_path( $guid ) {
return sprintf(
'%s://%s/rest/v%s/videos/%s',
'https',
'public-api.wordpress.com', // JETPACK__WPCOM_JSON_API_HOST,
Client::WPCOM_JSON_API_VERSION,
$guid
);
}
/**
* Creates an array of video fields to edit based on transcoded videos.
*
* @param array $fields video fields of interest
* @param stdClass $post post object
* @return array modified version of video fields for administrative interface display
*/
public function fields_to_edit( $fields, $post ) {
$post_id = absint( $post->ID );
$meta = wp_get_attachment_metadata( $post_id );
// If this has not been processed by videopress, we can skip the rest.
if ( ! is_videopress_attachment( $post_id ) || ! isset( $meta['videopress'] ) ) {
return $fields;
}
$info = (object) $meta['videopress'];
$file_statuses = isset( $meta['file_statuses'] ) ? $meta['file_statuses'] : array();
$guid = get_post_meta( $post_id, 'videopress_guid', true );
unset( $fields['url'] );
unset( $fields['post_content'] );
if ( isset( $file_statuses['ogg'] ) && 'done' === $file_statuses['ogg'] ) {
$v_name = preg_replace( '/\.\w+/', '', basename( $info->path ) );
$video_name = $v_name . '_fmt1.ogv';
$ogg_url = videopress_cdn_file_url( $guid, $video_name );
$fields['video-ogg'] = array(
'label' => __( 'Ogg File URL', 'jetpack' ),
'input' => 'html',
'html' => "",
'helps' => __( 'Location of the Ogg video file.', 'jetpack' ),
);
}
$fields['post_title']['helps'] = __( 'Title will appear on the first frame of your video', 'jetpack' );
$fields['post_excerpt']['label'] = _x( 'Description', 'A header for the short description display', 'jetpack' );
$fields['post_excerpt']['input'] = 'textarea';
$fields['post_excerpt']['value'] = $info->description;
$fields['is_videopress_attachment'] = array(
'input' => 'hidden',
'value' => 'yes',
);
$fields['videopress_shortcode'] = array(
'label' => _x( 'Shortcode', 'A header for the shortcode display', 'jetpack' ),
'input' => 'html',
'html' => "",
'show_in_modal' => true,
'show_in_edit' => false,
);
$fields['display_embed'] = array(
'label' => _x( 'Share', 'A header for the video sharing options area', 'jetpack' ),
'input' => 'html',
'html' => $this->display_embed_choice( $info ),
);
$fields['video-rating'] = array(
'label' => _x( 'Rating', 'A header for the video rating area', 'jetpack' ),
'input' => 'html',
'html' => $this->display_rating( $info ),
);
return $fields;
}
/**
* @param stdClass $post
*/
public function videopress_information_box( $post ) {
$post_id = absint( $post->ID );
$meta = wp_get_attachment_metadata( $post_id );
$guid = get_post_meta( $post_id, 'videopress_guid', true );
// If this has not been processed by videopress, we can skip the rest.
if ( ! is_videopress_attachment( $post_id ) ) {
return;
}
$info = (object) $meta['videopress'];
$status = videopress_get_transcoding_status( $post_id );
$formats = array(
'std_mp4' => 'Standard MP4',
'std_ogg' => 'OGG Vorbis',
'dvd_mp4' => 'DVD',
'hd_mp4' => 'High Definition',
);
$embed = "[videopress {$guid}]";
$shortcode = '';
$trans_status = '';
$all_trans_done = true;
foreach ( $formats as $status_key => $name ) {
if ( 'DONE' !== $status[ $status_key ] ) {
$all_trans_done = false;
}
$trans_status .= '- ' . $name . ": " . ( 'DONE' === $status[ $status_key ] ? 'Done' : 'Processing' ) . '
';
}
$nonce = wp_create_nonce( 'videopress-update-transcoding-status' );
$url = 'empty';
if ( ! empty( $guid ) ) {
$url = videopress_build_url( $guid );
$url = "{$url}";
}
$poster = 'Still Processing';
if ( ! empty( $info->poster ) ) {
$poster = "
poster}\" width=\"175px\">";
}
$status_update = '';
if ( ! $all_trans_done ) {
$status_update = ' (update)';
}
$html = <<< HTML