C:\xampp\htdocs\landing\wp-content\plugins\autoptimize\classes\autoptimizeScripts.php


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
<?php
/**
 * Class for JS optimization.
 */

if ( ! defined'ABSPATH' ) ) {
    exit;
}

class 
autoptimizeScripts extends autoptimizeBase
{

    
/**
     * Stores founds scripts.
     *
     * @var array
     */
    
private $scripts = array();

    
/**
     * Stores to be moved JS.
     *
     * @var array
     */
    
private $move = array(
        
'first' => array(),
        
'last'  => array(),
    );

    
/**
     * List of not to be moved JS.
     *
     * @var array
     */
    
private $dontmove = array(
        
'document.write',
        
'html5.js',
        
'show_ads.js',
        
'google_ad',
        
'histats.com/js',
        
'statcounter.com/counter/counter.js',
        
'ws.amazon.com/widgets',
        
'media.fastclick.net',
        
'/ads/',
        
'comment-form-quicktags/quicktags.php',
        
'edToolbar',
        
'intensedebate.com',
        
'scripts.chitika.net/',
        
'_gaq.push',
        
'jotform.com/',
        
'admin-bar.min.js',
        
'GoogleAnalyticsObject',
        
'plupload.full.min.js',
        
'syntaxhighlighter',
        
'adsbygoogle',
        
'gist.github.com',
        
'_stq',
        
'nonce',
        
'post_id',
        
'data-noptimize',
        
'logHuman',
        
'amp-mobile-version-switcher',
    );

    
/**
     * List of to be moved JS.
     *
     * @var array
     */
    
private $domove = array(
        
'gaJsHost',
        
'load_cmc',
        
'jd.gallery.transitions.js',
        
'swfobject.embedSWF(',
        
'tiny_mce.js',
        
'tinyMCEPreInit.go',
    );

    
/**
     * List of JS that can be moved last (not used any more).
     *
     * @var array
     */
    
private $domovelast = array(
        
'addthis.com',
        
'/afsonline/show_afs_search.js',
        
'disqus.js',
        
'networkedblogs.com/getnetworkwidget',
        
'infolinks.com/js/',
        
'jd.gallery.js.php',
        
'jd.gallery.transitions.js',
        
'swfobject.embedSWF(',
        
'linkwithin.com/widget.js',
        
'tiny_mce.js',
        
'tinyMCEPreInit.go',
    );

    
/**
     * Setting CDN base URL.
     *
     * @var string
     */
    
public $cdn_url '';

    
/**
     * Setting; aggregate or not.
     *
     * @var bool
     */
    
private $aggregate true;

    
/**
     * Setting; if not aggregated, should we defer?
     *
     * @var bool
     */
    
private $defer_not_aggregate false;

    
/**
     * Setting; try/catch wrapping or not.
     *
     * @var bool
     */
    
private $trycatch false;

    
/**
     * State; is JS already minified.
     *
     * @var bool
     */
    
private $alreadyminified false;

    
/**
     * Setting; force JS in head or not.
     *
     * @var bool
     */
    
private $forcehead true;

    
/**
     * Setting; aggregate inline JS or not.
     *
     * @var bool
     */
    
private $include_inline false;

    
/**
     * State; holds JS code.
     *
     * @var string
     */
    
private $jscode '';

    
/**
     * State; holds URL of JS-file.
     *
     * @var string
     */
    
private $url '';

    
/**
     * State; stores rest of HTML if (old) option "only in head" is on.
     *
     * @var string
     */
    
private $restofcontent '';

    
/**
     * State; holds md5-hash.
     *
     * @var string
     */
    
private $md5hash '';

    
/**
     * Setting (filter); allowlist of to be aggregated JS.
     *
     * @var string
     */
    
private $allowlist '';

    
/**
     * Setting (filter); holds JS that should be removed.
     *
     * @var array
     */
    
private $jsremovables = array();

    
/**
     * Setting (filter); can we inject already minified files after the
     * unminified aggregate JS has been minified.
     *
     * @var bool
     */
    
private $inject_min_late true;

    
/**
     * Setting; should excluded JS be minified (if not already).
     *
     * @var bool
     */
    
private $minify_excluded true;

    
/**
     * Reads the page and collects script tags.
     *
     * @param array $options all options.
     */
    
public function read$options )
    {
        
$noptimize_js apply_filters'autoptimize_filter_js_noptimize'false$this->content );
        if ( 
$noptimize_js ) {
            return 
false;
        }

        
