summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-endpoint.php')
-rw-r--r--plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-endpoint.php75
1 files changed, 45 insertions, 30 deletions
diff --git a/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-endpoint.php b/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-endpoint.php
index ced1f7d0..8a6a1014 100644
--- a/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-endpoint.php
+++ b/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-endpoint.php
@@ -1,32 +1,46 @@
-<?php
+<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
-new WPCOM_JSON_API_Render_Embed_Endpoint( array(
- 'description' => "Get a rendered embed for a site. Note: The current user must have publishing access.",
- 'group' => 'sites',
- 'stat' => 'embeds:render',
- 'method' => 'GET',
- 'path' => '/sites/%s/embeds/render',
- 'path_labels' => array(
- '$site' => '(int|string) Site ID or domain',
- ),
- 'query_parameters' => array(
- 'embed_url' => '(string) The query-string encoded embed URL to render. Required. Only accepts one at a time.',
- ),
- 'response_format' => array(
- 'embed_url' => '(string) The embed_url that was passed in for rendering.',
- 'result' => '(html) The rendered HTML result of the embed.',
- ),
- 'example_request' => 'https://public-api.wordpress.com/rest/v1/sites/apiexamples.wordpress.com/embeds/render?embed_url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DSQEQr7c0-dw',
- 'example_request_data' => array(
- 'headers' => array(
- 'authorization' => 'Bearer YOUR_API_TOKEN'
+new WPCOM_JSON_API_Render_Embed_Endpoint(
+ array(
+ 'description' => 'Get a rendered embed for a site. Note: The current user must have publishing access.',
+ 'group' => 'sites',
+ 'stat' => 'embeds:render',
+ 'method' => 'GET',
+ 'path' => '/sites/%s/embeds/render',
+ 'path_labels' => array(
+ '$site' => '(int|string) Site ID or domain',
+ ),
+ 'query_parameters' => array(
+ 'embed_url' => '(string) The query-string encoded embed URL to render. Required. Only accepts one at a time.',
+ ),
+ 'response_format' => array(
+ 'embed_url' => '(string) The embed_url that was passed in for rendering.',
+ 'result' => '(html) The rendered HTML result of the embed.',
+ ),
+ 'example_request' => 'https://public-api.wordpress.com/rest/v1/sites/apiexamples.wordpress.com/embeds/render?embed_url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DSQEQr7c0-dw',
+ 'example_request_data' => array(
+ 'headers' => array(
+ 'authorization' => 'Bearer YOUR_API_TOKEN',
+ ),
),
)
-) );
+);
+/**
+ * Render embed endpoint class.
+ *
+ * /sites/%s/embeds/render -> $blog_id
+ */
class WPCOM_JSON_API_Render_Embed_Endpoint extends WPCOM_JSON_API_Render_Endpoint {
- // /sites/%s/embeds/render -> $blog_id
- function callback( $path = '', $blog_id = 0 ) {
+ /**
+ * API Callback.
+ *
+ * @param string $path - the path.
+ * @param int $blog_id - the blog ID.
+ *
+ * @return array|WP_Error
+ */
+ public function callback( $path = '', $blog_id = 0 ) {
$blog_id = $this->api->switch_to_blog_and_validate_user( $this->api->get_blog_id( $blog_id ) );
if ( is_wp_error( $blog_id ) ) {
return $blog_id;
@@ -36,7 +50,7 @@ class WPCOM_JSON_API_Render_Embed_Endpoint extends WPCOM_JSON_API_Render_Endpoin
return new WP_Error( 'unauthorized', __( 'Your token must have permission to post on this blog.', 'jetpack' ), 403 );
}
- $args = $this->query_args();
+ $args = $this->query_args();
$embed_url = trim( $args['embed_url'] );
// quick validation
@@ -45,11 +59,11 @@ class WPCOM_JSON_API_Render_Embed_Endpoint extends WPCOM_JSON_API_Render_Endpoin
}
if ( count( $matches[1] ) > 1 ) {
- return new WP_Error( 'invalid_embed', __( 'Only one embed can be rendered at a time.', 'jetpack' ), 400 );
+ return new WP_Error( 'invalid_embed', __( 'Only one embed can be rendered at a time.', 'jetpack' ), 400 );
}
$embed_url = array_shift( $matches[1] );
- $parts = wp_parse_url( $embed_url );
+ $parts = wp_parse_url( $embed_url );
if ( ! $parts ) {
return new WP_Error( 'invalid_embed_url', __( 'The embed_url parameter must be a valid URL.', 'jetpack' ), 400 );
}
@@ -58,14 +72,15 @@ class WPCOM_JSON_API_Render_Embed_Endpoint extends WPCOM_JSON_API_Render_Endpoin
$render = $this->process_render( array( $this, 'do_embed' ), $embed_url );
// if nothing happened, then the shortcode does not exist.
- $is_an_embed = ( $embed_url != $render['result'] && $wp_embed->maybe_make_link( $embed_url ) != $render['result'] );
+ $is_an_embed = ( $embed_url !== $render['result'] && $wp_embed->maybe_make_link( $embed_url ) !== $render['result'] );
if ( ! $is_an_embed ) {
- return new WP_Error( 'invalid_embed', __( 'The requested URL is not an embed.', 'jetpack' ), 400 );
+ return new WP_Error( 'invalid_embed', __( 'The requested URL is not an embed.', 'jetpack' ), 400 );
}
// our output for this endpoint..
+ $return = array();
$return['embed_url'] = $embed_url;
- $return['result'] = $render['result'];
+ $return['result'] = $render['result'];
$return = $this->add_assets( $return, $render['loaded_scripts'], $render['loaded_styles'] );