css
2 years ago
images
2 years ago
img
2 years ago
js
2 years ago
archiveorg-book.php
5 years ago
archiveorg.php
5 years ago
archives.php
5 years ago
bandcamp.php
3 years ago
brightcove.php
5 years ago
cartodb.php
5 years ago
class.filter-embedded-html-objects.php
2 years ago
codepen.php
5 years ago
crowdsignal.php
2 years ago
dailymotion.php
3 years ago
descript.php
4 years ago
facebook.php
2 years ago
flatio.php
5 years ago
flickr.php
2 years ago
getty.php
2 years ago
gist.php
3 years ago
googleapps.php
2 years ago
googlemaps.php
2 years ago
googleplus.php
5 years ago
gravatar.php
2 years ago
houzz.php
5 years ago
inline-pdfs.php
4 years ago
instagram.php
3 years ago
kickstarter.php
3 years ago
mailchimp.php
3 years ago
medium.php
3 years ago
mixcloud.php
2 years ago
others.php
2 years ago
pinterest.php
2 years ago
presentations.php
2 years ago
quiz.php
4 years ago
recipe.php
2 years ago
scribd.php
5 years ago
sitemap.php
5 years ago
slideshare.php
5 years ago
slideshow.php
2 years ago
smartframe.php
3 years ago
soundcloud.php
3 years ago
spotify.php
2 years ago
ted.php
5 years ago
tweet.php
2 years ago
twitchtv.php
5 years ago
twitter-timeline.php
5 years ago
unavailable.php
3 years ago
untappd-menu.php
3 years ago
upcoming-events.php
3 years ago
ustream.php
5 years ago
videopress.php
4 years ago
vimeo.php
2 years ago
vine.php
5 years ago
vr.php
2 years ago
wordads.php
5 years ago
wufoo.php
3 years ago
youtube.php
1 year ago
facebook.php
120 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Facebook embeds |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | define( 'JETPACK_FACEBOOK_EMBED_REGEX', '#^https?://(www.)?facebook\.com/([^/]+)/(posts|photos)/([^/]+)?#' ); |
| 9 | define( 'JETPACK_FACEBOOK_ALTERNATE_EMBED_REGEX', '#^https?://(www.)?facebook\.com/permalink.php\?([^\s]+)#' ); |
| 10 | define( 'JETPACK_FACEBOOK_PHOTO_EMBED_REGEX', '#^https?://(www.)?facebook\.com/photo.php\?([^\s]+)#' ); |
| 11 | define( 'JETPACK_FACEBOOK_PHOTO_ALTERNATE_EMBED_REGEX', '#^https?://(www.)?facebook\.com/([^/]+)/photos/([^/]+)?#' ); |
| 12 | define( 'JETPACK_FACEBOOK_VIDEO_EMBED_REGEX', '#^https?://(www.)?facebook\.com/(?:video.php|watch\/?)\?([^\s]+)#' ); |
| 13 | define( 'JETPACK_FACEBOOK_VIDEO_ALTERNATE_EMBED_REGEX', '#^https?://(www.)?facebook\.com/([^/]+)/videos/([^/]+)?#' ); |
| 14 | |
| 15 | /* |
| 16 | * Example URL: https://www.facebook.com/VenusWilliams/posts/10151647007373076 |
| 17 | */ |
| 18 | wp_embed_register_handler( 'facebook', JETPACK_FACEBOOK_EMBED_REGEX, 'jetpack_facebook_embed_handler' ); |
| 19 | |
| 20 | /* |
| 21 | * Example URL: https://www.facebook.com/permalink.php?id=222622504529111&story_fbid=559431180743788 |
| 22 | */ |
| 23 | wp_embed_register_handler( 'facebook-alternate', JETPACK_FACEBOOK_ALTERNATE_EMBED_REGEX, 'jetpack_facebook_embed_handler' ); |
| 24 | |
| 25 | /* |
| 26 | * Photos are handled on a different endpoint; e.g. https://www.facebook.com/photo.php?fbid=10151609960150073&set=a.398410140072.163165.106666030072&type=1 |
| 27 | */ |
| 28 | wp_embed_register_handler( 'facebook-photo', JETPACK_FACEBOOK_PHOTO_EMBED_REGEX, 'jetpack_facebook_embed_handler' ); |
| 29 | |
| 30 | /* |
| 31 | * Photos (from pages for example) can be at |
| 32 | */ |
| 33 | wp_embed_register_handler( 'facebook-alternate-photo', JETPACK_FACEBOOK_PHOTO_ALTERNATE_EMBED_REGEX, 'jetpack_facebook_embed_handler' ); |
| 34 | |
| 35 | /* |
| 36 | * Videos |
| 37 | * |
| 38 | * Formats: |
| 39 | * https://www.facebook.com/video.php?v=2836814009877992 |
| 40 | * https://www.facebook.com/watch/?v=2836814009877992 |
| 41 | */ |
| 42 | wp_embed_register_handler( 'facebook-video', JETPACK_FACEBOOK_VIDEO_EMBED_REGEX, 'jetpack_facebook_embed_handler' ); |
| 43 | |
| 44 | /* |
| 45 | * Videos https://www.facebook.com/WhiteHouse/videos/10153398464269238/ |
| 46 | */ |
| 47 | wp_embed_register_handler( 'facebook-alternate-video', JETPACK_FACEBOOK_VIDEO_ALTERNATE_EMBED_REGEX, 'jetpack_facebook_embed_handler' ); |
| 48 | |
| 49 | /** |
| 50 | * Callback to modify output of embedded Facebook posts. |
| 51 | * |
| 52 | * @param array $matches Regex partial matches against the URL passed. |
| 53 | * @param array $attr Attributes received in embed response. |
| 54 | * @param string $url Requested URL to be embedded. |
| 55 | * @return string Facebook embed markup. |
| 56 | */ |
| 57 | function jetpack_facebook_embed_handler( $matches, $attr, $url ) { |
| 58 | if ( |
| 59 | str_contains( $url, 'video.php' ) |
| 60 | || str_contains( $url, '/videos/' ) |
| 61 | || str_contains( $url, '/watch' ) |
| 62 | ) { |
| 63 | $embed = sprintf( '<div class="fb-video" data-allowfullscreen="true" data-href="%s"></div>', esc_url( $url ) ); |
| 64 | } else { |
| 65 | $width = 552; // As of 01/2017, the default width of Facebook embeds when no width attribute provided. |
| 66 | |
| 67 | global $content_width; |
| 68 | if ( is_numeric( $content_width ) && $content_width > 0 ) { |
| 69 | $width = min( $width, $content_width ); |
| 70 | } |
| 71 | |
| 72 | $embed = sprintf( '<div class="fb-post" data-href="%s" data-width="%s"></div>', esc_url( $url ), esc_attr( $width ) ); |
| 73 | } |
| 74 | |
| 75 | // Skip rendering scripts in an AMP context. |
| 76 | if ( class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) { |
| 77 | return $embed; |
| 78 | } |
| 79 | |
| 80 | // since Facebook is a faux embed, we need to load the JS SDK in the wpview embed iframe. |
| 81 | if ( |
| 82 | defined( 'DOING_AJAX' ) |
| 83 | && DOING_AJAX |
| 84 | // No need to check for a nonce here, that's already handled by Core further up. |
| 85 | && ! empty( $_POST['action'] ) // phpcs:ignore WordPress.Security.NonceVerification.Missing |
| 86 | && 'parse-embed' === $_POST['action'] // phpcs:ignore WordPress.Security.NonceVerification.Missing |
| 87 | ) { |
| 88 | ob_start(); |
| 89 | wp_scripts()->do_items( array( 'jetpack-facebook-embed' ) ); |
| 90 | $scripts = ob_get_clean(); |
| 91 | return $embed . $scripts; |
| 92 | } else { |
| 93 | wp_enqueue_script( 'jetpack-facebook-embed' ); |
| 94 | return $embed; |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Shortcode handler. |
| 100 | * |
| 101 | * @param array $atts Shortcode attributes. |
| 102 | */ |
| 103 | function jetpack_facebook_shortcode_handler( $atts ) { |
| 104 | global $wp_embed; |
| 105 | |
| 106 | if ( empty( $atts['url'] ) ) { |
| 107 | return; |
| 108 | } |
| 109 | |
| 110 | if ( ! preg_match( JETPACK_FACEBOOK_EMBED_REGEX, $atts['url'] ) |
| 111 | && ! preg_match( JETPACK_FACEBOOK_PHOTO_EMBED_REGEX, $atts['url'] ) |
| 112 | && ! preg_match( JETPACK_FACEBOOK_VIDEO_EMBED_REGEX, $atts['url'] ) |
| 113 | && ! preg_match( JETPACK_FACEBOOK_VIDEO_ALTERNATE_EMBED_REGEX, $atts['url'] ) ) { |
| 114 | return; |
| 115 | } |
| 116 | |
| 117 | return $wp_embed->shortcode( $atts, $atts['url'] ); |
| 118 | } |
| 119 | add_shortcode( 'facebook', 'jetpack_facebook_shortcode_handler' ); |
| 120 |