PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 8.9.4
Jetpack – WP Security, Backup, Speed, & Growth v8.9.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
115 lines 4.2 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|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