// only optimize known good JS?
        
$allowlist_js apply_filters'autoptimize_filter_js_allowlist'''$this->content );
        
$allowlist_js apply_filters'autoptimize_filter_js_whitelist'$allowlist_js$this->content ); // fixme: to be removed in next version.
        
if ( ! empty( $allowlist_js ) ) {
            
$this->allowlist array_filterarray_map'trim'explode','$allowlist_js ) ) );
        }

        
// is there JS we should simply remove?
        
$removable_js apply_filters'autoptimize_filter_js_removables'''$this->content );
        if ( ! empty( 
$removable_js ) ) {
            
$this->jsremovables array_filterarray_map'trim'explode','$removable_js ) ) );
        }

        
// only header?
        
if ( apply_filters'autoptimize_filter_js_justhead'$options['justhead'] ) ) {
            
$content             explode'</head>'$this->content);
            
$this->content       $content[0] . '</head>';
            
$this->restofcontent $content[1];
        }

        
// Determine whether we're doing JS-files aggregation or not.
        
if ( ! $options['aggregate'] ) {
            
$this->aggregate false;
        }
        
// Returning true for "dontaggregate" turns off aggregation.
        
if ( $this->aggregate && apply_filters'autoptimize_filter_js_dontaggregate'false ) ) {
            
$this->aggregate false;
        }
        
        
// Defer when not aggregating.
        
if ( false === $this->aggregate && apply_filters'autoptimize_js_filter_defer_not_aggregate'$options['defer_not_aggregate'] ) ) {
            
$this->defer_not_aggregate true;
        }

        
// include inline?
        
if ( apply_filters'autoptimize_js_include_inline'$options['include_inline'] ) ) {
            
$this->include_inline true;
        }

        
// filter to "late inject minified JS", default to true for now (it is faster).
        
$this->inject_min_late apply_filters'autoptimize_filter_js_inject_min_late'true );

        
// filters to override hardcoded do(nt)move(last) array contents (array in, array out!).
        
$this->dontmove   apply_filters'autoptimize_filter_js_dontmove'$this->dontmove );
        
$this->domovelast apply_filters'autoptimize_filter_js_movelast'$this->domovelast );
        
$this->domove     apply_filters'autoptimize_filter_js_domove'$this->domove );

        
// Determine whether excluded files should be minified if not yet so.
        
if ( ! $options['minify_excluded'] && $options['aggregate'] ) {
            
$this->minify_excluded false;
        }
        
$this->minify_excluded apply_filters'autoptimize_filter_js_minify_excluded'$this->minify_excluded'' );

        
// get extra exclusions settings or filter.
        
$exclude_js $options['js_exclude'];
        
$exclude_js apply_filters'autoptimize_filter_js_exclude'$exclude_js$this->content );

        if ( 
'' !== $exclude_js ) {
            if ( 
is_array$exclude_js ) ) {
                
$remove_keys array_keys$exclude_js'remove' );
                if ( 
false !== $remove_keys ) {
                    foreach ( 
$remove_keys as $remove_key ) {
                        unset( 
$exclude_js$remove_key ] );
                        
$this->jsremovables[] = $remove_key;
                    }
                }
                
$excl_js_arr array_keys$exclude_js );
            } else {
                
$excl_js_arr array_filterarray_map'trim'explode','$exclude_js ) ) );
            }
            
$this->dontmove array_merge$excl_js_arr$this->dontmove );
        }

        
// Should we add try-catch?
        
if ( $options['trycatch'] ) {
            
$this->trycatch true;
        }

        
// force js in head?
        
if ( $options['forcehead'] ) {
            
$this->forcehead true;
        } else {
            
$this->forcehead false;
        }

        
$this->forcehead apply_filters'autoptimize_filter_js_forcehead'$this->forcehead );

        
// get cdn url.
        
$this->cdn_url $options['cdn_url'];

        
// noptimize me.
        
$this->content $this->hide_noptimize$this->content );

        
// Save IE hacks.
        
$this->content $this->hide_iehacks$this->content );

        
// comments.
        
$this->content $this->hide_comments$this->content );

        
// Get script files.
        
