Notice: require(): read of 8034 bytes failed with errno=12 Cannot allocate memory in /home/efzeqwif/public_html/razgallery.com/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-php-autoloader.php on line 90
Notice: require(): read of 8034 bytes failed with errno=12 Cannot allocate memory in /home/efzeqwif/public_html/razgallery.com/wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-php-autoloader.php on line 90
layback_jwt( $video_guid );
$args = array(
'method' => 'GET',
);
return $this->wpcom_poster_request(
$video_guid,
$args,
null,
'metadata_token=' . $jwt
);
}
/**
* Endpoint for getting the VideoPress Upload JWT
*
* @return WP_Rest_Response - The response object.
*/
public static function videopress_upload_jwt() {
$has_connected_owner = Data::has_connected_owner();
if ( ! $has_connected_owner ) {
return rest_ensure_response(
new WP_Error(
'owner_not_connected',
'User not connected.',
array(
'code' => 503,
'connect_url' => Admin_UI::get_admin_page_url(),
)
)
);
}
$blog_id = Data::get_blog_id();
if ( ! $blog_id ) {
return rest_ensure_response(
new WP_Error( 'site_not_registered', 'Site not registered.', 503 )
);
}
try {
$token = VideoPressToken::videopress_upload_jwt();
$status = 200;
$data = array(
'upload_token' => $token,
'upload_url' => videopress_make_resumable_upload_path( $blog_id ),
'upload_blog_id' => $blog_id,
);
} catch ( \Exception $e ) {
$status = 500;
$data = array(
'error' => $e->getMessage(),
);
}
return rest_ensure_response(
new WP_REST_Response( $data, $status )
);
}
/**
* Endpoint for generating a VideoPress Playback JWT
*
* @param WP_REST_Request $request the request object.
* @return WP_Rest_Response - The response object.
*/
public static function videopress_playback_jwt( $request ) {
$has_connected_owner = Data::has_connected_owner();
if ( ! $has_connected_owner ) {
return rest_ensure_response(
new WP_Error(
'owner_not_connected',
'User not connected.',
array(
'code' => 503,
'connect_url' => Admin_UI::get_admin_page_url(),
)
)
);
}
$blog_id = Data::get_blog_id();
if ( ! $blog_id ) {
return rest_ensure_response(
new WP_Error( 'site_not_registered', 'Site not registered.', 503 )
);
}
try {
$video_guid = $request->get_param( 'video_guid' );
$token = VideoPressToken::videopress_playback_jwt( $video_guid );
$status = 200;
$data = array(
'playback_token' => $token,
);
} catch ( \Exception $e ) {
$status = 500;
$data = array(
'error' => $e->getMessage(),
);
}
return rest_ensure_response(
new WP_REST_Response( $data, $status )
);
}
/**
* Updates attachment meta and video metadata via the WPCOM REST API.
*
* @param WP_REST_Request $request the request object.
* @return object|WP_Error Success object or WP_Error with error details.
*/
public function videopress_block_update_meta( $request ) {
$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' );
}