PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 12.2
Jetpack – WP Security, Backup, Speed, & Growth v12.2
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 in Jetpack – WP Security, Backup, Speed, & Growth 12.2, at modules/shortcodes/facebook.php

120 lines 4.4 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 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 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 ( 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