if ( preg_match_all'#<script.*</script>#Usmi'$this->content$matches ) ) {
            foreach ( 
$matches[0] as $tag ) {
                
// only consider script aggregation for types allowlisted in should_aggregate-function.
                
$should_aggregate $this->should_aggregate$tag );
                if ( ! 
$should_aggregate ) {
                    
$tag '';
                    continue;
                }

                if ( 
preg_match'#<script[^>]*src=("|\')([^>]*)("|\')#Usmi'$tag$source ) ) {
                    
// non-inline script.
                    
if ( $this->isremovable$tag$this->jsremovables ) ) {
                        
$this->content str_replace$tag''$this->content );
                        continue;
                    }

                    
$orig_tag null;
                    
$url      currentexplode'?'$source[2], ) );
                    
$path     $this->getpath$url );
                    if ( 
false !== $path && preg_match'#\.js$#'$path ) && $this->ismergeable$tag ) ) {
                        
// ok to optimize, add to array.
                        
$this->scripts[] = $path;
                    } else {
                        
$orig_tag $tag;
                        
$new_tag  $tag;

                        
// non-mergeable script (excluded or dynamic or external).
                        
if ( is_array$exclude_js ) ) {
                            
// should we add flags?
                            
foreach ( $exclude_js as $excl_tag => $excl_flags ) {
                                if ( 
false !== strpos$orig_tag$excl_tag ) && in_array$excl_flags, array( 'async''defer' ) ) ) {
                                    
$new_tag str_replace'<script ''<script ' $excl_flags ' '$new_tag );
                                }
                            }
                        }
                        
                        
// not aggregating but deferring?
                        
if ( $this->defer_not_aggregate && false === $this->aggregate && str_replace$this->dontmove''$path ) === $path && strpos$new_tag' defer' ) === false ) {
                            
$new_tag str_replace'<script ''<script defer '$new_tag );
                            
// and remove async as async+defer=async while we explicitly want defer.
                            
if ( strpos$new_tag' async' ) !== false && apply_filters'autoptimize_filter_js_defer_remove_async'true ) ) {
                                
$new_tag str_replace( array( ' async'' async="async"'" async='async'" ), ''$new_tag );
                            }
                        }

                        
// Should we minify the non-aggregated script?
                        // -> if aggregate is on and exclude minify is on
                        // -> if aggregate is off and the file is not in dontmove.
                        
if ( $path && $this->minify_excluded ) {
                            
$consider_minified_array apply_filters'autoptimize_filter_js_consider_minified'false );
                            if ( ( 
false === $this->aggregate && str_replace$this->dontmove''$path ) === $path ) || ( true === $this->aggregate && ( false === $consider_minified_array || str_replace$consider_minified_array''$path ) === $path ) ) ) {
                                
$minified_url $this->minify_single$path );
                                if ( ! empty( 
$minified_url ) ) {
                                    
// Replace original URL with minified URL from cache.
                                    
$new_tag str_replace$url$minified_url$new_tag );
                                } elseif ( 
apply_filters'autoptimize_filter_ccsjs_remove_empty_minified_url'false ) ) {
                                    
// Remove the original script tag, because cache content is empty but only if filter
                                    // is trued because $minified_url is also false if original JS is minified already.
                                    
$new_tag '';
                                }
                            }
                        }

                        if ( 
$this->ismovable$new_tag ) ) {
                            
// can be moved, flags and all.
                            
if ( $this->movetolast$new_tag ) ) {
                                
$this->move['last'][] = $new_tag;
                            } else {
                                
$this->move['first'][] = $new_tag;
                            }
                        } else {
                            
// cannot be moved, so if flag was added re-inject altered tag immediately.
                            
if ( ( '' !== $new_tag && $orig_tag !== $new_tag ) || ( '' === $new_tag && apply_filters'autoptimize_filter_js_remove_empty_files'false ) ) ) {
                                
$this->content str_replace$orig_tag$new_tag$this->content );
                                
$orig_tag      '';
                            }
                            
// and forget about the $tag (not to be touched any more).
                            
$tag '';
                        }
                    }
                } else {
                    
// Inline script.
                    
if ( $this->isremovable$tag$this->jsremovables ) ) {
                        
$this->content str_replace$tag''$this->content );
                        continue;
                    }

                    
