facebook.php
| 1 | <?php |
| 2 | /** |
| 3 | * Facebook embeds |
| 4 | * |
| 5 | * @package 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 | /* |
| 17 | * Example URL: https://www.facebook.com/VenusWilliams/posts/10151647007373076 |
| 18 | */ |
| 19 | wp_embed_register_handler( 'facebook', JETPACK_FACEBOOK_EMBED_REGEX, 'jetpack_facebook_embed_handler' ); |
| 20 | |
| 21 | /* |
| 22 | * Example URL: https://www.facebook.com/permalink.php?id=222622504529111&story_fbid=559431180743788 |
| 23 | */ |
| 24 | wp_embed_register_handler( 'facebook-alternate', JETPACK_FACEBOOK_ALTERNATE_EMBED_REGEX, 'jetpack_facebook_embed_handler' ); |
| 25 | |
| 26 | /* |
| 27 | * Photos are handled on a different endpoint; e.g. https://www.facebook.com/photo.php?fbid=10151609960150073&set=a.398410140072.163165.106666030072&type=1 |
| 28 | */ |
| 29 | wp_embed_register_handler( 'facebook-photo', JETPACK_FACEBOOK_PHOTO_EMBED_REGEX, 'jetpack_facebook_embed_handler' ); |
| 30 | |
| 31 | /* |
| 32 | * Photos (from pages for example) can be at |
| 33 | */ |
| 34 | wp_embed_register_handler( 'facebook-alternate-photo', JETPACK_FACEBOOK_PHOTO_ALTERNATE_EMBED_REGEX, 'jetpack_facebook_embed_handler' ); |
| 35 | |
| 36 | /* |
| 37 | * Videos |
| 38 | * |
| 39 | * Formats: |
| 40 | * https://www.facebook.com/video.php?v=2836814009877992 |
| 41 | * https://www.facebook.com/watch/?v=2836814009877992 |
| 42 | */ |
| 43 | wp_embed_register_handler( 'facebook-video', JETPACK_FACEBOOK_VIDEO_EMBED_REGEX, 'jetpack_facebook_embed_handler' ); |
| 44 | |
| 45 | /* |
| 46 | * Videos https://www.facebook.com/WhiteHouse/videos/10153398464269238/ |
| 47 | */ |
| 48 | wp_embed_register_handler( 'facebook-alternate-video', JETPACK_FACEBOOK_VIDEO_ALTERNATE_EMBED_REGEX, 'jetpack_facebook_embed_handler' ); |
| 49 | |
| 50 | /** |
| 51 | * Callback to modify output of embedded Facebook posts. |
| 52 | * |
| 53 | * @param array $matches Regex partial matches against the URL passed. |
| 54 | * @param array $attr Attributes received in embed response. |
| 55 | * @param array $url Requested URL to be embedded. |
| 56 | */ |
| 57 | function jetpack_facebook_embed_handler( $matches, $attr, $url ) { |
| 58 | if ( |
| 59 | false !== strpos( $url, 'video.php' ) |
| 60 | || false !== strpos( $url, '/videos/' ) |
| 61 | || false !== strpos( $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 ( isset( $content_width ) ) { |
| 69 | $width = min( $width, $content_width ); |
| 70 | } |
| 71 | |
| 72 | $embed = sprintf( '<fb:post href="%s" data-width="%s"></fb:post>', esc_url( $url ), esc_attr( $width ) ); |
| 73 | } |
| 74 | |
| 75 | // since Facebook is a faux embed, we need to load the JS SDK in the wpview embed iframe. |
| 76 | if ( |
| 77 | defined( 'DOING_AJAX' ) |
| 78 | && DOING_AJAX |
| 79 | // No need to check for a nonce here, that's already handled by Core further up. |
| 80 | && ! empty( $_POST['action'] ) // phpcs:ignore WordPress.Security.NonceVerification.Missing |
| 81 | && 'parse-embed' === $_POST['action'] // phpcs:ignore WordPress.Security.NonceVerification.Missing |
| 82 | ) { |
| 83 | ob_start(); |
| 84 | wp_scripts()->do_items( array( 'jetpack-facebook-embed' ) ); |
| 85 | $scripts = ob_get_clean(); |
| 86 | return $embed . $scripts; |
| 87 | } else { |
| 88 | wp_enqueue_script( 'jetpack-facebook-embed' ); |
| 89 | return $embed; |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Shortcode handler. |
| 95 | * |
| 96 | * @param array $atts Shortcode attributes. |
| 97 | */ |
| 98 | function jetpack_facebook_shortcode_handler( $atts ) { |
| 99 | global $wp_embed; |
| 100 | |
| 101 | if ( empty( $atts['url'] ) ) { |
| 102 | return; |
| 103 | } |
| 104 | |
| 105 | if ( ! preg_match( JETPACK_FACEBOOK_EMBED_REGEX, $atts['url'] ) |
| 106 | && ! preg_match( JETPACK_FACEBOOK_PHOTO_EMBED_REGEX, $atts['url'] ) |
| 107 | && ! preg_match( JETPACK_FACEBOOK_VIDEO_EMBED_REGEX, $atts['url'] ) |
| 108 | && ! preg_match( JETPACK_FACEBOOK_VIDEO_ALTERNATE_EMBED_REGEX, $atts['url'] ) ) { |
| 109 | return; |
| 110 | } |
| 111 | |
| 112 | return $wp_embed->shortcode( $atts, $atts['url'] ); |
| 113 | } |
| 114 | add_shortcode( 'facebook', 'jetpack_facebook_shortcode_handler' ); |
| 115 |