2012-09-25 10:39:26 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* API for easily embedding rich media such as videos and images into content.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Embed
|
|
|
|
* @since 2.9.0
|
|
|
|
*/
|
|
|
|
class WP_Embed {
|
2014-05-19 07:47:14 +02:00
|
|
|
public $handlers = array();
|
|
|
|
public $post_ID;
|
|
|
|
public $usecache = true;
|
|
|
|
public $linkifunknown = true;
|
2015-04-30 23:40:25 +02:00
|
|
|
public $last_attr = array();
|
|
|
|
public $last_url = '';
|
2012-09-25 10:39:26 +02:00
|
|
|
|
2014-06-30 07:49:16 +02:00
|
|
|
/**
|
2016-03-12 13:39:27 +01:00
|
|
|
* When a URL cannot be embedded, return false instead of returning a link
|
2016-05-23 20:54:27 +02:00
|
|
|
* or the URL.
|
|
|
|
*
|
|
|
|
* Bypasses the {@see 'embed_maybe_make_link'} filter.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @var bool
|
2014-09-04 17:23:16 +02:00
|
|
|
*/
|
2014-06-30 07:49:16 +02:00
|
|
|
public $return_false_on_fail = false;
|
|
|
|
|
2012-09-25 10:39:26 +02:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*/
|
2014-05-19 07:47:14 +02:00
|
|
|
public function __construct() {
|
2012-09-25 10:39:26 +02:00
|
|
|
// Hack to get the [embed] shortcode to run before wpautop()
|
|
|
|
add_filter( 'the_content', array( $this, 'run_shortcode' ), 8 );
|
|
|
|
|
|
|
|
// Shortcode placeholder for strip_shortcodes()
|
|
|
|
add_shortcode( 'embed', '__return_false' );
|
|
|
|
|
|
|
|
// Attempts to embed all URLs in a post
|
|
|
|
add_filter( 'the_content', array( $this, 'autoembed' ), 8 );
|
|
|
|
|
2016-07-10 02:51:30 +02:00
|
|
|
// After a post is saved, cache oEmbed items via Ajax
|
2012-09-25 10:39:26 +02:00
|
|
|
add_action( 'edit_form_advanced', array( $this, 'maybe_run_ajax_cache' ) );
|
2015-08-19 07:40:24 +02:00
|
|
|
add_action( 'edit_page_form', array( $this, 'maybe_run_ajax_cache' ) );
|
2012-09-25 10:39:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process the [embed] shortcode.
|
|
|
|
*
|
|
|
|
* Since the [embed] shortcode needs to be run earlier than other shortcodes,
|
|
|
|
* this function removes all existing shortcodes, registers the [embed] shortcode,
|
2016-05-22 19:39:28 +02:00
|
|
|
* calls do_shortcode(), and then re-registers the old shortcodes.
|
2012-09-25 10:39:26 +02:00
|
|
|
*
|
2015-05-22 07:15:26 +02:00
|
|
|
* @global array $shortcode_tags
|
2012-09-25 10:39:26 +02:00
|
|
|
*
|
|
|
|
* @param string $content Content to parse
|
|
|
|
* @return string Content with shortcode parsed
|
|
|
|
*/
|
2014-05-19 07:47:14 +02:00
|
|
|
public function run_shortcode( $content ) {
|
2012-09-25 10:39:26 +02:00
|
|
|
global $shortcode_tags;
|
|
|
|
|
|
|
|
// Back up current registered shortcodes and clear them all out
|
|
|
|
$orig_shortcode_tags = $shortcode_tags;
|
|
|
|
remove_all_shortcodes();
|
|
|
|
|
|
|
|
add_shortcode( 'embed', array( $this, 'shortcode' ) );
|
|
|
|
|
|
|
|
// Do the shortcode (only the [embed] one is registered)
|
2015-07-22 07:15:25 +02:00
|
|
|
$content = do_shortcode( $content, true );
|
2012-09-25 10:39:26 +02:00
|
|
|
|
|
|
|
// Put the original shortcodes back
|
|
|
|
$shortcode_tags = $orig_shortcode_tags;
|
|
|
|
|
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If a post/page was saved, then output JavaScript to make
|
2016-07-10 02:51:30 +02:00
|
|
|
* an Ajax request that will call WP_Embed::cache_oembed().
|
2012-09-25 10:39:26 +02:00
|
|
|
*/
|
2014-05-19 07:47:14 +02:00
|
|
|
public function maybe_run_ajax_cache() {
|
2012-09-25 10:39:26 +02:00
|
|
|
$post = get_post();
|
|
|
|
|
Improve oEmbed caching. Introduces the concept of a TTL for oEmbed caches and a filter for `oembed_ttl`.
We will no longer replace previously valid oEmbed responses with an `{{unknown}}` cache value. When this happens due to reaching a rate limit or a service going down, it is data loss, and is not acceptable. This means that oEmbed caches for a post are no longer deleted indiscriminately every time that post is saved.
oEmbed continues to be cached in post meta, with the addition of a separate meta key containing the timestamp of the last retrieval, which is used to avoid re-requesting a recently cached oEmbed response. By default, we consider a valued cached in the past day to be fresh. This can greatly reduce the number of outbound requests, especially in cases where a post containing multiple embeds is saved frequently.
The TTL used to determine whether or not to request a response can be filtered using `oembed_ttl`, thus allowing for the possibility of respecting the optional oEmbed response parameter `cache_age` or altering the period of time a cached value is considered to be fresh.
Now that oEmbeds are previewed in the visual editor as well as the media modal, oEmbed caches are often populated before a post is saved or published. By pre-populating and avoiding having to re-request that response, we also greatly reduce the chances of a stampede happening when a published post is visible before oEmbed caching is complete.
As it previously stood, a stampede was extremely likely to happen, as the AJAX caching was only triggered when `$_GET['message']` was 1. The published message is 6. We now trigger the caching every time `$_GET['message']` is present on the edit screen, as we are able to avoid triggering so many HTTP requests overall.
props markjaquith. fixes #14759. see #17210.
Built from https://develop.svn.wordpress.org/trunk@28972
git-svn-id: http://core.svn.wordpress.org/trunk@28761 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-07-03 18:45:14 +02:00
|
|
|
if ( ! $post || empty( $_GET['message'] ) )
|
2012-09-25 10:39:26 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
jQuery(document).ready(function($){
|
|
|
|
$.get("<?php echo admin_url( 'admin-ajax.php?action=oembed-cache&post=' . $post->ID, 'relative' ); ?>");
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-05-22 19:39:28 +02:00
|
|
|
* Registers an embed handler.
|
|
|
|
*
|
|
|
|
* Do not use this function directly, use wp_embed_register_handler() instead.
|
|
|
|
*
|
2012-09-25 10:39:26 +02:00
|
|
|
* This function should probably also only be used for sites that do not support oEmbed.
|
|
|
|
*
|
|
|
|
* @param string $id An internal ID/name for the handler. Needs to be unique.
|
|
|
|
* @param string $regex The regex that will be used to see if this handler should be used for a URL.
|
2015-05-22 07:15:26 +02:00
|
|
|
* @param callable $callback The callback function that will be called if the regex is matched.
|
2012-09-25 10:39:26 +02:00
|
|
|
* @param int $priority Optional. Used to specify the order in which the registered handlers will be tested (default: 10). Lower numbers correspond with earlier testing, and handlers with the same priority are tested in the order in which they were added to the action.
|
|
|
|
*/
|
2014-05-19 07:47:14 +02:00
|
|
|
public function register_handler( $id, $regex, $callback, $priority = 10 ) {
|
2012-09-25 10:39:26 +02:00
|
|
|
$this->handlers[$priority][$id] = array(
|
|
|
|
'regex' => $regex,
|
|
|
|
'callback' => $callback,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-05-22 19:39:28 +02:00
|
|
|
* Unregisters a previously-registered embed handler.
|
|
|
|
*
|
|
|
|
* Do not use this function directly, use wp_embed_unregister_handler() instead.
|
2012-09-25 10:39:26 +02:00
|
|
|
*
|
|
|
|
* @param string $id The handler ID that should be removed.
|
|
|
|
* @param int $priority Optional. The priority of the handler to be removed (default: 10).
|
|
|
|
*/
|
2014-05-19 07:47:14 +02:00
|
|
|
public function unregister_handler( $id, $priority = 10 ) {
|
2015-05-22 07:47:25 +02:00
|
|
|
unset( $this->handlers[ $priority ][ $id ] );
|
2012-09-25 10:39:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-05-22 19:39:28 +02:00
|
|
|
* The do_shortcode() callback function.
|
2012-09-25 10:39:26 +02:00
|
|
|
*
|
2016-05-22 19:39:28 +02:00
|
|
|
* Attempts to convert a URL into embed HTML. Starts by checking the URL against the regex of
|
|
|
|
* the registered embed handlers. If none of the regex matches and it's enabled, then the URL
|
|
|
|
* will be given to the WP_oEmbed class.
|
2012-09-25 10:39:26 +02:00
|
|
|
*
|
2014-01-07 17:07:12 +01:00
|
|
|
* @param array $attr {
|
|
|
|
* Shortcode attributes. Optional.
|
|
|
|
*
|
|
|
|
* @type int $width Width of the embed in pixels.
|
|
|
|
* @type int $height Height of the embed in pixels.
|
|
|
|
* }
|
2012-09-25 10:39:26 +02:00
|
|
|
* @param string $url The URL attempting to be embedded.
|
2014-12-20 21:56:22 +01:00
|
|
|
* @return string|false The embed HTML on success, otherwise the original URL.
|
|
|
|
* `->maybe_make_link()` can return false on failure.
|
2012-09-25 10:39:26 +02:00
|
|
|
*/
|
2014-05-19 07:47:14 +02:00
|
|
|
public function shortcode( $attr, $url = '' ) {
|
2012-09-25 10:39:26 +02:00
|
|
|
$post = get_post();
|
|
|
|
|
2014-05-23 20:06:13 +02:00
|
|
|
if ( empty( $url ) && ! empty( $attr['src'] ) ) {
|
|
|
|
$url = $attr['src'];
|
|
|
|
}
|
|
|
|
|
2015-04-30 23:40:25 +02:00
|
|
|
$this->last_url = $url;
|
2015-03-05 07:00:26 +01:00
|
|
|
|
2015-04-30 23:40:25 +02:00
|
|
|
if ( empty( $url ) ) {
|
|
|
|
$this->last_attr = $attr;
|
2012-09-25 10:39:26 +02:00
|
|
|
return '';
|
2015-04-30 23:40:25 +02:00
|
|
|
}
|
2012-09-25 10:39:26 +02:00
|
|
|
|
|
|
|
$rawattr = $attr;
|
2014-06-30 13:16:15 +02:00
|
|
|
$attr = wp_parse_args( $attr, wp_embed_defaults( $url ) );
|
2012-09-25 10:39:26 +02:00
|
|
|
|
2015-04-30 23:40:25 +02:00
|
|
|
$this->last_attr = $attr;
|
|
|
|
|
2012-09-25 10:39:26 +02:00
|
|
|
// kses converts & into & and we need to undo this
|
2014-09-29 15:28:16 +02:00
|
|
|
// See https://core.trac.wordpress.org/ticket/11311
|
2012-09-25 10:39:26 +02:00
|
|
|
$url = str_replace( '&', '&', $url );
|
|
|
|
|
|
|
|
// Look for known internal handlers
|
|
|
|
ksort( $this->handlers );
|
|
|
|
foreach ( $this->handlers as $priority => $handlers ) {
|
|
|
|
foreach ( $handlers as $id => $handler ) {
|
|
|
|
if ( preg_match( $handler['regex'], $url, $matches ) && is_callable( $handler['callback'] ) ) {
|
|
|
|
if ( false !== $return = call_user_func( $handler['callback'], $matches, $attr, $url, $rawattr ) )
|
2013-10-08 06:43:10 +02:00
|
|
|
/**
|
2016-05-22 20:15:28 +02:00
|
|
|
* Filters the returned embed handler.
|
2013-10-08 06:43:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.9.0
|
|
|
|
*
|
2014-01-07 17:07:12 +01:00
|
|
|
* @see WP_Embed::shortcode()
|
|
|
|
*
|
2013-10-08 06:43:10 +02:00
|
|
|
* @param mixed $return The shortcode callback function to call.
|
|
|
|
* @param string $url The attempted embed URL.
|
|
|
|
* @param array $attr An array of shortcode attributes.
|
|
|
|
*/
|
2012-09-25 10:39:26 +02:00
|
|
|
return apply_filters( 'embed_handler_html', $return, $url, $attr );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$post_ID = ( ! empty( $post->ID ) ) ? $post->ID : null;
|
|
|
|
if ( ! empty( $this->post_ID ) ) // Potentially set by WP_Embed::cache_oembed()
|
|
|
|
$post_ID = $this->post_ID;
|
|
|
|
|
|
|
|
// Unknown URL format. Let oEmbed have a go.
|
|
|
|
if ( $post_ID ) {
|
|
|
|
|
|
|
|
// Check for a cached result (stored in the post meta)
|
Improve oEmbed caching. Introduces the concept of a TTL for oEmbed caches and a filter for `oembed_ttl`.
We will no longer replace previously valid oEmbed responses with an `{{unknown}}` cache value. When this happens due to reaching a rate limit or a service going down, it is data loss, and is not acceptable. This means that oEmbed caches for a post are no longer deleted indiscriminately every time that post is saved.
oEmbed continues to be cached in post meta, with the addition of a separate meta key containing the timestamp of the last retrieval, which is used to avoid re-requesting a recently cached oEmbed response. By default, we consider a valued cached in the past day to be fresh. This can greatly reduce the number of outbound requests, especially in cases where a post containing multiple embeds is saved frequently.
The TTL used to determine whether or not to request a response can be filtered using `oembed_ttl`, thus allowing for the possibility of respecting the optional oEmbed response parameter `cache_age` or altering the period of time a cached value is considered to be fresh.
Now that oEmbeds are previewed in the visual editor as well as the media modal, oEmbed caches are often populated before a post is saved or published. By pre-populating and avoiding having to re-request that response, we also greatly reduce the chances of a stampede happening when a published post is visible before oEmbed caching is complete.
As it previously stood, a stampede was extremely likely to happen, as the AJAX caching was only triggered when `$_GET['message']` was 1. The published message is 6. We now trigger the caching every time `$_GET['message']` is present on the edit screen, as we are able to avoid triggering so many HTTP requests overall.
props markjaquith. fixes #14759. see #17210.
Built from https://develop.svn.wordpress.org/trunk@28972
git-svn-id: http://core.svn.wordpress.org/trunk@28761 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-07-03 18:45:14 +02:00
|
|
|
$key_suffix = md5( $url . serialize( $attr ) );
|
|
|
|
$cachekey = '_oembed_' . $key_suffix;
|
|
|
|
$cachekey_time = '_oembed_time_' . $key_suffix;
|
|
|
|
|
|
|
|
/**
|
2016-05-22 20:15:28 +02:00
|
|
|
* Filters the oEmbed TTL value (time to live).
|
Improve oEmbed caching. Introduces the concept of a TTL for oEmbed caches and a filter for `oembed_ttl`.
We will no longer replace previously valid oEmbed responses with an `{{unknown}}` cache value. When this happens due to reaching a rate limit or a service going down, it is data loss, and is not acceptable. This means that oEmbed caches for a post are no longer deleted indiscriminately every time that post is saved.
oEmbed continues to be cached in post meta, with the addition of a separate meta key containing the timestamp of the last retrieval, which is used to avoid re-requesting a recently cached oEmbed response. By default, we consider a valued cached in the past day to be fresh. This can greatly reduce the number of outbound requests, especially in cases where a post containing multiple embeds is saved frequently.
The TTL used to determine whether or not to request a response can be filtered using `oembed_ttl`, thus allowing for the possibility of respecting the optional oEmbed response parameter `cache_age` or altering the period of time a cached value is considered to be fresh.
Now that oEmbeds are previewed in the visual editor as well as the media modal, oEmbed caches are often populated before a post is saved or published. By pre-populating and avoiding having to re-request that response, we also greatly reduce the chances of a stampede happening when a published post is visible before oEmbed caching is complete.
As it previously stood, a stampede was extremely likely to happen, as the AJAX caching was only triggered when `$_GET['message']` was 1. The published message is 6. We now trigger the caching every time `$_GET['message']` is present on the edit screen, as we are able to avoid triggering so many HTTP requests overall.
props markjaquith. fixes #14759. see #17210.
Built from https://develop.svn.wordpress.org/trunk@28972
git-svn-id: http://core.svn.wordpress.org/trunk@28761 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-07-03 18:45:14 +02:00
|
|
|
*
|
|
|
|
* @since 4.0.0
|
|
|
|
*
|
2014-07-14 02:44:14 +02:00
|
|
|
* @param int $time Time to live (in seconds).
|
Improve oEmbed caching. Introduces the concept of a TTL for oEmbed caches and a filter for `oembed_ttl`.
We will no longer replace previously valid oEmbed responses with an `{{unknown}}` cache value. When this happens due to reaching a rate limit or a service going down, it is data loss, and is not acceptable. This means that oEmbed caches for a post are no longer deleted indiscriminately every time that post is saved.
oEmbed continues to be cached in post meta, with the addition of a separate meta key containing the timestamp of the last retrieval, which is used to avoid re-requesting a recently cached oEmbed response. By default, we consider a valued cached in the past day to be fresh. This can greatly reduce the number of outbound requests, especially in cases where a post containing multiple embeds is saved frequently.
The TTL used to determine whether or not to request a response can be filtered using `oembed_ttl`, thus allowing for the possibility of respecting the optional oEmbed response parameter `cache_age` or altering the period of time a cached value is considered to be fresh.
Now that oEmbeds are previewed in the visual editor as well as the media modal, oEmbed caches are often populated before a post is saved or published. By pre-populating and avoiding having to re-request that response, we also greatly reduce the chances of a stampede happening when a published post is visible before oEmbed caching is complete.
As it previously stood, a stampede was extremely likely to happen, as the AJAX caching was only triggered when `$_GET['message']` was 1. The published message is 6. We now trigger the caching every time `$_GET['message']` is present on the edit screen, as we are able to avoid triggering so many HTTP requests overall.
props markjaquith. fixes #14759. see #17210.
Built from https://develop.svn.wordpress.org/trunk@28972
git-svn-id: http://core.svn.wordpress.org/trunk@28761 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-07-03 18:45:14 +02:00
|
|
|
* @param string $url The attempted embed URL.
|
|
|
|
* @param array $attr An array of shortcode attributes.
|
|
|
|
* @param int $post_ID Post ID.
|
|
|
|
*/
|
|
|
|
$ttl = apply_filters( 'oembed_ttl', DAY_IN_SECONDS, $url, $attr, $post_ID );
|
|
|
|
|
|
|
|
$cache = get_post_meta( $post_ID, $cachekey, true );
|
|
|
|
$cache_time = get_post_meta( $post_ID, $cachekey_time, true );
|
2012-09-25 10:39:26 +02:00
|
|
|
|
Improve oEmbed caching. Introduces the concept of a TTL for oEmbed caches and a filter for `oembed_ttl`.
We will no longer replace previously valid oEmbed responses with an `{{unknown}}` cache value. When this happens due to reaching a rate limit or a service going down, it is data loss, and is not acceptable. This means that oEmbed caches for a post are no longer deleted indiscriminately every time that post is saved.
oEmbed continues to be cached in post meta, with the addition of a separate meta key containing the timestamp of the last retrieval, which is used to avoid re-requesting a recently cached oEmbed response. By default, we consider a valued cached in the past day to be fresh. This can greatly reduce the number of outbound requests, especially in cases where a post containing multiple embeds is saved frequently.
The TTL used to determine whether or not to request a response can be filtered using `oembed_ttl`, thus allowing for the possibility of respecting the optional oEmbed response parameter `cache_age` or altering the period of time a cached value is considered to be fresh.
Now that oEmbeds are previewed in the visual editor as well as the media modal, oEmbed caches are often populated before a post is saved or published. By pre-populating and avoiding having to re-request that response, we also greatly reduce the chances of a stampede happening when a published post is visible before oEmbed caching is complete.
As it previously stood, a stampede was extremely likely to happen, as the AJAX caching was only triggered when `$_GET['message']` was 1. The published message is 6. We now trigger the caching every time `$_GET['message']` is present on the edit screen, as we are able to avoid triggering so many HTTP requests overall.
props markjaquith. fixes #14759. see #17210.
Built from https://develop.svn.wordpress.org/trunk@28972
git-svn-id: http://core.svn.wordpress.org/trunk@28761 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-07-03 18:45:14 +02:00
|
|
|
if ( ! $cache_time ) {
|
|
|
|
$cache_time = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$cached_recently = ( time() - $cache_time ) < $ttl;
|
|
|
|
|
|
|
|
if ( $this->usecache || $cached_recently ) {
|
|
|
|
// Failures are cached. Serve one if we're using the cache.
|
2012-09-25 10:39:26 +02:00
|
|
|
if ( '{{unknown}}' === $cache )
|
|
|
|
return $this->maybe_make_link( $url );
|
|
|
|
|
Improve oEmbed caching. Introduces the concept of a TTL for oEmbed caches and a filter for `oembed_ttl`.
We will no longer replace previously valid oEmbed responses with an `{{unknown}}` cache value. When this happens due to reaching a rate limit or a service going down, it is data loss, and is not acceptable. This means that oEmbed caches for a post are no longer deleted indiscriminately every time that post is saved.
oEmbed continues to be cached in post meta, with the addition of a separate meta key containing the timestamp of the last retrieval, which is used to avoid re-requesting a recently cached oEmbed response. By default, we consider a valued cached in the past day to be fresh. This can greatly reduce the number of outbound requests, especially in cases where a post containing multiple embeds is saved frequently.
The TTL used to determine whether or not to request a response can be filtered using `oembed_ttl`, thus allowing for the possibility of respecting the optional oEmbed response parameter `cache_age` or altering the period of time a cached value is considered to be fresh.
Now that oEmbeds are previewed in the visual editor as well as the media modal, oEmbed caches are often populated before a post is saved or published. By pre-populating and avoiding having to re-request that response, we also greatly reduce the chances of a stampede happening when a published post is visible before oEmbed caching is complete.
As it previously stood, a stampede was extremely likely to happen, as the AJAX caching was only triggered when `$_GET['message']` was 1. The published message is 6. We now trigger the caching every time `$_GET['message']` is present on the edit screen, as we are able to avoid triggering so many HTTP requests overall.
props markjaquith. fixes #14759. see #17210.
Built from https://develop.svn.wordpress.org/trunk@28972
git-svn-id: http://core.svn.wordpress.org/trunk@28761 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-07-03 18:45:14 +02:00
|
|
|
if ( ! empty( $cache ) ) {
|
2013-10-08 06:43:10 +02:00
|
|
|
/**
|
2016-05-22 20:15:28 +02:00
|
|
|
* Filters the cached oEmbed HTML.
|
2013-10-08 06:43:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.9.0
|
|
|
|
*
|
2014-01-07 17:07:12 +01:00
|
|
|
* @see WP_Embed::shortcode()
|
|
|
|
*
|
2013-10-08 06:43:10 +02:00
|
|
|
* @param mixed $cache The cached HTML result, stored in post meta.
|
|
|
|
* @param string $url The attempted embed URL.
|
|
|
|
* @param array $attr An array of shortcode attributes.
|
|
|
|
* @param int $post_ID Post ID.
|
|
|
|
*/
|
2012-09-25 10:39:26 +02:00
|
|
|
return apply_filters( 'embed_oembed_html', $cache, $url, $attr, $post_ID );
|
Improve oEmbed caching. Introduces the concept of a TTL for oEmbed caches and a filter for `oembed_ttl`.
We will no longer replace previously valid oEmbed responses with an `{{unknown}}` cache value. When this happens due to reaching a rate limit or a service going down, it is data loss, and is not acceptable. This means that oEmbed caches for a post are no longer deleted indiscriminately every time that post is saved.
oEmbed continues to be cached in post meta, with the addition of a separate meta key containing the timestamp of the last retrieval, which is used to avoid re-requesting a recently cached oEmbed response. By default, we consider a valued cached in the past day to be fresh. This can greatly reduce the number of outbound requests, especially in cases where a post containing multiple embeds is saved frequently.
The TTL used to determine whether or not to request a response can be filtered using `oembed_ttl`, thus allowing for the possibility of respecting the optional oEmbed response parameter `cache_age` or altering the period of time a cached value is considered to be fresh.
Now that oEmbeds are previewed in the visual editor as well as the media modal, oEmbed caches are often populated before a post is saved or published. By pre-populating and avoiding having to re-request that response, we also greatly reduce the chances of a stampede happening when a published post is visible before oEmbed caching is complete.
As it previously stood, a stampede was extremely likely to happen, as the AJAX caching was only triggered when `$_GET['message']` was 1. The published message is 6. We now trigger the caching every time `$_GET['message']` is present on the edit screen, as we are able to avoid triggering so many HTTP requests overall.
props markjaquith. fixes #14759. see #17210.
Built from https://develop.svn.wordpress.org/trunk@28972
git-svn-id: http://core.svn.wordpress.org/trunk@28761 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-07-03 18:45:14 +02:00
|
|
|
}
|
2012-09-25 10:39:26 +02:00
|
|
|
}
|
|
|
|
|
2013-10-08 06:43:10 +02:00
|
|
|
/**
|
2016-05-22 20:15:28 +02:00
|
|
|
* Filters whether to inspect the given URL for discoverable link tags.
|
2013-10-08 06:43:10 +02:00
|
|
|
*
|
2014-04-12 02:01:15 +02:00
|
|
|
* @since 2.9.0
|
Embeds: Add oEmbed provider support.
For the past 6 years, WordPress has operated as an oEmbed consumer, allowing users to easily embed content from other sites. By adding oEmbed provider support, this allows any oEmbed consumer to embed posts from WordPress sites.
In addition to creating an oEmbed provider, WordPress' oEmbed consumer code has been enhanced to work with any site that provides oEmbed data (as long as it matches some strict security rules), and provides a preview from within the post editor.
For security, embeds appear within a sandboxed iframe - the iframe content is a template that can be styled or replaced entirely by the theme on the provider site.
Props swissspidy, pento, melchoyce, netweb, pfefferle, johnbillion, extendwings, davidbinda, danielbachhuber, SergeyBiryukov, afercia
Fixes #32522.
Built from https://develop.svn.wordpress.org/trunk@34903
git-svn-id: http://core.svn.wordpress.org/trunk@34868 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-10-07 12:36:25 +02:00
|
|
|
* @since 4.4.0 The default value changed to true.
|
2014-04-12 02:01:15 +02:00
|
|
|
*
|
2013-10-08 06:43:10 +02:00
|
|
|
* @see WP_oEmbed::discover()
|
|
|
|
*
|
Embeds: Add oEmbed provider support.
For the past 6 years, WordPress has operated as an oEmbed consumer, allowing users to easily embed content from other sites. By adding oEmbed provider support, this allows any oEmbed consumer to embed posts from WordPress sites.
In addition to creating an oEmbed provider, WordPress' oEmbed consumer code has been enhanced to work with any site that provides oEmbed data (as long as it matches some strict security rules), and provides a preview from within the post editor.
For security, embeds appear within a sandboxed iframe - the iframe content is a template that can be styled or replaced entirely by the theme on the provider site.
Props swissspidy, pento, melchoyce, netweb, pfefferle, johnbillion, extendwings, davidbinda, danielbachhuber, SergeyBiryukov, afercia
Fixes #32522.
Built from https://develop.svn.wordpress.org/trunk@34903
git-svn-id: http://core.svn.wordpress.org/trunk@34868 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-10-07 12:36:25 +02:00
|
|
|
* @param bool $enable Whether to enable `<link>` tag discovery. Default true.
|
2013-10-08 06:43:10 +02:00
|
|
|
*/
|
Embeds: Add oEmbed provider support.
For the past 6 years, WordPress has operated as an oEmbed consumer, allowing users to easily embed content from other sites. By adding oEmbed provider support, this allows any oEmbed consumer to embed posts from WordPress sites.
In addition to creating an oEmbed provider, WordPress' oEmbed consumer code has been enhanced to work with any site that provides oEmbed data (as long as it matches some strict security rules), and provides a preview from within the post editor.
For security, embeds appear within a sandboxed iframe - the iframe content is a template that can be styled or replaced entirely by the theme on the provider site.
Props swissspidy, pento, melchoyce, netweb, pfefferle, johnbillion, extendwings, davidbinda, danielbachhuber, SergeyBiryukov, afercia
Fixes #32522.
Built from https://develop.svn.wordpress.org/trunk@34903
git-svn-id: http://core.svn.wordpress.org/trunk@34868 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-10-07 12:36:25 +02:00
|
|
|
$attr['discover'] = ( apply_filters( 'embed_oembed_discover', true ) );
|
2013-10-08 06:43:10 +02:00
|
|
|
|
2012-09-25 10:39:26 +02:00
|
|
|
// Use oEmbed to get the HTML
|
|
|
|
$html = wp_oembed_get( $url, $attr );
|
|
|
|
|
Improve oEmbed caching. Introduces the concept of a TTL for oEmbed caches and a filter for `oembed_ttl`.
We will no longer replace previously valid oEmbed responses with an `{{unknown}}` cache value. When this happens due to reaching a rate limit or a service going down, it is data loss, and is not acceptable. This means that oEmbed caches for a post are no longer deleted indiscriminately every time that post is saved.
oEmbed continues to be cached in post meta, with the addition of a separate meta key containing the timestamp of the last retrieval, which is used to avoid re-requesting a recently cached oEmbed response. By default, we consider a valued cached in the past day to be fresh. This can greatly reduce the number of outbound requests, especially in cases where a post containing multiple embeds is saved frequently.
The TTL used to determine whether or not to request a response can be filtered using `oembed_ttl`, thus allowing for the possibility of respecting the optional oEmbed response parameter `cache_age` or altering the period of time a cached value is considered to be fresh.
Now that oEmbeds are previewed in the visual editor as well as the media modal, oEmbed caches are often populated before a post is saved or published. By pre-populating and avoiding having to re-request that response, we also greatly reduce the chances of a stampede happening when a published post is visible before oEmbed caching is complete.
As it previously stood, a stampede was extremely likely to happen, as the AJAX caching was only triggered when `$_GET['message']` was 1. The published message is 6. We now trigger the caching every time `$_GET['message']` is present on the edit screen, as we are able to avoid triggering so many HTTP requests overall.
props markjaquith. fixes #14759. see #17210.
Built from https://develop.svn.wordpress.org/trunk@28972
git-svn-id: http://core.svn.wordpress.org/trunk@28761 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-07-03 18:45:14 +02:00
|
|
|
// Maybe cache the result
|
|
|
|
if ( $html ) {
|
|
|
|
update_post_meta( $post_ID, $cachekey, $html );
|
|
|
|
update_post_meta( $post_ID, $cachekey_time, time() );
|
|
|
|
} elseif ( ! $cache ) {
|
|
|
|
update_post_meta( $post_ID, $cachekey, '{{unknown}}' );
|
|
|
|
}
|
2012-09-25 10:39:26 +02:00
|
|
|
|
|
|
|
// If there was a result, return it
|
2013-10-08 06:43:10 +02:00
|
|
|
if ( $html ) {
|
2013-10-25 00:59:20 +02:00
|
|
|
/** This filter is documented in wp-includes/class-wp-embed.php */
|
2012-09-25 10:39:26 +02:00
|
|
|
return apply_filters( 'embed_oembed_html', $html, $url, $attr, $post_ID );
|
2013-10-08 06:43:10 +02:00
|
|
|
}
|
2012-09-25 10:39:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Still unknown
|
|
|
|
return $this->maybe_make_link( $url );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
Improve oEmbed caching. Introduces the concept of a TTL for oEmbed caches and a filter for `oembed_ttl`.
We will no longer replace previously valid oEmbed responses with an `{{unknown}}` cache value. When this happens due to reaching a rate limit or a service going down, it is data loss, and is not acceptable. This means that oEmbed caches for a post are no longer deleted indiscriminately every time that post is saved.
oEmbed continues to be cached in post meta, with the addition of a separate meta key containing the timestamp of the last retrieval, which is used to avoid re-requesting a recently cached oEmbed response. By default, we consider a valued cached in the past day to be fresh. This can greatly reduce the number of outbound requests, especially in cases where a post containing multiple embeds is saved frequently.
The TTL used to determine whether or not to request a response can be filtered using `oembed_ttl`, thus allowing for the possibility of respecting the optional oEmbed response parameter `cache_age` or altering the period of time a cached value is considered to be fresh.
Now that oEmbeds are previewed in the visual editor as well as the media modal, oEmbed caches are often populated before a post is saved or published. By pre-populating and avoiding having to re-request that response, we also greatly reduce the chances of a stampede happening when a published post is visible before oEmbed caching is complete.
As it previously stood, a stampede was extremely likely to happen, as the AJAX caching was only triggered when `$_GET['message']` was 1. The published message is 6. We now trigger the caching every time `$_GET['message']` is present on the edit screen, as we are able to avoid triggering so many HTTP requests overall.
props markjaquith. fixes #14759. see #17210.
Built from https://develop.svn.wordpress.org/trunk@28972
git-svn-id: http://core.svn.wordpress.org/trunk@28761 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-07-03 18:45:14 +02:00
|
|
|
* Delete all oEmbed caches. Unused by core as of 4.0.0.
|
2012-09-25 10:39:26 +02:00
|
|
|
*
|
|
|
|
* @param int $post_ID Post ID to delete the caches for.
|
|
|
|
*/
|
2014-05-19 07:47:14 +02:00
|
|
|
public function delete_oembed_caches( $post_ID ) {
|
2012-09-25 10:39:26 +02:00
|
|
|
$post_metas = get_post_custom_keys( $post_ID );
|
|
|
|
if ( empty($post_metas) )
|
|
|
|
return;
|
|
|
|
|
2015-08-25 22:28:22 +02:00
|
|
|
foreach ( $post_metas as $post_meta_key ) {
|
2012-09-25 10:39:26 +02:00
|
|
|
if ( '_oembed_' == substr( $post_meta_key, 0, 8 ) )
|
|
|
|
delete_post_meta( $post_ID, $post_meta_key );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Triggers a caching of all oEmbed results.
|
|
|
|
*
|
|
|
|
* @param int $post_ID Post ID to do the caching for.
|
|
|
|
*/
|
2014-05-19 07:47:14 +02:00
|
|
|
public function cache_oembed( $post_ID ) {
|
2012-09-25 10:39:26 +02:00
|
|
|
$post = get_post( $post_ID );
|
|
|
|
|
2014-08-20 21:32:16 +02:00
|
|
|
$post_types = get_post_types( array( 'show_ui' => true ) );
|
2013-10-08 06:43:10 +02:00
|
|
|
/**
|
2016-05-22 20:15:28 +02:00
|
|
|
* Filters the array of post types to cache oEmbed results for.
|
2013-10-08 06:43:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.9.0
|
|
|
|
*
|
2014-08-20 21:32:16 +02:00
|
|
|
* @param array $post_types Array of post types to cache oEmbed results for. Defaults to post types with `show_ui` set to true.
|
2013-10-08 06:43:10 +02:00
|
|
|
*/
|
2014-08-20 21:32:16 +02:00
|
|
|
if ( empty( $post->ID ) || ! in_array( $post->post_type, apply_filters( 'embed_cache_oembed_types', $post_types ) ) ){
|
2012-09-25 10:39:26 +02:00
|
|
|
return;
|
2014-08-20 21:32:16 +02:00
|
|
|
}
|
2012-09-25 10:39:26 +02:00
|
|
|
|
|
|
|
// Trigger a caching
|
2014-08-20 21:32:16 +02:00
|
|
|
if ( ! empty( $post->post_content ) ) {
|
2012-09-25 10:39:26 +02:00
|
|
|
$this->post_ID = $post->ID;
|
|
|
|
$this->usecache = false;
|
|
|
|
|
|
|
|
$content = $this->run_shortcode( $post->post_content );
|
|
|
|
$this->autoembed( $content );
|
|
|
|
|
|
|
|
$this->usecache = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-05-22 19:39:28 +02:00
|
|
|
* Passes any unlinked URLs that are on their own line to WP_Embed::shortcode() for potential embedding.
|
2012-09-25 10:39:26 +02:00
|
|
|
*
|
2016-05-22 19:39:28 +02:00
|
|
|
* @see WP_Embed::autoembed_callback()
|
2012-09-25 10:39:26 +02:00
|
|
|
*
|
|
|
|
* @param string $content The content to be searched.
|
|
|
|
* @return string Potentially modified $content.
|
|
|
|
*/
|
2014-05-19 07:47:14 +02:00
|
|
|
public function autoembed( $content ) {
|
2015-07-29 01:03:24 +02:00
|
|
|
// Replace line breaks from all HTML elements with placeholders.
|
|
|
|
$content = wp_replace_in_html_tags( $content, array( "\n" => '<!-- wp-line-break -->' ) );
|
2015-07-22 07:15:25 +02:00
|
|
|
|
2016-06-02 23:24:30 +02:00
|
|
|
if ( preg_match( '#(^|\s|>)https?://#i', $content ) ) {
|
|
|
|
// Find URLs on their own line.
|
|
|
|
$content = preg_replace_callback( '|^(\s*)(https?://[^\s<>"]+)(\s*)$|im', array( $this, 'autoembed_callback' ), $content );
|
|
|
|
// Find URLs in their own paragraph.
|
|
|
|
$content = preg_replace_callback( '|(<p(?: [^>]*)?>\s*)(https?://[^\s<>"]+)(\s*<\/p>)|i', array( $this, 'autoembed_callback' ), $content );
|
|
|
|
}
|
2015-07-29 01:03:24 +02:00
|
|
|
|
|
|
|
// Put the line breaks back.
|
|
|
|
return str_replace( '<!-- wp-line-break -->', "\n", $content );
|
2012-09-25 10:39:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-05-22 19:39:28 +02:00
|
|
|
* Callback function for WP_Embed::autoembed().
|
2012-09-25 10:39:26 +02:00
|
|
|
*
|
|
|
|
* @param array $match A regex match array.
|
|
|
|
* @return string The embed HTML on success, otherwise the original URL.
|
|
|
|
*/
|
2014-05-19 07:47:14 +02:00
|
|
|
public function autoembed_callback( $match ) {
|
2012-09-25 10:39:26 +02:00
|
|
|
$oldval = $this->linkifunknown;
|
|
|
|
$this->linkifunknown = false;
|
2015-01-07 08:51:22 +01:00
|
|
|
$return = $this->shortcode( array(), $match[2] );
|
2012-09-25 10:39:26 +02:00
|
|
|
$this->linkifunknown = $oldval;
|
|
|
|
|
2015-01-07 08:51:22 +01:00
|
|
|
return $match[1] . $return . $match[3];
|
2012-09-25 10:39:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Conditionally makes a hyperlink based on an internal class variable.
|
|
|
|
*
|
|
|
|
* @param string $url URL to potentially be linked.
|
2014-12-01 02:34:24 +01:00
|
|
|
* @return false|string Linked URL or the original URL. False if 'return_false_on_fail' is true.
|
2012-09-25 10:39:26 +02:00
|
|
|
*/
|
2014-05-19 07:47:14 +02:00
|
|
|
public function maybe_make_link( $url ) {
|
2014-06-30 07:49:16 +02:00
|
|
|
if ( $this->return_false_on_fail ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-22 17:37:54 +01:00
|
|
|
$output = ( $this->linkifunknown ) ? '<a href="' . esc_url($url) . '">' . esc_html($url) . '</a>' : $url;
|
2013-10-08 06:43:10 +02:00
|
|
|
|
|
|
|
/**
|
2016-05-22 20:15:28 +02:00
|
|
|
* Filters the returned, maybe-linked embed URL.
|
2013-10-08 06:43:10 +02:00
|
|
|
*
|
|
|
|
* @since 2.9.0
|
|
|
|
*
|
|
|
|
* @param string $output The linked or original URL.
|
|
|
|
* @param string $url The original URL.
|
|
|
|
*/
|
2012-09-25 10:39:26 +02:00
|
|
|
return apply_filters( 'embed_maybe_make_link', $output, $url );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$GLOBALS['wp_embed'] = new WP_Embed();
|