// unhide comments, as javascript may be wrapped in comment-tags for old times' sake.
                    
$tag $this->restore_comments$tag );
                    if ( 
$this->ismergeable$tag ) && $this->include_inline ) {
                        
preg_match'#<script.*>(.*)</script>#Usmi'$tag$code );
                        
$code            preg_replace'#.*<!\[CDATA\[(?:\s*\*/)?(.*)(?://|/\*)\s*?\]\]>.*#sm''$1'$code[1] );
                        
$code            preg_replace'/(?:^\\s*<!--\\s*|\\s*(?:\\/\\/)?\\s*-->\\s*$)/'''$code );
                        
$this->scripts[] = 'INLINE;' $code;
                    } else {
                        
// Can we move this?
                        
$autoptimize_js_moveable apply_filters'autoptimize_js_moveable'''$tag );
                        if ( 
$this->ismovable$tag ) || '' !== $autoptimize_js_moveable ) {
                            if ( 
$this->movetolast$tag ) || 'last' === $autoptimize_js_moveable ) {
                                
$this->move['last'][] = $tag;
                            } else {
                                
$this->move['first'][] = $tag;
                            }
                        } else {
                            
// We shouldn't touch this.
                            
$tag '';
                        }
                    }
                    
// Re-hide comments to be able to do the removal based on tag from $this->content.
                    
$tag $this->hide_comments$tag );
                }

                
// Remove the original script tag.
                
$this->content str_replace$tag''$this->content );
            }

            return 
true;
        }

        
// No script files, great ;-) .
        
return false;
    }

    
/**
     * Determines wheter a certain `<script>` $tag should be aggregated or not.
     *
     * We consider these as "aggregation-safe" currently:
     * - script tags without a `type` attribute
     * - script tags with these `type` attribute values: `text/javascript`, `text/ecmascript`, `application/javascript`,
     * and `application/ecmascript`
     *
     * Everything else should return false.
     *
     * @link https://developer.mozilla.org/en/docs/Web/HTML/Element/script#attr-type
     *
     * @param string $tag Script node & child(ren).
     * @return bool
     */
    
public function should_aggregate$tag )
    {
        if ( empty( 
$tag ) ) {
            return 
false;
        }

        
// We're only interested in the type attribute of the <script> tag itself, not any possible
        // inline code that might just contain the 'type=' string...
        
$tag_parts = array();
        
preg_match'#<(script[^>]*)>#i'$tag$tag_parts );
        
$tag_without_contents null;
        if ( ! empty( 
$tag_parts[1] ) ) {
            
$tag_without_contents $tag_parts[1];
        }

        
$has_type = ( strpos$tag_without_contents'type' ) !== false );

        
$type_valid false;
        if ( 
$has_type ) {
            
$type_valid = (bool) preg_match'/type\s*=\s*[\'"]?(?:text|application)\/(?:javascript|ecmascript)[\'"]?/i'$tag_without_contents );
        }

        
$should_aggregate false;
        if ( ! 
$has_type || $type_valid ) {
            
$should_aggregate true;
        }

        return 
$should_aggregate;
    }

    
/**
     * Joins and optimizes JS.
     */
    
public function minify()
    {
        foreach ( 
$this->scripts as $script ) {
            if ( empty( 
$script ) ) {
                continue;
            }

            
// TODO/FIXME: some duplicate code here, can be reduced/simplified.
            
if ( preg_match'#^INLINE;#'$script ) ) {
                
// Inline script.
                
$script preg_replace'#^INLINE;#'''$script );
                
$script rtrim$script";\n\t\r" ) . ';';
                
// Add try-catch?
                
if ( $this->trycatch ) {
                    
$script 'try{' $script '}catch(e){}';
                }
                
$tmpscript apply_filters'autoptimize_js_individual_script'$script'' );
                if ( 
has_filter'autoptimize_js_individual_script' ) && ! empty( $tmpscript ) ) {
                    
$script                $tmpscript;
                    
$this->alreadyminified true;
                }
                
$this->jscode .= "\n" $script;
            } else {
                
// External script.
                
if ( false !== $script && file_exists$script ) && is_readable$script ) ) {
                    
$scriptsrc file_get_contents$script );
                    
$scriptsrc preg_replace'/\x{EF}\x{BB}\x{BF}/'''$scriptsrc );
                    
