PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 7.3.4
Jetpack – WP Security, Backup, Speed, & Growth v7.3.4
16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 All 501 releases
jetpack / modules / shortcodes / facebook.php
facebook.php
107 lines 4.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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\?([^\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 e.g. https://www.facebook.com/video.php?v=772471122790796
38 */
39 wp_embed_register_handler( 'facebook-video', JETPACK_FACEBOOK_VIDEO_EMBED_REGEX, 'jetpack_facebook_embed_handler' );
40
41 /*
42 * Videos https://www.facebook.com/WhiteHouse/videos/10153398464269238/
43 */
44 wp_embed_register_handler( 'facebook-alternate-video', JETPACK_FACEBOOK_VIDEO_ALTERNATE_EMBED_REGEX, 'jetpack_facebook_embed_handler' );
45
46 /**
47 * Callback to modify output of embedded Facebook posts.
48 *
49 * @param array $matches Regex partial matches against the URL passed.
50 * @param array $attr Attributes received in embed response.
51 * @param array $url Requested URL to be embedded.
52 */
53 function jetpack_facebook_embed_handler( $matches, $attr, $url ) {
54 if ( false !== strpos( $url, 'video.php' ) || false !== strpos( $url, '/videos/' ) ) {
55 $embed = sprintf( '<div class="fb-video" data-allowfullscreen="true" data-href="%s"></div>', esc_url( $url ) );
56 } else {
57 $width = 552; // As of 01/2017, the default width of Facebook embeds when no width attribute provided.
58
59 global $content_width;
60 if ( isset( $content_width ) ) {
61 $width = min( $width, $content_width );
62 }
63
64 $embed = sprintf( '<fb:post href="%s" data-width="%s"></fb:post>', esc_url( $url ), esc_attr( $width ) );
65 }
66
67 // since Facebook is a faux embed, we need to load the JS SDK in the wpview embed iframe.
68 if (
69 defined( 'DOING_AJAX' )
70 && DOING_AJAX
71 // No need to check for a nonce here, that's already handled by Core further up.
72 && ! empty( $_POST['action'] ) // phpcs:ignore WordPress.Security.NonceVerification.Missing
73 && 'parse-embed' === $_POST['action'] // phpcs:ignore WordPress.Security.NonceVerification.Missing
74 ) {
75 ob_start();
76 wp_scripts()->do_items( array( 'jetpack-facebook-embed' ) );
77 $scripts = ob_get_clean();
78 return $embed . $scripts;
79 } else {
80 wp_enqueue_script( 'jetpack-facebook-embed' );
81 return $embed;
82 }
83 }
84
85 /**
86 * Shortcode handler.
87 *
88 * @param array $atts Shortcode attributes.
89 */
90 function jetpack_facebook_shortcode_handler( $atts ) {
91 global $wp_embed;
92
93 if ( empty( $atts['url'] ) ) {
94 return;
95 }
96
97 if ( ! preg_match( JETPACK_FACEBOOK_EMBED_REGEX, $atts['url'] )
98 && ! preg_match( JETPACK_FACEBOOK_PHOTO_EMBED_REGEX, $atts['url'] )
99 && ! preg_match( JETPACK_FACEBOOK_VIDEO_EMBED_REGEX, $atts['url'] )
100 && ! preg_match( JETPACK_FACEBOOK_VIDEO_ALTERNATE_EMBED_REGEX, $atts['url'] ) ) {
101 return;
102 }
103
104 return $wp_embed->shortcode( $atts, $atts['url'] );
105 }
106 add_shortcode( 'facebook', 'jetpack_facebook_shortcode_handler' );
107