| 1 |
<?php |
| 2 |
/** |
| 3 |
* Flickr Short Code |
| 4 |
* Author: kellan |
| 5 |
* License: BSD/GPL/public domain (take your pick) |
| 6 |
* |
| 7 |
* [flickr video=www.flickr.com/photos/kalakeli/49931239842] |
| 8 |
* [flickr video=49931239842] |
| 9 |
* [flickr video=49931239842 w=200 h=150] |
| 10 |
* [flickr video=49931239842 autoplay="yes" controls="no"] |
| 11 |
* [flickr video=49931239842 autoplay="no" controls="yes" w=200 h=150] |
| 12 |
* |
| 13 |
* <div class="flick_video" style="max-width: 100%;width: 500px;height: 300px;"><video src="https://www.flickr.com/photos/kalakeli/49931239842/play/360p/183f75d545/" controls autoplay ></video></div> |
| 14 |
* |
| 15 |
* @package automattic/jetpack |
| 16 |
*/ |
| 17 |
|
| 18 |
/** |
| 19 |
* Transform embed to shortcode on save. |
| 20 |
* |
| 21 |
* @param string $content Post content. |
| 22 |
* |
| 23 |
* @return string Shortcode or the embed content itself. |
| 24 |
*/ |
| 25 |
function flickr_embed_to_shortcode( $content ) { |
| 26 |
if ( ! is_string( $content ) ) { |
| 27 |
return $content; |
| 28 |
} |
| 29 |
|
| 30 |
if ( false !== strpos( $content, '<div class="flickr_video"' ) && false !== strpos( $content, '<video' ) ) { |
| 31 |
return jetpack_flickr_video_to_shortcode( $content ); |
| 32 |
} elseif ( preg_match( '/<iframe src="(https?:)?\/\/([\da-z\-]+\.)*?((static)?flickr\.com|flic\.kr)\/[^\"]+\"/', $content ) ) { |
| 33 |
return jetpack_flickr_photo_to_shortcode( $content ); |
| 34 |
} |
| 35 |
|
| 36 |
return $content; |
| 37 |
} |
| 38 |
|
| 39 |
/** |
| 40 |
* Transforms embed to shortcode on save when the photo param is used. |
| 41 |
* If embed content can not be transformed to a valid shortcode, |
| 42 |
* the embed content itself is returned. |
| 43 |
* |
| 44 |
* @param string $content Embed output. |
| 45 |
* |
| 46 |
* @return string Shortcode or the embed content. |
| 47 |
*/ |
| 48 |
function jetpack_flickr_photo_to_shortcode( $content ) { |
| 49 |
preg_match( '/<iframe src=\"([^\"]+)\"(\s+height=\"([^\"]*)\")?(\s+width=\"([^\"]*)\")?/', $content, $matches ); |
| 50 |
|
| 51 |
if ( empty( $matches[1] ) ) { |
| 52 |
return $content; |
| 53 |
} |
| 54 |
|
| 55 |
$src = esc_attr( str_replace( 'player/', '', $matches[1] ) ); |
| 56 |
$height = empty( $matches[3] ) ? '' : esc_attr( $matches[3] ); |
| 57 |
$width = empty( $matches[5] ) ? '' : esc_attr( $matches[5] ); |
| 58 |
|
| 59 |
/** This action is documented in modules/shortcodes/youtube.php */ |
| 60 |
do_action( 'jetpack_embed_to_shortcode', 'flickr_photo', $src ); |
| 61 |
|
| 62 |
return '[flickr photo="' . $src . '" w=' . $width . ' h=' . $height . ']'; |
| 63 |
} |
| 64 |
|
| 65 |
/** |
| 66 |
* Transforms embed to shortcode on save when the video param is used. |
| 67 |
* If embed content can not be transformed to a valid shortcode, |
| 68 |
* the embed content itself is returned. |
| 69 |
* |
| 70 |
* @param string $content Embed output. |
| 71 |
* |
| 72 |
* @return string Shortcode or the embed content. |
| 73 |
*/ |
| 74 |
function jetpack_flickr_video_to_shortcode( $content ) { |
| 75 |
// Get video src. |
| 76 |
preg_match( '/<video src=\"([^\"]+)\"/', $content, $matches ); |
| 77 |
|
| 78 |
if ( empty( $matches[1] ) ) { |
| 79 |
return $content; |
| 80 |
} |
| 81 |
|
| 82 |
preg_match( '/(https?:)?\/\/([\da-z\-]+\.)*?((static)?flickr\.com|flic\.kr)\/photos\/([^\/]+)\/\d+\//', $matches[1], $matches ); |
| 83 |
|
| 84 |
$video_src = esc_attr( $matches[0] ); |
| 85 |
|
| 86 |
// Get width and height. |
| 87 |
|
| 88 |
preg_match( '/style=\"max-width: 100%;(width:\s(\d+)px;)?(height:\s(\d+)px;)?/', $content, $matches ); |
| 89 |
|
| 90 |
$width = empty( $matches[2] ) ? '' : 'w=' . esc_attr( $matches[2] ); |
| 91 |
|
| 92 |
$height = empty( $matches[4] ) ? '' : 'h=' . esc_attr( $matches[4] ); |
| 93 |
|
| 94 |
$controls = false !== strpos( $content, 'controls' ) ? 'yes' : 'no'; |
| 95 |
|
| 96 |
$autoplay = false !== strpos( $content, 'autoplay' ) ? 'yes' : 'no'; |
| 97 |
|
| 98 |
/** This action is documented in modules/shortcodes/youtube.php */ |
| 99 |
do_action( 'jetpack_embed_to_shortcode', 'flickr_video', $video_src ); |
| 100 |
|
| 101 |
return '[flickr video="' . $video_src . '" ' . $width . ' ' . $height . ' controls="' . $controls . '" autoplay="' . $autoplay . '"]'; |
| 102 |
} |
| 103 |
|
| 104 |
add_filter( 'pre_kses', 'flickr_embed_to_shortcode' ); |
| 105 |
|
| 106 |
/** |
| 107 |
* Flickr Shortcode handler. |
| 108 |
* |
| 109 |
* @param array $atts Shortcode attributes. |
| 110 |
* |
| 111 |
* @return string Shortcode Output. |
| 112 |
*/ |
| 113 |
function flickr_shortcode_handler( $atts ) { |
| 114 |
$atts = shortcode_atts( |
| 115 |
array( |
| 116 |
'video' => 0, |
| 117 |
'photo' => 0, |
| 118 |
'w' => '', |
| 119 |
'h' => '', |
| 120 |
'controls' => 'yes', |
| 121 |
'autoplay' => '', |
| 122 |
), |
| 123 |
$atts, |
| 124 |
'flickr' |
| 125 |
); |
| 126 |
|
| 127 |
if ( ! empty( $atts['video'] ) ) { |
| 128 |
$showing = 'video'; |
| 129 |
$src = $atts['video']; |
| 130 |
} elseif ( ! empty( $atts['photo'] ) ) { |
| 131 |
$showing = 'photo'; |
| 132 |
$src = $atts['photo']; |
| 133 |
} else { |
| 134 |
return ''; |
| 135 |
} |
| 136 |
|
| 137 |
$src = str_replace( 'http://', 'https://', $src ); |
| 138 |
|
| 139 |
if ( 'video' === $showing ) { |
| 140 |
|
| 141 |
$video_id = flick_shortcode_video_id( $src ); |
| 142 |
|
| 143 |
if ( empty( $video_id ) ) { |
| 144 |
return ''; |
| 145 |
} |
| 146 |
|
| 147 |
$atts = array_map( 'esc_attr', $atts ); |
| 148 |
return flickr_shortcode_video_markup( $atts, $video_id, $src ); |
| 149 |
} elseif ( 'photo' === $showing ) { |
| 150 |
|
| 151 |
if ( ! preg_match( '~^(https?:)?//([\da-z\-]+\.)*?((static)?flickr\.com|flic\.kr)/.*~i', $src ) ) { |
| 152 |
return ''; |
| 153 |
} |
| 154 |
|
| 155 |
$height = empty( $atts['h'] ) ? 'auto' : esc_attr( $atts['h'] ); |
| 156 |
|
| 157 |
$src = sprintf( '%s/player/', untrailingslashit( $src ) ); |
| 158 |
|
| 159 |
$allow_full_screen = 'allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen'; |
| 160 |
|
| 161 |
if ( class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) { |
| 162 |
$allow_full_screen = str_replace( ' oallowfullscreen msallowfullscreen', '', $allow_full_screen ); |
| 163 |
} |
| 164 |
|
| 165 |
return sprintf( '<iframe src="%s" height="%s" width="%s" frameborder="0" %s></iframe>', esc_url( $src ), $height, esc_attr( $atts['w'] ), $allow_full_screen ); |
| 166 |
} |
| 167 |
|
| 168 |
return false; |
| 169 |
} |
| 170 |
|
| 171 |
/** |
| 172 |
* Return HTML markup for a Flickr embed. |
| 173 |
* |
| 174 |
* @param array $atts Shortcode attributes. |
| 175 |
* @param string $id Video ID. |
| 176 |
* @param string $video_param video param of the shortcode. |
| 177 |
* |
| 178 |
* @return string Shortcode ouput for video. |
| 179 |
*/ |
| 180 |
function flickr_shortcode_video_markup( $atts, $id, $video_param ) { |
| 181 |
|
| 182 |
$transient_name = "flickr_video_$id"; |
| 183 |
$video_src = get_transient( $transient_name ); |
| 184 |
|
| 185 |
if ( empty( $video_src ) ) { |
| 186 |
$video_url = ''; |
| 187 |
if ( ! is_numeric( $video_param ) ) { |
| 188 |
$video_url = $video_param; |
| 189 |
} else { |
| 190 |
// Get the URL of the video from the page of the video. |
| 191 |
$video_page_content = wp_remote_get( "http://flickr.com/photo.gne?id=$video_param" ); |
| 192 |
|
| 193 |
// Bail if we do not get any info from Flickr. |
| 194 |
if ( is_wp_error( $video_page_content ) ) { |
| 195 |
return ''; |
| 196 |
} |
| 197 |
|
| 198 |
// Extract the URL from the og:url meta tag. |
| 199 |
preg_match( '/property=\"og:url\"\scontent=\"([^\"]+)\"/', $video_page_content['body'], $matches ); |
| 200 |
if ( empty( $matches[1] ) ) { |
| 201 |
return ''; |
| 202 |
} |
| 203 |
$video_url = $matches[1]; |
| 204 |
} |
| 205 |
|
| 206 |
$provider = 'https://www.flickr.com/services/oembed/'; |
| 207 |
$oembed = _wp_oembed_get_object(); |
| 208 |
$data = (array) $oembed->fetch( $provider, $video_url ); |
| 209 |
if ( empty( $data['html'] ) ) { |
| 210 |
return ''; |
| 211 |
} |
| 212 |
|
| 213 |
// Get the embed url. |
| 214 |
preg_match( '/src=\"([^\"]+)\"/', $data['html'], $matches ); |
| 215 |
|
| 216 |
$embed_url = $matches[1]; |
| 217 |
|
| 218 |
$embed_page = wp_remote_get( $embed_url ); |
| 219 |
|
| 220 |
// Get the video url from embed html markup. |
| 221 |
|
| 222 |
preg_match( '/video.+src=\"([^\"]+)\"/', $embed_page['body'], $matches ); |
| 223 |
|
| 224 |
$video_src = $matches[1]; |
| 225 |
|
| 226 |
set_transient( $transient_name, $video_src, 2592000 ); // 30 days transient. |
| 227 |
} |
| 228 |
|
| 229 |
$style = 'max-width: 100%;'; |
| 230 |
|
| 231 |
if ( ! empty( $atts['w'] ) && is_numeric( $atts['w'] ) ) { |
| 232 |
$style .= sprintf( 'width: %dpx;', $atts['w'] ); |
| 233 |
} |
| 234 |
|
| 235 |
if ( ! empty( $atts['h'] ) && is_numeric( $atts['h'] ) ) { |
| 236 |
$style .= sprintf( 'height: %dpx;', $atts['h'] ); |
| 237 |
} |
| 238 |
|
| 239 |
$controls = 'yes' === $atts['controls'] ? 'controls' : ''; |
| 240 |
$autoplay = 'yes' === $atts['autoplay'] ? 'autoplay' : ''; |
| 241 |
|
| 242 |
return sprintf( |
| 243 |
'<div class="flick_video" style="%s"><video src="%s" %s %s /></div>', |
| 244 |
esc_attr( $style ), |
| 245 |
esc_attr( $video_src ), |
| 246 |
$controls, |
| 247 |
$autoplay |
| 248 |
); |
| 249 |
} |
| 250 |
|
| 251 |
/** |
| 252 |
* Extract the id of the flickr video from the video param. |
| 253 |
* |
| 254 |
* @param string $video_param Video parameter of the shortcode. |
| 255 |
* |
| 256 |
* @return string|boolean ID of the video or false in case the ID can not be extracted. |
| 257 |
*/ |
| 258 |
function flick_shortcode_video_id( $video_param ) { |
| 259 |
if ( preg_match( '/^https?:\/\/(www\.)?flickr\.com\/.+/', $video_param ) || preg_match( '/^https?:\/\/flic\.kr\/.+/', $video_param ) ) { |
| 260 |
|
| 261 |
// Extract the video id from the url. |
| 262 |
preg_match( '/\d+/', $video_param, $matches ); |
| 263 |
|
| 264 |
if ( empty( $matches ) ) { |
| 265 |
return false; |
| 266 |
} |
| 267 |
|
| 268 |
return $matches[0]; |
| 269 |
|
| 270 |
} elseif ( is_numeric( $video_param ) ) { |
| 271 |
return $video_param; |
| 272 |
} |
| 273 |
|
| 274 |
return false; |
| 275 |
} |
| 276 |
|
| 277 |
add_shortcode( 'flickr', 'flickr_shortcode_handler' ); |
| 278 |
|
| 279 |
// Override core's Flickr support because Flickr oEmbed doesn't support web embeds. |
| 280 |
wp_embed_register_handler( 'flickr', '#https?://(www\.)?flickr\.com/.*#i', 'jetpack_flickr_oembed_handler' ); |
| 281 |
|
| 282 |
/** |
| 283 |
* Callback to modify output of embedded Vimeo video using Jetpack's shortcode. |
| 284 |
* |
| 285 |
* @since 3.9 |
| 286 |
* |
| 287 |
* @param array $matches Regex partial matches against the URL passed. |
| 288 |
* @param array $attr Attributes received in embed response. |
| 289 |
* @param array $url Requested URL to be embedded. |
| 290 |
* |
| 291 |
* @return string Return output of Vimeo shortcode with the proper markup. |
| 292 |
*/ |
| 293 |
function jetpack_flickr_oembed_handler( $matches, $attr, $url ) { |
| 294 |
/* |
| 295 |
* Legacy slideshow embeds end with /show/ |
| 296 |
* e.g. http://www.flickr.com/photos/yarnaholic/sets/72157615194738969/show/ |
| 297 |
*/ |
| 298 |
if ( '/show/' !== substr( $url, -strlen( '/show/' ) ) ) { |
| 299 |
// These lookups need cached, as they don't use WP_Embed (which caches). |
| 300 |
$cache_key = md5( $url . wp_json_encode( $attr ) ); |
| 301 |
$cache_group = 'oembed_flickr'; |
| 302 |
|
| 303 |
$html = wp_cache_get( $cache_key, $cache_group ); |
| 304 |
|
| 305 |
if ( false === $html ) { |
| 306 |
$html = _wp_oembed_get_object()->get_html( $url, $attr ); |
| 307 |
|
| 308 |
wp_cache_set( $cache_key, $html, $cache_group, 60 * MINUTE_IN_SECONDS ); |
| 309 |
} |
| 310 |
|
| 311 |
return $html; |
| 312 |
} |
| 313 |
|
| 314 |
return flickr_shortcode_handler( array( 'photo' => $url ) ); |
| 315 |
} |
| 316 |
|