$scriptsrc rtrim$scriptsrc";\n\t\r" ) . ';';
                    
// Add try-catch?
                    
if ( $this->trycatch ) {
                        
$scriptsrc 'try{' $scriptsrc '}catch(e){}';
                    }
                    
$tmpscriptsrc apply_filters'autoptimize_js_individual_script'$scriptsrc$script );
                    if ( 
has_filter'autoptimize_js_individual_script' ) && ! empty( $tmpscriptsrc ) ) {
                        
$scriptsrc             $tmpscriptsrc;
                        
$this->alreadyminified true;
                    } elseif ( 
$this->can_inject_late$script ) ) {
                        
$scriptsrc self::build_injectlater_marker$scriptmd5$scriptsrc ) );
                    }
                    
$this->jscode .= "\n" $scriptsrc;
                }
            }
        }

        
// Check for already-minified code.
        
$this->md5hash md5$this->jscode );
        
$ccheck        = new autoptimizeCache$this->md5hash'js' );
        if ( 
$ccheck->check() ) {
            
$this->jscode $ccheck->retrieve();
            return 
true;
        }
        unset( 
$ccheck );

        
// $this->jscode has all the uncompressed code now.
        
if ( true !== $this->alreadyminified ) {
            if ( 
apply_filters'autoptimize_js_do_minify'true ) ) {
                
$tmp_jscode trimJSMin::minify$this->jscode ) );
                if ( ! empty( 
$tmp_jscode ) ) {
                    
$this->jscode $tmp_jscode;
                    unset( 
$tmp_jscode );
                }
                
$this->jscode $this->inject_minified$this->jscode );
                
$this->jscode apply_filters'autoptimize_js_after_minify'$this->jscode );
                return 
true;
            } else {
                
$this->jscode $this->inject_minified$this->jscode );
                return 
false;
            }
        }

        
$this->jscode apply_filters'autoptimize_js_after_minify'$this->jscode );
        return 
true;
    }

    
/**
     * Caches the JS in uncompressed, deflated and gzipped form.
     */
    
public function cache()
    {
        
$cache = new autoptimizeCache$this->md5hash'js' );
        if ( ! 
$cache->check() ) {
            
// Cache our code.
            
$cache->cache$this->jscode'text/javascript' );
        }
        
$this->url AUTOPTIMIZE_CACHE_URL $cache->getname();
        
$this->url $this->url_replace_cdn$this->url );
    }

    
/**
     * Returns the content.
     */
    
public function getcontent()
    {
        
// Restore the full content.
        
if ( ! empty( $this->restofcontent ) ) {
            
$this->content      .= $this->restofcontent;
            
$this->restofcontent '';
        }

        
// Add the scripts taking forcehead/ deferred (default) into account.
        
if ( $this->forcehead ) {
            
$replace_tag = array( '</head>''before' );
            
$defer       '';
        } else {
            
$replace_tag = array( '</body>''before' );
            
$defer       'defer ';
        }

        
$defer   apply_filters'autoptimize_filter_js_defer'$defer );
        
$type_js '';
        if ( 
apply_filters'autoptimize_filter_cssjs_addtype'false ) ) {
            
$type_js 'type="text/javascript" ';
        }

        
$bodyreplacementpayload '<script ' $type_js $defer 'src="' $this->url '"></script>';
        
$bodyreplacementpayload apply_filters'autoptimize_filter_js_bodyreplacementpayload'$bodyreplacementpayload );

        
$bodyreplacement  implode''$this->move['first'] );
        
$bodyreplacement .= $bodyreplacementpayload;
        
$bodyreplacement .= implode''$this->move['last'] );

        
$replace_tag apply_filters'autoptimize_filter_js_replacetag'$replace_tag );

        if ( 
strlen$this->jscode ) > ) {
            
$this->inject_in_html$bodyreplacement$replace_tag );
        }

        
// Restore comments.
        
$this->content $this->restore_comments$this->content );

        
// Restore IE hacks.
        
$this->content $this->restore_iehacks$this->content );

        
// Restore noptimize.
        
$this->content $this->restore_noptimize$this->content );

        
// Return the modified HTML.
        
return $this->content;
    }

    
/**
     * Checks against the allow- and blocklists.
     *
     * @param string $tag JS tag.
     */
    
