css
2 weeks ago
images
1 year ago
img
4 weeks ago
js
6 months ago
archiveorg-book.php
6 months ago
archiveorg.php
6 months ago
archives.php
2 weeks ago
bandcamp.php
6 months ago
brightcove.php
5 months ago
cartodb.php
6 months ago
class.filter-embedded-html-objects.php
6 months ago
codepen.php
6 months ago
crowdsignal.php
5 months ago
dailymotion.php
6 months ago
descript.php
6 months ago
facebook.php
6 months ago
flatio.php
6 months ago
flickr.php
5 months ago
getty.php
6 months ago
gist.php
6 months ago
googleapps.php
6 months ago
googlemaps.php
3 weeks ago
googleplus.php
6 months ago
gravatar.php
6 months ago
houzz.php
6 months ago
inline-pdfs.php
6 months ago
instagram.php
6 months ago
kickstarter.php
6 months ago
mailchimp.php
5 months ago
medium.php
6 months ago
mixcloud.php
6 months ago
others.php
6 months ago
pinterest.php
6 months ago
presentations.php
6 months ago
quiz.php
6 months ago
recipe.php
6 months ago
scribd.php
6 months ago
shortcode-utils.php
6 months ago
sitemap.php
6 months ago
slideshare.php
6 months ago
slideshow.php
4 weeks ago
smartframe.php
6 months ago
soundcloud.php
6 months ago
spotify.php
6 months ago
ted.php
6 months ago
tweet.php
6 months ago
twitchtv.php
6 months ago
twitter-timeline.php
6 months ago
twitter.php
6 months ago
unavailable.php
6 months ago
untappd-menu.php
6 months ago
upcoming-events.php
6 months ago
ustream.php
6 months ago
videopress.php
6 months ago
vimeo.php
1 week ago
vine.php
6 months ago
vr.php
1 week ago
wufoo.php
6 months ago
youtube.php
3 months ago
twitter.php
87 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Twitter/X oEmbed proxy functionality. |
| 4 | * |
| 5 | * This file handles proxying Twitter/X oEmbed requests through Automattic's infrastructure |
| 6 | * to minimize issues with rate limiting with 404 responses from Twitter/X. |
| 7 | * |
| 8 | * Unlike tweet.php which handles the [tweet] shortcode, this file provides core oEmbed support |
| 9 | * and is force-loaded via module-extras.php regardless of module status. |
| 10 | * |
| 11 | * @package automattic/jetpack |
| 12 | * @since 14.5 |
| 13 | */ |
| 14 | |
| 15 | use Automattic\Jetpack\Connection\Client; |
| 16 | use Automattic\Jetpack\Constants; |
| 17 | use Automattic\Jetpack\Status; |
| 18 | |
| 19 | if ( ! defined( 'ABSPATH' ) ) { |
| 20 | exit( 0 ); |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * Update Twitter providers to use Automattic's Twitter/X oEmbed proxy. |
| 25 | * |
| 26 | * See paFLeq-3QD-p2. |
| 27 | * |
| 28 | * @param string $provider The URL of the oEmbed provider. |
| 29 | * |
| 30 | * @return string The modified URL of the oEmbed provider. |
| 31 | */ |
| 32 | function jetpack_proxy_twitter_oembed_provider( $provider ) { |
| 33 | if ( ! wp_startswith( $provider, 'https://publish.twitter.com/oembed' ) ) { |
| 34 | return $provider; |
| 35 | } |
| 36 | |
| 37 | // Allow other plugins to override the proxy URL. This constant should be set on the WordPress.com side |
| 38 | // to handle proxying after we're authenticated the request with the Jetpack token. |
| 39 | $oembed_proxy_url = Constants::is_defined( 'JETPACK__TWITTER_OEMBED_PROXY_URL' ) |
| 40 | ? Constants::get_constant( 'JETPACK__TWITTER_OEMBED_PROXY_URL' ) |
| 41 | : ''; |
| 42 | |
| 43 | // If we don't have a proxy URL, then we'll try to proxy through the WordPress.com. |
| 44 | // To that end, we need to make sure that we're connected to WP.com and that we're not in offline mode. |
| 45 | if ( empty( $oembed_proxy_url ) ) { |
| 46 | if ( ! Jetpack::is_connection_ready() || ( new Status() )->is_offline_mode() ) { |
| 47 | return $provider; |
| 48 | } |
| 49 | |
| 50 | $oembed_proxy_url = esc_url_raw( |
| 51 | sprintf( |
| 52 | '%s/wpcom/v2/oembed-proxy', |
| 53 | JETPACK__WPCOM_JSON_API_BASE, |
| 54 | Jetpack_Options::get_option( 'id' ) |
| 55 | ) |
| 56 | ); |
| 57 | |
| 58 | add_filter( 'oembed_remote_get_args', 'jetpack_twitter_oembed_remote_get_args', 10, 2 ); |
| 59 | } |
| 60 | |
| 61 | return str_replace( 'https://publish.twitter.com/oembed', $oembed_proxy_url, $provider ); |
| 62 | } |
| 63 | add_filter( 'oembed_fetch_url', 'jetpack_proxy_twitter_oembed_provider', 10 ); |
| 64 | |
| 65 | /** |
| 66 | * Add JP auth headers if we're proxying through WP.com. |
| 67 | * |
| 68 | * @param array $args oEmbed remote get arguments. |
| 69 | * @param string $url URL to be inspected. |
| 70 | */ |
| 71 | function jetpack_twitter_oembed_remote_get_args( $args, $url ) { |
| 72 | if ( ! wp_startswith( $url, Constants::get_constant( 'JETPACK__WPCOM_JSON_API_BASE' ) ) ) { |
| 73 | return $args; |
| 74 | } |
| 75 | |
| 76 | $method = 'GET'; |
| 77 | $signed_request = Client::build_signed_request( |
| 78 | compact( 'url', 'method' ) |
| 79 | ); |
| 80 | |
| 81 | if ( is_wp_error( $signed_request ) ) { |
| 82 | return $args; |
| 83 | } |
| 84 | |
| 85 | return $signed_request['request']; |
| 86 | } |
| 87 |