PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 5.0.3
Jetpack – WP Security, Backup, Speed, & Growth v5.0.3
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 / instagram.php

instagram.php in Jetpack – WP Security, Backup, Speed, & Growth 5.0.3, at modules/shortcodes/instagram.php

181 lines 8.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3
4 /**
5 * Embed Reversal for Instagram
6 *
7 * Hooked to pre_kses, converts an embed code from Instagram.com to an oEmbeddable URL.
8 * @return (string) the filtered or the original content
9 **/
10 function jetpack_instagram_embed_reversal( $content ) {
11 if ( ! is_string( $content ) || false === stripos( $content, 'instagram.com' ) ) {
12 return $content;
13 }
14
15 /* Sample embed code:
16 <blockquote class="instagram-media" data-instgrm-captioned data-instgrm-version="2" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:658px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"><div style="padding:8px;"><div style=" background:#F8F8F8; line-height:0; margin-top:40px; padding-bottom:55%; padding-top:45%; text-align:center; width:100%;"><div style="position:relative;"><div style=" -webkit-animation:dkaXkpbBxI 1s ease-out infinite; animation:dkaXkpbBxI 1s ease-out infinite; background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAMAAAApWqozAAAAGFBMVEUiIiI9PT0eHh4gIB4hIBkcHBwcHBwcHBydr+JQAAAACHRSTlMABA4YHyQsM5jtaMwAAADfSURBVDjL7ZVBEgMhCAQBAf//42xcNbpAqakcM0ftUmFAAIBE81IqBJdS3lS6zs3bIpB9WED3YYXFPmHRfT8sgyrCP1x8uEUxLMzNWElFOYCV6mHWWwMzdPEKHlhLw7NWJqkHc4uIZphavDzA2JPzUDsBZziNae2S6owH8xPmX8G7zzgKEOPUoYHvGz1TBCxMkd3kwNVbU0gKHkx+iZILf77IofhrY1nYFnB/lQPb79drWOyJVa/DAvg9B/rLB4cC+Nqgdz/TvBbBnr6GBReqn/nRmDgaQEej7WhonozjF+Y2I/fZou/qAAAAAElFTkSuQmCC); display:block; height:44px; margin:0 auto -44px; position:relative; top:-44px; width:44px;"></div><span style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:12px; font-style:normal; font-weight:bold; position:relative; top:15px;">Loading</span></div></div><p style=" font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin:8px 0 0 0; padding:0 4px; word-wrap:break-word;"> Balloons</p><p style=" line-height:32px; margin-bottom:0; margin-top:8px; padding:0; text-align:center;"> <a href="https://instagram.com/p/r9vfPrmjeB/" style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; text-decoration:none;" target="_top"> View on Instagram</a></p></div><style>@-webkit-keyframes"dkaXkpbBxI"{ 0%{opacity:0.5;} 50%{opacity:1;} 100%{opacity:0.5;} } @keyframes"dkaXkpbBxI"{ 0%{opacity:0.5;} 50%{opacity:1;} 100%{opacity:0.5;} }</style></blockquote>
17 <script async defer src="https://platform.instagram.com/en_US/embeds.js"></script>
18 */
19
20 $regexes = array();
21
22 // new style js
23 $regexes[] = '#<blockquote[^>]+?class="instagram-media"[^>](.+?)>(.+?)</blockquote><script[^>]+?src="(https?:)?//platform\.instagram\.com/(.+?)/embeds\.js"></script>#ix';
24
25 // Let's play nice with the visual editor too.
26 $regexes[] = '#&lt;blockquote(?:[^&]|&(?!gt;))+?class="instagram-media"(?:[^&]|&(?!gt;))(.+?)&gt;(.+?)&lt;/blockquote&gt;&lt;script(?:[^&]|&(?!gt;))+?src="(https?:)?//platform\.instagram\.com/(.+?)/embeds\.js"(?:[^&]|&(?!gt;))*+&gt;&lt;/script&gt;#ix';
27
28 // old style iframe
29 $regexes[] = '#<iframe[^>]+?src="(?:https?:)?//instagram\.com/p/([^"\'/]++)[^"\']*?"[^>]*+>\s*?</iframe>#i';
30
31 // Let's play nice with the visual editor too.
32 $regexes[] = '#&lt;iframe(?:[^&]|&(?!gt;))+?src="(?:https?:)?//instagram\.com/p/([^"\'/]++)[^"\']*?"(?:[^&]|&(?!gt;))*+&gt;\s*?&lt;/iframe&gt;#i';
33
34 foreach ( $regexes as $regex ) {
35 if ( ! preg_match_all( $regex, $content, $matches, PREG_SET_ORDER ) ) {
36 continue;
37 }
38
39 foreach ( $matches as $match ) {
40 if ( ! preg_match( '#(https?:)?//instagr(\.am|am\.com)/p/([^/]*)#i', $match[2], $url_matches ) ) {
41 continue;
42 }
43
44 // Since we support Instagram via oEmbed, we simply leave a link on a line by itself.
45 $replace_regex = sprintf( '#\s*%s\s*#', preg_quote( $match[0], '#' ) );
46 $url = esc_url( $url_matches[0] );
47
48 $content = preg_replace( $replace_regex, sprintf( "\n\n%s\n\n", $url ), $content );
49 /** This action is documented in modules/shortcodes/youtube.php */
50 do_action( 'jetpack_embed_to_shortcode', 'instagram', $url );
51 }
52 }
53
54 return $content;
55 }
56
57 add_filter( 'pre_kses', 'jetpack_instagram_embed_reversal' );
58
59 /**
60 * Instagram
61 */
62 wp_oembed_remove_provider( '#https?://(www\.)?instagr(\.am|am\.com)/p/.*#i' ); // remove core's oEmbed support so we can override
63 wp_embed_register_handler( 'jetpack_instagram', '#http(s?)://(www\.)?instagr(\.am|am\.com)/p/([^/]*)#i', 'jetpack_instagram_handler' );
64
65 function jetpack_instagram_handler( $matches, $atts, $url ) {
66 global $content_width;
67
68 // keep a copy of the passed-in URL since it's modified below
69 $passed_url = $url;
70
71 $max_width = 698;
72 $min_width = 320;
73
74 if ( is_feed() ) {
75 $media_url = sprintf( 'http://instagr.am/p/%s/media/?size=l', $matches[4] );
76 return sprintf( '<a href="%s" title="%s" target="_blank"><img src="%s" alt="Instagram Photo" /></a>', esc_url( $url ), esc_attr__( 'View on Instagram', 'jetpack' ), esc_url( $media_url ) );
77 }
78
79 $atts = shortcode_atts( array(
80 'width' => isset( $content_width ) ? $content_width : $max_width,
81 'hidecaption' => false,
82 ), $atts );
83
84 $atts['width'] = absint( $atts['width'] );
85 if ( $atts['width'] > $max_width ) {
86 $atts['width'] = $max_width;
87 } elseif ( $atts['width'] < $min_width ) {
88 $atts['width'] = $min_width;
89 }
90
91 // remove the modal param from the URL
92 $url = remove_query_arg( 'modal', $url );
93
94 // force .com instead of .am for https support
95 $url = str_replace( 'instagr.am', 'instagram.com', $url );
96
97 // The oembed endpoint expects HTTP, but HTTP requests 301 to HTTPS
98 $instagram_http_url = str_replace( 'https://', 'http://', $url );
99 $instagram_https_url = str_replace( 'http://', 'https://', $url );
100
101 $url_args = array(
102 'url' => $instagram_http_url,
103 'maxwidth' => $atts['width'],
104 );
105
106 if ( $atts['hidecaption'] ) {
107 $url_args['hidecaption'] = 'true';
108 }
109
110 $url = esc_url_raw( add_query_arg( $url_args, 'https://api.instagram.com/oembed/' ) );
111
112 /**
113 * Filter Object Caching for response from Instagram.
114 *
115 * Allow enabling of object caching for the response sent by Instagram when querying for Instagram image HTML.
116 *
117 * @module shortcodes
118 *
119 * @since 3.3.0
120 *
121 * @param bool false Object caching is off by default.
122 * @param array $matches Array of Instagram URLs found in the post.
123 * @param array $atts Instagram Shortcode attributes.
124 * @param string $passed_url Instagram API URL.
125 */
126 $response_body_use_cache = apply_filters( 'instagram_cache_oembed_api_response_body', false, $matches, $atts, $passed_url );
127 $response_body = false;
128 if ( $response_body_use_cache ) {
129 $cache_key = 'oembed_response_body_' . md5( $url );
130 $response_body = wp_cache_get( $cache_key, 'instagram_embeds' );
131 }
132
133 if ( ! $response_body ) {
134 // Not using cache (default case) or cache miss
135 $instagram_response = wp_remote_get( $url, array( 'redirection' => 0 ) );
136 if ( is_wp_error( $instagram_response ) || 200 != $instagram_response['response']['code'] || empty( $instagram_response['body'] ) ) {
137 return '<!-- instagram error: invalid instagram resource -->';
138 }
139
140 $response_body = json_decode( $instagram_response['body'] );
141 if ( $response_body_use_cache ) {
142 // if caching it is short-lived since this is a "Cache-Control: no-cache" resource
143 wp_cache_set( $cache_key, $response_body, 'instagram_embeds', HOUR_IN_SECONDS + mt_rand( 0, HOUR_IN_SECONDS ) );
144 }
145 }
146
147 if ( ! empty( $response_body->html ) ) {
148 wp_enqueue_script( 'jetpack-instagram-embed', plugins_url( 'js/instagram.js', __FILE__ ), array( 'jquery' ), false, true );
149 // there's a script in the response, which we strip on purpose since it's added by this ^ script
150 $ig_embed = preg_replace( '@<(script)[^>]*?>.*?</\\1>@si', '', $response_body->html );
151
152 return $ig_embed;
153 }
154
155 return '<!-- instagram error: no embed found -->';
156 }
157
158 // filters instagram's username format to the expected format that matches the embed handler
159 wp_embed_register_handler( 'jetpack_instagram_alternate_format', '#http(s?)://instagr(\.am|am\.com)/([^/]*)/p/([^/]*)#i', 'jetpack_instagram_alternate_format_handler' );
160 function jetpack_instagram_alternate_format_handler( $matches, $atts, $url ) {
161 $url = esc_url_raw( 'https://instagram.com/p/' . $matches[4] );
162 $matches[0] = $url;
163 $matches[3] = $matches[4];
164 unset( $matches[4] );
165
166 return jetpack_instagram_handler( $matches, $atts, $url );
167 }
168
169 // [instagram url="http://instagram.com/p/PSbF9sEIGP/"]
170 // [instagram url="http://instagram.com/p/PSbF9sEIGP/" width="300"]
171 add_shortcode( 'instagram', 'jetpack_shortcode_instagram' );
172 function jetpack_shortcode_instagram( $atts ) {
173 global $wp_embed;
174
175 if ( empty( $atts['url'] ) ) {
176 return '';
177 }
178
179 return $wp_embed->shortcode( $atts, $atts['url'] );
180 }
181