private function ismergeable$tag )
    {
        if ( empty( 
$tag ) || ! $this->aggregate ) {
            return 
false;
        }

        if ( ! empty( 
$this->allowlist ) ) {
            foreach ( 
$this->allowlist as $match ) {
                if ( 
false !== strpos$tag$match ) ) {
                    return 
true;
                }
            }
            
// No match with allowlist.
            
return false;
        } else {
            foreach ( 
$this->domove as $match ) {
                if ( 
false !== strpos$tag$match ) ) {
                    
// Matched something.
                    
return false;
                }
            }

            if ( 
$this->movetolast$tag ) ) {
                return 
false;
            }

            foreach ( 
$this->dontmove as $match ) {
                if ( 
false !== strpos$tag$match ) ) {
                    
// Matched something.
                    
return false;
                }
            }

            
// If we're here it's safe to merge.
            
return true;
        }
    }

    
/**
     * Checks agains the blocklist.
     *
     * @param string $tag tag to check for blocklist (exclusions).
     */
    
private function ismovable$tag )
    {
        if ( empty( 
$tag ) || true !== $this->include_inline || apply_filters'autoptimize_filter_js_unmovable'true ) ) {
            return 
false;
        }

        foreach ( 
$this->domove as $match ) {
            if ( 
false !== strpos$tag$match ) ) {
                
// Matched something.
                
return true;
            }
        }

        if ( 
$this->movetolast$tag ) ) {
            return 
true;
        }

        foreach ( 
$this->dontmove as $match ) {
            if ( 
false !== strpos$tag$match ) ) {
                
// Matched something.
                
return false;
            }
        }

        
// If we're here it's safe to move.
        
return true;
    }

    private function 
movetolast$tag )
    {
        if ( empty( 
$tag ) ) {
            return 
false;
        }

        foreach ( 
$this->domovelast as $match ) {
            if ( 
false !== strpos$tag$match ) ) {
                
// Matched, return true.
                
return true;
            }
        }

        
// Should be in 'first'.
        
return false;
    }

    
/**
     * Determines wheter a <script> $tag can be excluded from minification (as already minified) based on:
     * - inject_min_late being active
     * - filename ending in `min.js`
     * - filename matching `js/jquery/jquery.js` (WordPress core jquery, is minified)
     * - filename matching one passed in the consider minified filter
     *
     * @param string $js_path Path to JS file.
     * @return bool
     */
    
private function can_inject_late$js_path ) {
        
$consider_minified_array apply_filters'autoptimize_filter_js_consider_minified'false );
        if ( 
true !== $this->inject_min_late ) {
            
// late-inject turned off.
            
return false;
        } elseif ( ( 
false === strpos$js_path'min.js' ) ) && ( false === strpos$js_path'wp-includes/js/jquery/jquery.js' ) ) && ( str_replace$consider_minified_array''$js_path ) === $js_path ) ) {
            
// file not minified based on filename & filter.
            
return false;
        } else {
            
// phew, all is safe, we can late-inject.
            
return true;
        }
    }

    
/**
     * Returns whether we're doing aggregation or not.
     *
     * @return bool
     */
    
public function aggregating()
    {
        return 
$this->aggregate;
    }

    
/**
     * Minifies a single local js file and returns its (cached) url.
     *
     * @param string $filepath Filepath.
     * @param bool   $cache_miss Optional. Force a cache miss. Default false.
     *
     * @return bool|string Url pointing to the minified js file or false.
     */
    
public function minify_single$filepath$cache_miss false )
    {
        
$contents $this->prepare_minify_single$filepath );

        if ( empty( 
$contents ) ) {
            return 
false;
        }

        
// Check cache.
        
$hash  'single_' md5$contents );
        
$cache = new autoptimizeCache$hash'js' );

        
// If not in cache already, minify...
        
if ( ! $cache->check() || $cache_miss ) {
            
$contents trimJSMin::minify$contents ) );

            
// Check if minified cache content is empty.
            
if ( empty( $contents ) ) {
                return 
false;
            }

            
// Filter contents of excluded minified CSS.
            
$contents apply_filters'autoptimize_filter_js_single_after_minify'$contents );

            
// Store in cache.
            
$cache->cache$contents'text/javascript' );
        }

        
$url $this->build_minify_single_url$cache );

        return 
$url;
    }
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586