3.3.php
30.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
<?php
defined( 'ABSPATH' ) || exit;
if ( ! function_exists( 'get_rocket_footprint' ) ) :
/**
* Get WP Rocket footprint
*
* @deprecated 3.3
* @since 3.0.5 White label footprint if WP_ROCKET_WHITE_LABEL_FOOTPRINT is defined.
* @since 2.0
*
* @param bool $debug (default: true) If true, adds the date of generation cache file.
* @return string The footprint that will be printed
*/
function get_rocket_footprint( $debug = true ) {
_deprecated_function( __FUNCTION__ . '()', '3.3', '\WP_Rocket\Buffer\Cache->get_rocket_footprint()' );
$footprint = defined( 'WP_ROCKET_WHITE_LABEL_FOOTPRINT' ) ?
"\n" . '<!-- Cached for great performance' :
"\n" . '<!-- This website is like a Rocket, isn\'t it? Performance optimized by ' . WP_ROCKET_PLUGIN_NAME . '. Learn more: https://wp-rocket.me';
if ( $debug ) {
$footprint .= ' - Debug: cached@' . time();
}
$footprint .= ' -->';
return $footprint;
}
endif;
if ( ! function_exists( 'rocket_lazyload_script' ) ) :
/**
* Add lazyload options to the footer
*
* @deprecated 3.3
* @since 2.11 load options in the footer and add filter for the treshold
* @since 1.3.5 It's possible to exclude LazyLoad process by used do_rocket_lazyload filter
* @since 1.1.0 This code is insert in head with inline script for more performance
* @since 1.0
*/
function rocket_lazyload_script() {
_deprecated_function( __FUNCTION__ . '()', '3.3', '\RocketLazyload\Assets::insertLazyloadScript()' );
if ( ( defined( 'DONOTROCKETOPTIMIZE' ) && DONOTROCKETOPTIMIZE ) ) {
return;
}
if ( ( ! get_rocket_option( 'lazyload' ) && ! get_rocket_option( 'lazyload_iframes' ) ) || ( ! apply_filters( 'do_rocket_lazyload', true ) && ! apply_filters( 'do_rocket_lazyload_iframes', true ) ) ) {
return;
}
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
$elements = [];
if ( get_rocket_option( 'lazyload' ) ) {
$elements[] = 'img';
}
if ( get_rocket_option( 'lazyload_iframes' ) ) {
$elements[] = 'iframe';
}
/**
* Filters the threshold at which lazyload is triggered
*
* @since 2.11
* @author Remy Perona
*
* @param int $threshold Threshold value.
*/
$threshold = apply_filters( 'rocket_lazyload_threshold', 300 );
echo '<script>(function(w, d){
var b = d.getElementsByTagName("body")[0];
var s = d.createElement("script"); s.async = true;
s.src = !("IntersectionObserver" in w) ? "' . get_rocket_cdn_url( WP_ROCKET_FRONT_JS_URL, array( 'all', 'css_and_js', 'js' ) ) . 'lazyload-8.15.2' . $suffix . '.js" : "' . get_rocket_cdn_url( WP_ROCKET_FRONT_JS_URL, array( 'all', 'css_and_js', 'js' ) ) . 'lazyload-10.17' . $suffix . '.js";
w.lazyLoadOptions = {
elements_selector: "' . esc_attr( implode( ',', $elements ) ) . '",
data_src: "lazy-src",
data_srcset: "lazy-srcset",
data_sizes: "lazy-sizes",
skip_invisible: false,
class_loading: "lazyloading",
class_loaded: "lazyloaded",
threshold: ' . esc_attr( $threshold ) . ',
callback_load: function(element) {
if ( element.tagName === "IFRAME" && element.dataset.rocketLazyload == "fitvidscompatible" ) {
if (element.classList.contains("lazyloaded") ) {
if (typeof window.jQuery != "undefined") {
if (jQuery.fn.fitVids) {
jQuery(element).parent().fitVids();
}
}
}
}
}
}; // Your options here. See "recipes" for more information about async.
b.appendChild(s);
}(window, document));
// Listen to the Initialized event
window.addEventListener(\'LazyLoad::Initialized\', function (e) {
// Get the instance and puts it in the lazyLoadInstance variable
var lazyLoadInstance = e.detail.instance;
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
lazyLoadInstance.update();
} );
} );
var b = document.getElementsByTagName("body")[0];
var config = { childList: true, subtree: true };
observer.observe(b, config);
}, false);
</script>';
if ( get_rocket_option( 'lazyload_youtube' ) ) {
/**
* Filters the resolution of the YouTube thumbnail
*
* @since 2.11.5
* @author Arun Basil Lal
*
* @param string $thumbnail_resolution The resolution of the thumbnail. Accepted values: default, mqdefault, sddefault, hqdefault, maxresdefault
*/
$thumbnail_resolution = apply_filters( 'rocket_youtube_thumbnail_resolution', 'hqdefault' );
echo <<<HTML
<script>function lazyLoadThumb(e){var t='<img src="https://i.ytimg.com/vi/ID/$thumbnail_resolution.jpg">',a='<div class="play"></div>';return t.replace("ID",e)+a}function lazyLoadYoutubeIframe(){var e=document.createElement("iframe"),t="https://www.youtube.com/embed/ID?autoplay=1";t+=0===this.dataset.query.length?'':'&'+this.dataset.query;e.setAttribute("src",t.replace("ID",this.dataset.id)),e.setAttribute("frameborder","0"),e.setAttribute("allowfullscreen","1"),this.parentNode.replaceChild(e,this)}document.addEventListener("DOMContentLoaded",function(){var e,t,a=document.getElementsByClassName("rll-youtube-player");for(t=0;t<a.length;t++)e=document.createElement("div"),e.setAttribute("data-id",a[t].dataset.id),e.setAttribute("data-query", a[t].dataset.query),e.innerHTML=lazyLoadThumb(a[t].dataset.id),e.onclick=lazyLoadYoutubeIframe,a[t].appendChild(e)});</script>
HTML;
}
}
endif;
if ( ! function_exists( 'rocket_lazyload_enqueue' ) ) :
/**
* Enqueue the CSS code for Youtube lazyload styling
*
* @deprecated 3.3
* @since 2.11
* @author Remy Perona
*/
function rocket_lazyload_enqueue() {
_deprecated_function( __FUNCTION__ . '()', '3.3', '\RocketLazyload\Assets::insertYoutubeThumbnailCSS()' );
if ( ( defined( 'DONOTROCKETOPTIMIZE' ) && DONOTROCKETOPTIMIZE ) ) {
return;
}
if ( ( ! get_rocket_option( 'lazyload_iframes' ) ) || ( ! apply_filters( 'do_rocket_lazyload', true ) && ! apply_filters( 'do_rocket_lazyload_iframes', true ) ) ) {
return;
}
if ( get_rocket_option( 'lazyload_youtube' ) ) {
$css = '.rll-youtube-player{position:relative;padding-bottom:56.23%;height:0;overflow:hidden;max-width:100%;background:#000;margin:5px}.rll-youtube-player iframe{position:absolute;top:0;left:0;width:100%;height:100%;z-index:100;background:0 0}.rll-youtube-player img{bottom:0;display:block;left:0;margin:auto;max-width:100%;width:100%;position:absolute;right:0;top:0;border:none;height:auto;cursor:pointer;-webkit-transition:.4s all;-moz-transition:.4s all;transition:.4s all}.rll-youtube-player img:hover{-webkit-filter:brightness(75%)}.rll-youtube-player .play{height:72px;width:72px;left:50%;top:50%;margin-left:-36px;margin-top:-36px;position:absolute;background:url(' . WP_ROCKET_FRONT_URL . 'img/youtube.png) no-repeat;cursor:pointer}';
wp_register_style( 'rocket-lazyload', false );
wp_enqueue_style( 'rocket-lazyload' );
wp_add_inline_style( 'rocket-lazyload', $css );
}
}
endif;
if ( ! function_exists( 'rocket_lazyload_images' ) ) :
/**
* Replace Gravatar, thumbnails, images in post content and in widget text by LazyLoad
*
* @deprecated 3.3
* @since 2.6 Add the get_image_tag filter
* @since 2.2 Better regex pattern in a replace_callback
* @since 1.3.5 It's possible to exclude LazyLoad process by used do_rocket_lazyload filter
* @since 1.2.0 It's possible to not lazyload an image with data-no-lazy attribute
* @since 1.1.0 Don't lazyload if the thumbnail has already been run through previously
* @since 1.0.1 Add priority of hooks at maximum later with PHP_INT_MAX
* @since 1.0
*
* @param string $html HTML content.
* @return string Modified HTML content
*/
function rocket_lazyload_images( $html ) {
_deprecated_function( __FUNCTION__ . '()', '3.3', '\RocketLazyload\Images::lazyloadImages()' );
// Don't LazyLoad if process is stopped for these reasons.
if ( ! get_rocket_option( 'lazyload' ) || ! apply_filters( 'do_rocket_lazyload', true ) || is_feed() || is_preview() || ( defined( 'REST_REQUEST' ) && REST_REQUEST ) || ( defined( 'DONOTROCKETOPTIMIZE' ) && DONOTROCKETOPTIMIZE ) || empty( $html ) || ( defined( 'DONOTLAZYLOAD' ) && DONOTLAZYLOAD ) || wp_script_is( 'twentytwenty-twentytwenty', 'enqueued' ) ) {
return $html;
}
$html = preg_replace_callback( '#<img([^>]*) src=("(?:[^"]+)"|\'(?:[^\']+)\'|(?:[^ >]+))([^>]*)>#', 'rocket_lazyload_replace_callback', $html );
return $html;
}
endif;
if ( ! function_exists( 'rocket_lazyload_replace_callback' ) ) :
/**
* Used to check if we have to LazyLoad this or not
*
* @deprecated 3.3
* @since 2.5.5 Don't apply LazyLoad on images from WP Retina x2
* @since 2.5 Don't apply LazyLoad on all images from LayerSlider
* @since 2.4.2 Don't apply LazyLoad on all images from Media Grid
* @since 2.3.11 Don't apply LazyLoad on all images from Timthumb
* @since 2.3.10 Don't apply LazyLoad on all images from Revolution Slider & Justified Image Grid
* @since 2.3.8 Don't apply LazyLoad on captcha from Really Simple CAPTCHA
* @since 2.2
*
* @param array $matches Images matching the regex.
* @return string Modified HTML content
*/
function rocket_lazyload_replace_callback( $matches ) {
_deprecated_function( __FUNCTION__ . '()', '3.3', '\RocketLazyload\Images::lazyloadImages()' );
// Don't apply LazyLoad on images from WP Retina x2.
if ( function_exists( 'wr2x_picture_rewrite' ) ) {
if ( wr2x_get_retina( trailingslashit( ABSPATH ) . wr2x_get_pathinfo_from_image_src( trim( $matches[2], '"' ) ) ) ) {
return $matches[0];
}
}
/**
* Filters the attributes used to prevent lazylad from being applied
*
* @since 2.11
* @author Remy Perona
*
* @param array $excluded_attributes An array of excluded attributes.
*/
$excluded_attributes = apply_filters(
'rocket_lazyload_excluded_attributes', array(
'data-src=',
'data-no-lazy=',
'data-lazy-original=',
'data-lazy-src=',
'data-lazysrc=',
'data-lazyload=',
'data-bgposition=',
'data-envira-src=',
'fullurl=',
'lazy-slider-img=',
'data-srcset=',
'class="ls-l',
'class="ls-bg',
)
);
/**
* Filters the src used to prevent lazylad from being applied
*
* @since 2.11
* @author Remy Perona
*
* @param array $excluded_src An array of excluded src.
*/
$excluded_src = apply_filters(
'rocket_lazyload_excluded_src', array(
'/wpcf7_captcha/',
'timthumb.php?src',
)
);
if ( rocket_is_excluded_lazyload( $matches[1] . $matches[3], $excluded_attributes ) || rocket_is_excluded_lazyload( $matches[2], $excluded_src ) ) {
return $matches[0];
}
/**
* Filter the LazyLoad placeholder on src attribute
*
* @since 1.1
*
* @param string $placeholder Placeholder that will be printed.
*/
$placeholder = apply_filters( 'rocket_lazyload_placeholder', 'data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=' );
$html = sprintf( '<img%1$s src="%4$s" data-lazy-src=%2$s%3$s>', $matches[1], $matches[2], $matches[3], $placeholder );
$html_noscript = sprintf( '<noscript><img%1$s src=%2$s%3$s></noscript>', $matches[1], $matches[2], $matches[3] );
/**
* Filter the LazyLoad HTML output
*
* @since 1.0.2
*
* @param array $html Output that will be printed
*/
$html = apply_filters( 'rocket_lazyload_html', $html, true );
return $html . $html_noscript;
}
endif;
if ( ! function_exists( 'rocket_is_excluded_lazyload' ) ) :
/**
* Determine if the current image should be excluded from lazyload
*
* @deprecated 3.3
* @since 1.1
* @author Remy Perona
*
* @param string $string String to search.
* @param array $excluded_values Array of excluded values to search in the string.
* @return bool True if one of the excluded values was found, false otherwise
*/
function rocket_is_excluded_lazyload( $string, $excluded_values ) {
_deprecated_function( __FUNCTION__ . '()', '3.3', '\RocketLazyload\Images::isExcluded()' );
foreach ( $excluded_values as $excluded_value ) {
if ( strpos( $string, $excluded_value ) !== false ) {
return true;
}
}
return false;
}
endif;
if ( ! function_exists( 'rocket_lazyload_smilies' ) ) :
/**
* Replace WordPress smilies by Lazy Load
*
* @since 3.3
* @since 2.0 New system for replace smilies by Lazy Load
* @since 1.3.5 It's possible to exclude LazyLoad process by used do_rocket_lazyload filter
* @since 1.1.0 Don't lazy-load if the thumbnail has already been run through previously
* @since 1.0.1 Add priority of hooks at maximum later with PHP_INT_MAX
* @since 1.0
*/
function rocket_lazyload_smilies() {
_deprecated_function( __FUNCTION__ . '()', '3.3', '\WP_Rocket\Subscriber\Optimization\Lazyload_Subscriber::lazyload_smilies()' );
if ( ! get_rocket_option( 'lazyload' ) || ! apply_filters( 'do_rocket_lazyload', true, 'smilies' ) || ( defined( 'DONOTROCKETOPTIMIZE' ) && DONOTROCKETOPTIMIZE ) || ( defined( 'DONOTLAZYLOAD' ) && DONOTLAZYLOAD ) ) {
return;
}
remove_filter( 'the_content', 'convert_smilies' );
remove_filter( 'the_excerpt', 'convert_smilies' );
remove_filter( 'comment_text', 'convert_smilies', 20 );
add_filter( 'the_content', 'rocket_convert_smilies' );
add_filter( 'the_excerpt', 'rocket_convert_smilies' );
add_filter( 'comment_text', 'rocket_convert_smilies', 20 );
}
endif;
if ( ! function_exists( 'rocket_convert_smilies' ) ) :
/**
* Convert text equivalent of smilies to images.
*
* @source convert_smilies() in /wp-includes/formattings.php
* @since 2.0
* @deprecated 3.3
* @param string $text Text to process.
* @return string Modified text
*/
function rocket_convert_smilies( $text ) {
_deprecated_function( __FUNCTION__ . '()', '3.3', '\RocketLazyload\Image::convertSmilies()' );
global $wp_smiliessearch;
if ( ! get_option( 'use_smilies' ) || empty( $wp_smiliessearch ) ) {
return $text;
}
$output = '';
// HTML loop taken from texturize function, could possible be consolidated.
$textarr = preg_split( '/(<.*>)/U', $text, -1, PREG_SPLIT_DELIM_CAPTURE ); // capture the tags as well as in between.
$stop = count( $textarr );// loop stuff.
// Ignore proessing of specific tags.
$tags_to_ignore = 'code|pre|style|script|textarea';
$ignore_block_element = '';
for ( $i = 0; $i < $stop; $i++ ) {
$content = $textarr[ $i ];
// If we're in an ignore block, wait until we find its closing tag.
if ( '' === $ignore_block_element && preg_match( '/^<(' . $tags_to_ignore . ')>/', $content, $matches ) ) {
$ignore_block_element = $matches[1];
}
// If it's not a tag and not in ignore block.
if ( '' === $ignore_block_element && strlen( $content ) > 0 && '<' !== $content[0] ) {
$content = preg_replace_callback( $wp_smiliessearch, 'rocket_translate_smiley', $content );
}
// did we exit ignore block.
if ( '' !== $ignore_block_element && '</' . $ignore_block_element . '>' === $content ) {
$ignore_block_element = '';
}
$output .= $content;
}
return $output;
}
endif;
if ( ! function_exists( 'rocket_translate_smiley' ) ) :
/**
* Convert one smiley code to the icon graphic file equivalent.
*
* @source translate_smiley() in /wp-includes/formattings.php
* @since 2.0
* @deprecated 3.3
*
* @param array $matches An array of matching content.
* @return string HTML code for smiley
*/
function rocket_translate_smiley( $matches ) {
_deprecated_function( __FUNCTION__ . '()', '3.3', '\RocketLazyload\Image::translateSmiley()' );
global $wpsmiliestrans;
if ( count( $matches ) === 0 ) {
return '';
}
$smiley = trim( reset( $matches ) );
$img = $wpsmiliestrans[ $smiley ];
$matches = array();
$ext = preg_match( '/\.([^.]+)$/', $img, $matches ) ? strtolower( $matches[1] ) : false;
$image_exts = array( 'jpg', 'jpeg', 'jpe', 'gif', 'png' );
// Don't convert smilies that aren't images - they're probably emoji.
if ( ! in_array( $ext, $image_exts, true ) ) {
return $img;
}
/**
* Filter the Smiley image URL before it's used in the image element.
*
* @since 2.9.0
*
* @param string $smiley_url URL for the smiley image.
* @param string $img Filename for the smiley image.
* @param string $site_url Site URL, as returned by site_url().
*/
$src_url = apply_filters( 'smilies_src', includes_url( "images/smilies/$img" ), $img, site_url() );
// Don't LazyLoad if process is stopped for these reasons.
if ( is_feed() || is_preview() ) {
return sprintf( ' <img src="%s" alt="%s" class="wp-smiley" /> ', esc_url( $src_url ), esc_attr( $smiley ) );
}
/** This filter is documented in inc/front/lazyload.php */
$placeholder = apply_filters( 'rocket_lazyload_placeholder', 'data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=' );
return sprintf( ' <img src="%s" data-lazy-src="%s" alt="%s" class="wp-smiley" /> ', $placeholder, esc_url( $src_url ), esc_attr( $smiley ) );
}
endif;
if ( ! function_exists( 'rocket_lazyload_iframes' ) ) :
/**
* Replace iframes by LazyLoad
*
* @deprecated 3.3
* @since 2.6
*
* @param string $html HTML content.
* @return string Modified HTML content
*/
function rocket_lazyload_iframes( $html ) {
_deprecated_function( __FUNCTION__ . '()', '3.3', '\RocketLazyload\Iframe::lazyloadIframes()' );
// Don't LazyLoad if process is stopped for these reasons.
if ( ! get_rocket_option( 'lazyload_iframes' ) || ! apply_filters( 'do_rocket_lazyload_iframes', true ) || is_feed() || is_preview() || ( defined( 'REST_REQUEST' ) && REST_REQUEST ) || empty( $html ) || ( defined( 'DONOTROCKETOPTIMIZE' ) && DONOTROCKETOPTIMIZE ) || ( defined( 'DONOTLAZYLOAD' ) && DONOTLAZYLOAD ) ) {
return $html;
}
preg_match_all( '@<iframe(?<atts>\s.+)>.*</iframe>@iUs', $html, $matches, PREG_SET_ORDER );
if ( empty( $matches ) ) {
return $html;
}
foreach ( $matches as $iframe ) {
// Don't mess with the Gravity Forms ajax iframe.
if ( strpos( $iframe[0], 'gform_ajax_frame' ) ) {
continue;
}
// Don't lazyload if iframe has data-no-lazy attribute.
if ( strpos( $iframe[0], 'data-no-lazy=' ) ) {
continue;
}
// Don't lazyload if iframe is google recaptcha fallback.
if ( strpos( $iframe[0], 'recaptcha/api/fallback' ) ) {
continue;
}
// Given the previous regex pattern, $iframe['atts'] starts with a whitespace character.
if ( ! preg_match( '@\ssrc\s*=\s*(\'|")(?<src>.*)\1@iUs', $iframe['atts'], $atts ) ) {
continue;
}
$iframe['src'] = trim( $atts['src'] );
if ( '' === $iframe['src'] ) {
continue;
}
if ( get_rocket_option( 'lazyload_youtube' ) ) {
$youtube_id = rocket_lazyload_get_youtube_id_from_url( $iframe['src'] );
if ( $youtube_id ) {
$query = wp_parse_url( htmlspecialchars_decode( $iframe['src'] ), PHP_URL_QUERY );
/**
* Filter the LazyLoad HTML output on Youtube iframes
*
* @since 2.11
*
* @param array $html Output that will be printed.
*/
$youtube_lazyload = apply_filters( 'rocket_lazyload_youtube_html', '<div class="rll-youtube-player" data-id="' . esc_attr( $youtube_id ) . '" data-query="' . esc_attr( $query ) . '"></div>' );
$youtube_lazyload .= '<noscript>' . $iframe[0] . '</noscript>';
$html = str_replace( $iframe[0], $youtube_lazyload, $html );
continue;
}
}
/**
* Filter the LazyLoad placeholder on src attribute
*
* @since 2.11
*
* @param string $placeholder placeholder that will be printed.
*/
$placeholder = apply_filters( 'rocket_lazyload_placeholder', 'about:blank' );
$placeholder_atts = str_replace( $iframe['src'], $placeholder, $iframe['atts'] );
$iframe_lazyload = str_replace( $iframe['atts'], $placeholder_atts . ' data-rocket-lazyload="fitvidscompatible" data-lazy-src="' . esc_url( $iframe['src'] ) . '"', $iframe[0] );
/**
* Filter the LazyLoad HTML output on iframes
*
* @since 2.11
*
* @param array $html Output that will be printed.
*/
$iframe_lazyload = apply_filters( 'rocket_lazyload_iframe_html', $iframe_lazyload );
$iframe_lazyload .= '<noscript>' . $iframe[0] . '</noscript>';
$html = str_replace( $iframe[0], $iframe_lazyload, $html );
}
return $html;
}
endif;
if ( ! function_exists( 'rocket_deactivate_lazyload_on_specific_posts' ) ) :
/**
* Check if we need to exclude LazyLoad on specific posts
*
* @since 3.3
* @since 2.5
*/
function rocket_deactivate_lazyload_on_specific_posts() {
_deprecated_function( __FUNCTION__ . '()', '3.3', '\WP_Rocket\Subscriber\Optimization\Lazyload_Subscriber::deactivate_lazyload_on_specific_posts()' );
if ( is_rocket_post_excluded_option( 'lazyload' ) ) {
add_filter( 'do_rocket_lazyload', '__return_false' );
}
if ( is_rocket_post_excluded_option( 'lazyload_iframes' ) ) {
add_filter( 'do_rocket_lazyload_iframes', '__return_false' );
}
}
endif;
if ( ! function_exists( 'rocket_lazyload_on_srcset' ) ) :
/**
* Compatibility with images with srcset attribute
*
* @author Remy Perona
*
* @since 3.3
* @since 2.8 Also add sizes to the data-lazy-* attributes to prevent error in W3C validator
* @since 2.7
*
* @param string $html HTML content.
* @return string Modified HTML content
*/
function rocket_lazyload_on_srcset( $html ) {
_deprecated_function( __FUNCTION__ . '()', '3.3', '\RocketLazyload\Image:lazyloadResponsiveAttributes()' );
if ( preg_match( '/srcset=("(?:[^"]+)"|\'(?:[^\']+)\'|(?:[^ >]+))/i', $html ) ) {
$html = str_replace( 'srcset=', 'data-lazy-srcset=', $html );
}
if ( preg_match( '/sizes=("(?:[^"]+)"|\'(?:[^\']+)\'|(?:[^ >]+))/i', $html ) ) {
$html = str_replace( 'sizes=', 'data-lazy-sizes=', $html );
}
return $html;
}
endif;
if ( ! function_exists( 'rocket_lazyload_get_youtube_id_from_url' ) ) :
/**
* Gets youtube video ID from URL
*
* @author Remy Perona
* @deprecated 3.3
* @since 2.11
*
* @param string $url URL to parse.
* @return string Youtube video id or false if none found.
*/
function rocket_lazyload_get_youtube_id_from_url( $url ) {
_deprecated_function( __FUNCTION__ . '()', '3.3', '\RocketLazyload\Iframe:getYoutubeIDFromURL()' );
$pattern = '#^(?:https?:)?(?://)?(?:www\.)?(?:youtu\.be|youtube\.com|youtube-nocookie\.com)/(?:embed/|v/|watch/?\?v=)([\w-]{11})#iU';
$result = preg_match( $pattern, $url, $matches );
if ( ! $result ) {
return false;
}
if ( 'videoseries' === $matches[1] ) {
return false;
}
return $matches[1];
}
endif;
if ( ! function_exists( 'rocket_user_agent' ) ) :
/**
* Add Rocket informations into USER_AGENT
*
* @since 1.1.0
* @deprecated 3.3.6
*
* @param string $user_agent User Agent value.
* @return string WP Rocket user agent
*/
function rocket_user_agent( $user_agent ) {
_deprecated_function( __FUNCTION__ . '()', '3.3.6', '\WP_Rocket\Subscriber\Plugin\Updater_Api_Common_Subscriber->get_rocket_user_agent()' );
$consumer_key = '';
if ( isset( $_POST[ WP_ROCKET_SLUG ]['consumer_key'] ) ) {
$consumer_key = $_POST[ WP_ROCKET_SLUG ]['consumer_key'];
} elseif ( '' !== (string) get_rocket_option( 'consumer_key' ) ) {
$consumer_key = (string) get_rocket_option( 'consumer_key' );
}
$consumer_email = '';
if ( isset( $_POST[ WP_ROCKET_SLUG ]['consumer_email'] ) ) {
$consumer_email = $_POST[ WP_ROCKET_SLUG ]['consumer_email'];
} elseif ( '' !== (string) get_rocket_option( 'consumer_email' ) ) {
$consumer_email = (string) get_rocket_option( 'consumer_email' );
}
$bonus = ! get_rocket_option( 'do_beta' ) ? '' : '+';
$php_version = preg_replace( '@^(\d\.\d+).*@', '\1', phpversion() );
$new_ua = sprintf( '%s;WP-Rocket|%s%s|%s|%s|%s|%s;', $user_agent, WP_ROCKET_VERSION, $bonus, $consumer_key, $consumer_email, esc_url( home_url() ), $php_version );
return $new_ua;
}
endif;
if ( ! function_exists( 'rocket_add_own_ua' ) ) :
/**
* Force our user agent header when we hit our urls
*
* @since 2.4
* @deprecated 3.3.6
*
* @param array $request An array of request arguments.
* @param string $url Requested URL.
* @return array An array of requested arguments
*/
function rocket_add_own_ua( $request, $url ) {
_deprecated_function( __FUNCTION__ . '()', '3.3.6', '\WP_Rocket\Subscriber\Plugin\Updater_Api_Common_Subscriber->maybe_set_rocket_user_agent()' );
if ( ! is_string( $url ) ) {
return $request;
}
if ( strpos( $url, 'wp-rocket.me' ) !== false ) {
$request['user-agent'] = rocket_user_agent( $request['user-agent'] );
}
return $request;
}
endif;
if ( ! function_exists( 'rocket_updates_exclude' ) ) :
/**
* Excludes WP Rocket from WP updates
*
* @since 1.0
* @deprecated 3.3.6
*
* @param array $request An array of HTTP request arguments.
* @param string $url The request URL.
* @return array Updated array of HTTP request arguments.
*/
function rocket_updates_exclude( $request, $url ) {
_deprecated_function( __FUNCTION__ . '()', '3.3.6', '\WP_Rocket\Subscriber\Plugin\Updater_Subscriber->exclude_rocket_from_wp_updates()' );
if ( ! is_string( $url ) ) {
return $request;
}
if ( 0 !== strpos( $url, 'http://api.wordpress.org/plugins/update-check' ) || ! isset( $request['body']['plugins'] ) ) {
return $request; // Not a plugin update request. Stop immediately.
}
$plugins = maybe_unserialize( $request['body']['plugins'] );
if ( isset( $plugins->plugins[ plugin_basename( WP_ROCKET_FILE ) ], $plugins->active[ array_search( plugin_basename( WP_ROCKET_FILE ), $plugins->active, true ) ] ) ) {
unset( $plugins->plugins[ plugin_basename( WP_ROCKET_FILE ) ] );
unset( $plugins->active[ array_search( plugin_basename( WP_ROCKET_FILE ), $plugins->active, true ) ] );
}
$request['body']['plugins'] = maybe_serialize( $plugins );
return $request;
}
endif;
if ( ! function_exists( 'rocket_force_info' ) ) :
/**
* Hack the returned object
*
* @since 1.0
* @deprecated 3.3.6
*
* @param false|object|array $bool The result object or array. Default false.
* @param string $action The type of information being requested from the Plugin Install API.
* @param object $args Plugin API arguments.
* @return false|object|array Empty object if slug is WP Rocket, default value otherwise
*/
function rocket_force_info( $bool, $action, $args ) {
_deprecated_function( __FUNCTION__ . '()', '3.3.6', '\WP_Rocket\Subscriber\Plugin\Information_Subscriber->exclude_rocket_from_wp_info()' );
if ( 'plugin_information' === $action && 'wp-rocket' === $args->slug ) {
return new stdClass();
}
return $bool;
}
endif;
if ( ! function_exists( 'rocket_force_info_result' ) ) :
/**
* Hack the returned result with our content
*
* @since 1.0
* @deprecated 3.3.6
*
* @param object|WP_Error $res Response object or WP_Error.
* @param string $action The type of information being requested from the Plugin Install API.
* @param object $args Plugin API arguments.
* @return object|WP_Error Updated response object or WP_Error
*/
function rocket_force_info_result( $res, $action, $args ) {
_deprecated_function( __FUNCTION__ . '()', '3.3.6', '\WP_Rocket\Subscriber\Plugin\Information_Subscriber->add_rocket_info()' );
if ( 'plugin_information' === $action && isset( $args->slug ) && 'wp-rocket' === $args->slug && isset( $res->external ) && $res->external ) {
$request = wp_remote_post(
WP_ROCKET_WEB_INFO, array(
'timeout' => 30,
'action' => 'plugin_information',
'request' => serialize( $args ),
)
);
if ( is_wp_error( $request ) ) {
// translators: %s is an URL.
$res = new WP_Error( 'plugins_api_failed', sprintf( __( 'An unexpected error occurred. Something may be wrong with WP-Rocket.me or this server’s configuration. If you continue to have problems, <a href="%s">contact support</a>.', 'rocket' ), rocket_get_external_url( 'support', array(
'utm_source' => 'wp_plugin',
'utm_medium' => 'wp_rocket',
) ) ), $request->get_error_message() );
} else {
$res = maybe_unserialize( wp_remote_retrieve_body( $request ) );
if ( ! is_object( $res ) && ! is_array( $res ) ) {
// translators: %s is an URL.
$res = new WP_Error( 'plugins_api_failed', sprintf( __( 'An unexpected error occurred. Something may be wrong with WP-Rocket.me or this server’s configuration. If you continue to have problems, <a href="%s">contact support</a>.', 'rocket' ), rocket_get_external_url( 'support', array(
'utm_source' => 'wp_plugin',
'utm_medium' => 'wp_rocket',
) ) ), wp_remote_retrieve_body( $request ) );
}
}
}
return $res;
}
endif;
if ( ! function_exists( 'rocket_check_update' ) ) :
/**
* When WP sets the update_plugins site transient, we set our own transient, then see rocket_add_response_to_updates
*
* @since 2.6.5
* @deprecated 3.3.6
*
* @param Object $value Site transient object.
*/
function rocket_check_update( $value ) {
_deprecated_function( __FUNCTION__ . '()', '3.3.6', '\WP_Rocket\Subscriber\Plugin\Updater_Subscriber->maybe_add_rocket_update_data()' );
$timer_update_wprocket = (int) get_site_transient( 'update_wprocket' );
$temp_object = get_site_transient( 'update_wprocket_response' );
if ( ( ! isset( $_GET['rocket_force_update'] ) || defined( 'WP_INSTALLING' ) ) &&
( 12 * HOUR_IN_SECONDS ) > ( time() - $timer_update_wprocket ) // retry in 12 hours.
) {
if ( is_object( $value ) && false !== $temp_object ) {
if ( version_compare( $temp_object->new_version, WP_ROCKET_VERSION ) > 0 ) {
$value->response[ $temp_object->plugin ] = $temp_object;
} else {
delete_site_transient( 'update_wprocket_response' );
}
}
return $value;
}
if ( isset( $_GET['rocket_force_update'] ) ) {
$_SERVER['REQUEST_URI'] = remove_query_arg( 'rocket_force_update' );
}
$plugin_folder = plugin_basename( dirname( WP_ROCKET_FILE ) );
$plugin_file = basename( WP_ROCKET_FILE );
$version = true;
if ( ! $value ) {
$value = new stdClass();
$value->last_checked = time();
}
$response = wp_remote_get(
WP_ROCKET_WEB_CHECK, array(
'timeout' => 30,
)
);
if ( ! is_a( $response, 'WP_Error' ) && 200 === $response['response']['code'] && strlen( $response['body'] ) > 32 ) {
set_site_transient( 'update_wprocket', time() );
list( $version, $url ) = explode( '|', $response['body'] );
if ( version_compare( $version, WP_ROCKET_VERSION ) <= 0 ) {
return $value;
}
$temp_array = array(
'slug' => $plugin_folder,
'plugin' => $plugin_folder . '/' . $plugin_file,
'new_version' => $version,
'url' => 'https://wp-rocket.me',
'package' => $url,
);
$temp_object = (object) $temp_array;
$value->response[ $plugin_folder . '/' . $plugin_file ] = $temp_object;
set_site_transient( 'update_wprocket_response', $temp_object );
} else {
set_site_transient( 'update_wprocket', ( time() + ( 11 * HOUR_IN_SECONDS ) ) ); // retry in 1 hour in case of error..
}
return $value;
}
endif;
if ( ! function_exists( 'rocket_reset_check_update_timer' ) ) :
/**
* When WP deletes the update_plugins site transient or updates the plugins, we delete our own transients to avoid another 12 hours waiting
*
* @since 2.6.8
* @deprecated 3.3.6
*
* @param string $transient Transient name.
* @param object $value Transient object.
*/
function rocket_reset_check_update_timer( $transient = 'update_plugins', $value = null ) {
_deprecated_function( __FUNCTION__ . '()', '3.3.6' );
// $value used by setted.
if ( 'update_plugins' === $transient ) {
if ( is_null( $value ) || is_object( $value ) && ! isset( $value->response ) ) {
delete_site_transient( 'update_wprocket' );
}
}
}
endif;