-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathMinify_MinifiedFileRequestHandler.php
1115 lines (961 loc) · 32.9 KB
/
Minify_MinifiedFileRequestHandler.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
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
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* File: Minify_MinifiedFileRequestHandler.php
*
* @package W3TC
*/
namespace W3TC;
// Define repeated regex to simplify changes.
define( 'MINIFY_AUTO_FILENAME_REGEX', '([a-zA-Z0-9-_]+)\\.(css|js)([?].*)?' );
define( 'MINIFY_MANUAL_FILENAME_REGEX', '([a-f0-9]+)\\.(.+)\\.(include(\\-(footer|body))?)\\.[a-f0-9]+\\.(css|js)' );
/**
* Class Minify_MinifiedFileRequestHandler
*
* phpcs:disable PSR2.Classes.PropertyDeclaration.Underscore
* phpcs:disable PSR2.Methods.MethodDeclaration.Underscore
* phpcs:disable WordPress.PHP.NoSilencedErrors.Discouraged
* phpcs:disable WordPress.PHP.DiscouragedPHPFunctions
* phpcs:disable WordPress.WP.AlternativeFunctions
* phpcs:disable WordPress.DB.DirectDatabaseQuery
* phpcs:disable WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase
*/
class Minify_MinifiedFileRequestHandler {
/**
* Config
*
* @var Config
*/
private $_config = null;
/**
* Tracks if an error has occurred.
*
* @var bool
*/
private $_error_occurred = false;
/**
* Constructor for the Minify_MinifiedFileRequestHandler class.
*
* Initializes the configuration object.
*
* @return void
*/
public function __construct() {
$this->_config = Dispatcher::config();
}
/**
* Processes the given file request and serves minified content.
*
* @param string|null $file The requested file for minification. Defaults to null.
* @param bool $quiet Whether to suppress errors and output debugging information.
*
* @return array|void An array of minification results, or void in certain cases.
*
* @throws \Exception If a recoverable error occurs during the minification process.
*/
public function process( $file = null, $quiet = false ) {
// Check for rewrite test request.
$rewrite_marker = 'rewrite_test.css';
if ( substr( $file, strlen( $file ) - strlen( $rewrite_marker ) ) === $rewrite_marker ) {
echo 'Minify OK';
exit();
}
$filelength_test_marker = 'XXX.css';
if ( substr( $file, strlen( $file ) - strlen( $filelength_test_marker ) ) === $filelength_test_marker ) {
$cache = $this->_get_cache();
header( 'Content-type: text/css' );
if ( ! $cache->store( basename( $file ), array( 'content' => 'content ok' ) ) ) {
echo 'error storing';
} else {
if (
function_exists( 'brotli_compress' ) &&
$this->_config->get_boolean( 'browsercache.enabled' ) &&
$this->_config->get_boolean( 'browsercache.cssjs.brotli' )
) {
if ( ! $cache->store( basename( $file ) . '_br', array( 'content' => brotli_compress( 'content ok' ) ) ) ) {
echo 'error storing';
exit();
}
}
if (
function_exists( 'gzencode' ) &&
$this->_config->get_boolean( 'browsercache.enabled' ) &&
$this->_config->get_boolean( 'browsercache.cssjs.compression' )
) {
if ( ! $cache->store( basename( $file ) . '_gzip', array( 'content' => gzencode( 'content ok' ) ) ) ) {
echo 'error storing';
exit();
}
}
$v = $cache->fetch( basename( $file ) );
if ( 'content ok' === $v['content'] ) {
echo 'content ok';
} else {
echo 'error storing';
}
}
exit();
}
// remove querystring.
if ( preg_match( '~(.+)(\?x[0-9]{5})$~', $file, $m ) ) {
$file = $m[1];
}
// remove blog_id.
$levels = '';
if ( defined( 'W3TC_BLOG_LEVELS' ) ) {
for ( $n = 0; $n < W3TC_BLOG_LEVELS; $n++ ) {
$levels .= '[0-9]+\/';
}
}
if ( preg_match( '~^(' . $levels . '[0-9]+)\/(.+)$~', $file, $matches ) ) {
$file = $matches[2];
}
// normalize according to browsercache.
$file = Dispatcher::requested_minify_filename( $this->_config, $file );
// parse file.
$hash = '';
$matches = null;
$location = '';
$type = '';
if ( preg_match( '~^' . MINIFY_AUTO_FILENAME_REGEX . '$~', $file, $matches ) ) {
list( , $hash, $type ) = $matches;
} elseif ( preg_match( '~^' . MINIFY_MANUAL_FILENAME_REGEX . '$~', $file, $matches ) ) {
list( , $theme, $template, $location, , , $type ) = $matches;
} else {
return $this->finish_with_error( sprintf( 'Bad file param format: "%s"', $file ), $quiet, false );
}
// Set cache engine.
$cache = $this->_get_cache();
\W3TCL\Minify\Minify::setCache( $cache );
// Set cache ID.
$cache_id = $this->get_cache_id( $file );
\W3TCL\Minify\Minify::setCacheId( $file );
// Set logger.
\W3TCL\Minify\Minify_Logger::setLogger(
array(
$this,
'debug_error',
)
);
// Set options.
$browsercache = $this->_config->get_boolean( 'browsercache.enabled' );
$serve_options = array_merge(
$this->_config->get_array( 'minify.options' ),
array(
'debug' => $this->_config->get_boolean( 'minify.debug' ),
'maxAge' => $this->_config->get_integer( 'browsercache.cssjs.lifetime' ),
'encodeOutput' => (
$browsercache &&
! defined( 'W3TC_PAGECACHE_OUTPUT_COMPRESSION_OFF' ) &&
! $quiet &&
(
$this->_config->get_boolean( 'browsercache.cssjs.compression' ) ||
$this->_config->get_boolean( 'browsercache.cssjs.brotli' )
)
),
'bubbleCssImports' => ( $this->_config->get_string( 'minify.css.imports' ) === 'bubble' ),
'processCssImports' => ( $this->_config->get_string( 'minify.css.imports' ) === 'process' ),
'cacheHeaders' => array(
'use_etag' => ( $browsercache && $this->_config->get_boolean( 'browsercache.cssjs.etag' ) ),
'expires_enabled' => ( $browsercache && $this->_config->get_boolean( 'browsercache.cssjs.expires' ) ),
'cacheheaders_enabled' => ( $browsercache && $this->_config->get_boolean( 'browsercache.cssjs.cache.control' ) ),
'cacheheaders' => $this->_config->get_string( 'browsercache.cssjs.cache.policy' ),
),
'disable_304' => $quiet, // when requested for service needs - need content instead of 304.
'quiet' => $quiet,
)
);
// Set sources.
if ( $hash ) {
$_GET['f_array'] = $this->minify_filename_to_filenames_for_minification( $hash, $type );
$_GET['ext'] = $type;
} else {
$_GET['g'] = $location;
$serve_options['minApp']['groups'] = $this->get_groups( $theme, $template, $type );
}
// Set minifier.
$w3_minifier = Dispatcher::component( 'Minify_ContentMinifier' );
if ( 'js' === $type ) {
$minifier_type = 'application/x-javascript';
switch ( true ) {
case ( 'combine' === $hash && $this->_config->get_string( 'minify.js.method' ) ):
case ( 'include' === $location && $this->_config->get_boolean( 'minify.js.combine.header' ) ):
case ( 'include-body' === $location && $this->_config->get_boolean( 'minify.js.combine.body' ) ):
case ( 'include-footer' === $location && $this->_config->get_boolean( 'minify.js.combine.footer' ) ):
$engine = 'combinejs';
break;
default:
$engine = $this->_config->get_string( 'minify.js.engine' );
if ( ! $w3_minifier->exists( $engine ) || ! $w3_minifier->available( $engine ) ) {
$engine = 'js';
}
break;
}
} elseif ( 'css' === $type ) {
$minifier_type = 'text/css';
if ( ( $hash || 'include' === $location ) && 'combine' === $this->_config->get_string( 'minify.css.method' ) ) {
$engine = 'combinecss';
} else {
$engine = $this->_config->get_string( 'minify.css.engine' );
if ( ! $w3_minifier->exists( $engine ) || ! $w3_minifier->available( $engine ) ) {
$engine = 'css';
}
}
}
// Initialize minifier.
$w3_minifier->init( $engine );
$serve_options['minifiers'][ $minifier_type ] = $w3_minifier->get_minifier( $engine );
$serve_options['minifierOptions'][ $minifier_type ] = $w3_minifier->get_options( $engine );
// Send X-Powered-By header.
if ( ! $quiet && $browsercache && $this->_config->get_boolean( 'browsercache.cssjs.w3tc' ) ) {
@header( 'X-Powered-By: ' . Util_Environment::w3tc_header() );
}
if ( empty( Util_Request::get( 'f_array' ) ) && empty( Util_Request::get_string( 'g' ) ) ) {
return $this->finish_with_error( 'Nothing to minify', $quiet, false );
}
// Minify.
$serve_options = apply_filters( 'w3tc_minify_file_handler_minify_options', $serve_options );
$return = array();
try {
$return = \W3TCL\Minify\Minify::serve( 'MinApp', $serve_options );
} catch ( \Exception $exception ) {
return $this->finish_with_error( $exception->getMessage(), $quiet );
}
if ( ! is_null( \W3TCL\Minify\Minify::$recoverableError ) ) {
$this->_handle_error( \W3TCL\Minify\Minify::$recoverableError );
}
$state = Dispatcher::config_state_master();
if ( ! $this->_error_occurred && $state->get_boolean( 'minify.show_note_minify_error' ) ) {
$error_file = $state->get_string( 'minify.error.file' );
if ( $error_file === $file ) {
$state->set( 'minify.show_note_minify_error', false );
$state->save();
}
}
return $return;
}
/**
* Records usage statistics for the current minify request.
*
* @param object $storage The storage object for recording statistics.
*
* @return void
*/
public function w3tc_usage_statistics_of_request( $storage ) {
$stats = \W3TCL\Minify\Minify::getUsageStatistics();
if ( count( $stats ) > 0 ) {
$storage->counter_add( 'minify_requests_total', 1 );
if ( 'text/css' === $stats['content_type'] ) {
$storage->counter_add( 'minify_original_length_css', (int) ( $stats['content_original_length'] / 102.4 ) );
$storage->counter_add( 'minify_output_length_css', (int) ( $stats['content_output_length'] / 102.4 ) );
} else {
$storage->counter_add( 'minify_original_length_js', (int) ( $stats['content_original_length'] / 102.4 ) );
$storage->counter_add( 'minify_output_length_js', (int) ( $stats['content_output_length'] / 102.4 ) );
}
}
}
/**
* Retrieves the size statistics of the cache.
*
* @param int $timeout_time The timeout duration for the statistics retrieval operation.
*
* @return array An array containing the size statistics of the cache.
*/
public function get_stats_size( $timeout_time ) {
$cache = $this->_get_cache();
if ( method_exists( $cache, 'get_stats_size' ) ) {
return $cache->get_stats_size( $timeout_time );
}
return array();
}
/**
* Flushes the cache and optionally handles UI-specific actions.
*
* phpcs:disable WordPress.PHP.DevelopmentFunctions.error_log_debug_backtrace
*
* @param array $extras {
* Optional. Associative array of extra parameters for the flush operation.
*
* @type string $ui_action If set to 'flush_button', performs additional UI-specific actions like clearing options.
* }
*
* @return bool True if the cache flush was successful, false otherwise.
*/
public function flush( $extras = array() ) {
$cache = $this->_get_cache();
// Used to debug - which plugin calls flush all the time and breaks performance.
if ( $this->_config->get_boolean( 'minify.debug' ) ) {
Minify_Core::log( 'Minify flush called from' );
Minify_Core::log( wp_json_encode( debug_backtrace() ) );
}
/*
* Cleanup of map too often is risky since breaks all old minify urls.
* Particularly minified urls in browsercached/cdn cached html becomes invalid.
*/
if ( isset( $extras['ui_action'] ) && 'flush_button' === $extras['ui_action'] ) {
global $wpdb;
$wpdb->query( "DELETE FROM $wpdb->options WHERE `option_name` = 'w3tc_minify' OR `option_name` LIKE 'w3tc_minify_%'" );
}
return $cache->flush();
}
/**
* Retrieves custom data associated with a specific URL.
*
* @param string $url The URL for which custom data is being retrieved.
*
* @return mixed|null Custom data associated with the URL, or null if none exists.
*/
public function get_url_custom_data( $url ) {
if ( preg_match( '~/' . MINIFY_AUTO_FILENAME_REGEX . '$~', $url, $matches ) ) {
list( , $hash, $type ) = $matches;
$key = $this->get_custom_data_key( $hash, $type );
return $this->_cache_get( $key );
}
return null;
}
/**
* Associates custom data with a specified file.
*
* @param string $file The file to associate the custom data with.
* @param mixed $data The custom data to store.
*
* @return void
*/
public function set_file_custom_data( $file, $data ) {
if ( preg_match( '~' . MINIFY_AUTO_FILENAME_REGEX . '$~', $file, $matches ) ) {
list( , $hash, $type ) = $matches;
$key = $this->get_custom_data_key( $hash, $type );
$this->_cache_set( $key, $data );
}
}
/**
* Retrieves the groups of minification sources for a given theme, template, and type.
*
* @param string $theme The theme for which groups are retrieved.
* @param string $template The template for which groups are retrieved.
* @param string $type The type of content (e.g., 'css', 'js').
*
* @return array An array of groups for the specified parameters.
*/
public function get_groups( $theme, $template, $type ) {
$result = array();
switch ( $type ) {
case 'css':
$groups = $this->_config->get_array( 'minify.css.groups' );
break;
case 'js':
$groups = $this->_config->get_array( 'minify.js.groups' );
break;
default:
return $result;
}
if ( isset( $groups[ $theme ]['default'] ) ) {
$locations = (array) $groups[ $theme ]['default'];
} else {
$locations = array();
}
if ( 'default' !== $template && isset( $groups[ $theme ][ $template ] ) ) {
$locations = array_merge_recursive( $locations, (array) $groups[ $theme ][ $template ] );
}
foreach ( $locations as $location => $config ) {
if ( ! empty( $config['files'] ) ) {
foreach ( (array) $config['files'] as $url ) {
if ( ! Util_Environment::is_url( $url ) ) {
$url = Util_Environment::home_domain_root_url() . '/' . ltrim( $url, '/' );
}
$file = Util_Environment::url_to_docroot_filename( $url );
if ( is_null( $file ) ) {
// it's external url.
$precached_file = $this->_precache_file( $url, $type );
if ( $precached_file ) {
$result[ $location ][ $url ] = $precached_file;
} else {
Minify_Core::debug_error( sprintf( 'Unable to cache remote url: "%s"', $url ) );
}
} else {
$path = Util_Environment::document_root() . '/' . $file;
if ( file_exists( $path ) ) {
$result[ $location ][ $file ] = '//' . $file;
} else {
Minify_Core::debug_error( sprintf( 'File "%s" doesn\'t exist', $path ) );
}
}
}
}
}
return $result;
}
/**
* Retrieves the cache ID for the specified file.
*
* @param string $file The file for which the cache ID is retrieved.
*
* @return string The cache ID for the file.
*/
public function get_cache_id( $file ) {
return $file;
}
/**
* Retrieves sources for a specific group within a theme, template, and location.
*
* @param string $theme The theme name.
* @param string $template The template name.
* @param string $location The location name within the group.
* @param string $type The content type (e.g., 'css', 'js').
*
* @return array An array of source file paths.
*/
public function get_sources_group( $theme, $template, $location, $type ) {
$sources = array();
$groups = $this->get_groups( $theme, $template, $type );
if ( isset( $groups[ $location ] ) ) {
$files = (array) $groups[ $location ];
$document_root = Util_Environment::document_root();
foreach ( $files as $file ) {
if ( is_a( $file, '\W3TCL\Minify\Minify_Source' ) ) {
$path = $file->filepath;
} else {
$path = rtrim( $document_root, '/' ) . '/' . ltrim( $file, '/' );
}
$sources[] = $path;
}
}
return $sources;
}
/**
* Retrieves the ID key for a specific group.
*
* @param string $theme The theme name.
* @param string $template The template name.
* @param string $location The location name within the group.
* @param string $type The content type (e.g., 'css', 'js').
*
* @return string The ID key for the specified group.
*/
public function get_id_key_group( $theme, $template, $location, $type ) {
return sprintf( '%s/%s.%s.%s.id', $theme, $template, $location, $type );
}
/**
* Retrieves the group ID for a given theme, template, location, and type.
*
* @param string $theme The theme identifier.
* @param string $template The template identifier.
* @param string $location The location identifier.
* @param string $type The type identifier.
*
* @return string|null The group ID or null if not found.
*/
public function get_id_group( $theme, $template, $location, $type ) {
$key = $this->get_id_key_group( $theme, $template, $location, $type );
$id = $this->_cache_get( $key );
if ( false === $id ) {
$sources = $this->get_sources_group( $theme, $template, $location, $type );
if ( count( $sources ) ) {
$id = $this->_generate_id( $sources, $type );
if ( $id ) {
$this->_cache_set( $key, $id );
}
}
}
return $id;
}
/**
* Generates a custom data key based on a hash and type.
*
* @param string $hash The hash value.
* @param string $type The type of data.
*
* @return string The custom data key.
*/
public function get_custom_data_key( $hash, $type ) {
return sprintf( '%s.%s.customdata', $hash, $type );
}
/**
* Converts a minified filename to an array of filenames for minification.
*
* @param string $hash The hash representing the filename.
* @param string $type The type of the minified content (e.g., CSS or JS).
*
* @return array An array of filenames for minification.
*
* @throws \Exception If the conversion process encounters an error.
*/
public function minify_filename_to_filenames_for_minification( $hash, $type ) {
// if bad data passed as get parameter - it shouldn't fire internal errors.
try {
$files = Minify_Core::minify_filename_to_urls_for_minification( $hash, $type );
} catch ( \Exception $e ) {
$files = array();
}
$result = array();
if ( is_array( $files ) && count( $files ) > 0 ) {
foreach ( $files as $file ) {
$docroot_filename = Util_Environment::url_to_docroot_filename( $file );
if ( Util_Environment::is_url( $file ) && is_null( $docroot_filename ) ) {
// it's external url.
$precached_file = $this->_precache_file( $file, $type );
if ( $precached_file ) {
$result[] = $precached_file;
} else {
Minify_Core::debug_error( sprintf( 'Unable to cache remote file: "%s"', $file ) );
}
} else {
$path = Util_Environment::docroot_to_full_filename( $docroot_filename );
if ( @file_exists( $path ) ) {
$result[] = $file;
} else {
Minify_Core::debug_error( sprintf( 'File "%s" doesn\'t exist', $file ) );
}
}
}
} else {
Minify_Core::debug_error( sprintf( 'Unable to fetch custom files list: "%s.%s"', $hash, $type ), false, 404 );
}
if ( $this->_config->get_boolean( 'minify.debug' ) ) {
Minify_Core::log( implode( "\n", $files ) );
}
return $result;
}
/**
* Handles errors and prepares an error response.
*
* @param string $error The error message.
* @param bool $quiet Whether to suppress output.
* @param bool $report_about_error Whether to report the error.
*
* @return array|void
*/
public function finish_with_error( $error, $quiet = false, $report_about_error = true ) {
$this->_error_occurred = true;
Minify_Core::debug_error( $error );
if ( $report_about_error ) {
$this->_handle_error( $error );
}
$message = '<h1>W3TC Minify Error</h1>';
if ( $this->_config->get_boolean( 'minify.debug' ) ) {
$message .= sprintf( '<p>%s.</p>', $error );
} else {
$message .= '<p>Enable debug mode to see error message.</p>';
}
if ( $quiet ) {
return array(
'content' => $message,
);
}
if ( defined( 'W3TC_IN_MINIFY' ) ) {
status_header( 400 );
echo esc_html( $message );
die();
}
}
/**
* Logs a debug error message.
*
* @param string $error The error message to log.
*
* @return void
*/
public function debug_error( $error ) {
Minify_Core::debug_error( $error );
}
/**
* Pre-caches a file from a URL for minification.
*
* @param string $url The URL of the file.
* @param string $type The type of the file (e.g., CSS or JS).
*
* @return mixed The minified source or false if caching fails.
*/
public function _precache_file( $url, $type ) {
$lifetime = $this->_config->get_integer( 'minify.lifetime' );
$cache_path = sprintf( '%s/minify_%s.%s', Util_Environment::cache_blog_dir( 'minify' ), md5( $url ), $type );
if ( ! file_exists( $cache_path ) || @filemtime( $cache_path ) < ( time() - $lifetime ) ) {
if ( ! @is_dir( dirname( $cache_path ) ) ) {
Util_File::mkdir_from_safe( dirname( $cache_path ), W3TC_CACHE_DIR );
}
// google-fonts (most used for external inclusion) doesnt return full content (unicode-range) for simple useragents.
Util_Http::download(
$url,
$cache_path,
array(
'user-agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.92',
)
);
}
return file_exists( $cache_path ) ? $this->_get_minify_source( $cache_path, $url ) : false;
}
/**
* Retrieves a minify source from a file path and URL.
*
* @param string $file_path The file path to the cached file.
* @param string $url The original URL of the file.
*
* @return \W3TCL\Minify\Minify_Source The minify source object.
*/
public function _get_minify_source( $file_path, $url ) {
return new \W3TCL\Minify\Minify_Source(
array(
'filepath' => $file_path,
'minifyOptions' => array(
'prependRelativePath' => $url,
),
)
);
}
/**
* Retrieves the caching mechanism used by the minification system.
*
* @return mixed The cache object.
*/
public function _get_cache() {
static $cache = null;
if ( is_null( $cache ) ) {
$inner_cache = null;
switch ( $this->_config->get_string( 'minify.engine' ) ) {
case 'memcached':
$config = array(
'blog_id' => Util_Environment::blog_id(),
'instance_id' => Util_Environment::instance_id(),
'host' => Util_Environment::host(),
'module' => 'minify',
'servers' => $this->_config->get_array( 'minify.memcached.servers' ),
'persistent' => $this->_config->get_boolean( 'minify.memcached.persistent' ),
'aws_autodiscovery' => $this->_config->get_boolean( 'minify.memcached.aws_autodiscovery' ),
'username' => $this->_config->get_string( 'minify.memcached.username' ),
'password' => $this->_config->get_string( 'minify.memcached.password' ),
'binary_protocol' => $this->_config->get_boolean( 'minify.memcached.binary_protocol' ),
);
if ( class_exists( 'Memcached' ) ) {
$inner_cache = new Cache_Memcached( $config );
} elseif ( class_exists( 'Memcache' ) ) {
$inner_cache = new Cache_Memcache( $config );
}
break;
case 'redis':
$config = array(
'blog_id' => Util_Environment::blog_id(),
'instance_id' => Util_Environment::instance_id(),
'host' => Util_Environment::host(),
'module' => 'minify',
'servers' => $this->_config->get_array( 'minify.redis.servers' ),
'verify_tls_certificates' => $this->_config->get_boolean( 'minify.redis.verify_tls_certificates' ),
'persistent' => $this->_config->get_boolean( 'minify.redis.persistent' ),
'timeout' => $this->_config->get_integer( 'minify.redis.timeout' ),
'retry_interval' => $this->_config->get_integer( 'minify.redis.retry_interval' ),
'read_timeout' => $this->_config->get_integer( 'minify.redis.read_timeout' ),
'dbid' => $this->_config->get_integer( 'minify.redis.dbid' ),
'password' => $this->_config->get_string( 'minify.redis.password' ),
);
$inner_cache = new Cache_Redis( $config );
break;
case 'apc':
$config = array(
'blog_id' => Util_Environment::blog_id(),
'instance_id' => Util_Environment::instance_id(),
'host' => Util_Environment::host(),
'module' => 'minify',
);
if ( function_exists( 'apcu_store' ) ) {
$inner_cache = new Cache_Apcu( $config );
} elseif ( function_exists( 'apc_store' ) ) {
$inner_cache = new Cache_Apc( $config );
}
break;
case 'eaccelerator':
$config = array(
'blog_id' => Util_Environment::blog_id(),
'instance_id' => Util_Environment::instance_id(),
'host' => Util_Environment::host(),
'module' => 'minify',
);
$inner_cache = new Cache_Eaccelerator( $config );
break;
case 'xcache':
$config = array(
'blog_id' => Util_Environment::blog_id(),
'instance_id' => Util_Environment::instance_id(),
'host' => Util_Environment::host(),
'module' => 'minify',
);
$inner_cache = new Cache_Xcache( $config );
break;
case 'wincache':
$config = array(
'blog_id' => Util_Environment::blog_id(),
'instance_id' => Util_Environment::instance_id(),
'host' => Util_Environment::host(),
'module' => 'minify',
);
$inner_cache = new Cache_Wincache( $config );
break;
}
if ( ! is_null( $inner_cache ) ) {
$cache = new \W3TCL\Minify\Minify_Cache_W3TCDerived( $inner_cache );
} else {
// case 'file' or fallback.
$cache = new \W3TCL\Minify\Minify_Cache_File(
Util_Environment::cache_blog_minify_dir(),
array(
'.htaccess',
'index.html',
'*_old',
),
$this->_config->get_boolean( 'minify.file.locking' ),
$this->_config->get_integer( 'timelimit.cache_flush' ),
( Util_Environment::blog_id() === 0 ? W3TC_CACHE_MINIFY_DIR : null )
);
}
}
return $cache;
}
/**
* Handles an error notification process.
*
* @param string $error The error message to handle.
*
* @return void
*/
public function _handle_error( $error ) {
$notification = $this->_config->get_string( 'minify.error.notification' );
if ( $notification ) {
$file = Util_Request::get_string( 'file' );
$state = Dispatcher::config_state_master();
if ( $file ) {
$state->set( 'minify.error.file', $file );
}
if ( stristr( $notification, 'admin' ) !== false ) {
$state->set( 'minify.error.last', $error );
$state->set( 'minify.show_note_minify_error', true );
}
if ( stristr( $notification, 'email' ) !== false ) {
$last = $state->get_integer( 'minify.error.notification.last' );
// Prevent email flood: send email every 5 min.
if ( ( time() - $last ) > 300 ) {
$state->set( 'minify.error.notification.last', time() );
$this->_send_notification();
}
}
$state->save();
}
}
/**
* Sends an error notification email.
*
* @return bool True if the email was successfully sent, false otherwise.
*/
public function _send_notification() {
$from_email = 'wordpress@' . Util_Environment::host();
$from_name = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
$to_name = get_option( 'admin_email' );
$to_email = $to_name;
$body = @file_get_contents( W3TC_INC_DIR . '/email/minify_error_notification.php' );
$headers = array(
sprintf( 'From: "%s" <%s>', addslashes( $from_name ), $from_email ),
sprintf( 'Reply-To: "%s" <%s>', addslashes( $to_name ), $to_email ),
'Content-Type: text/html; charset=utf-8',
);
@set_time_limit( $this->_config->get_integer( 'timelimit.email_send' ) );
$result = @wp_mail( $to_email, 'W3 Total Cache Error Notification', $body, implode( "\n", $headers ) );
return $result;
}
/**
* Generates an ID based on the given sources and type.
*
* This method takes an array of sources and a type (CSS or JS) and generates a unique ID by
* hashing the contents of the sources and additional configuration options based on the type.
*
* @param array $sources {
* The sources to generate the ID from.
*
* @type string|object $source A source can either be a string representing a file path or an object
* containing a `filepath` property.
* }
* @param string $type The type of the sources (e.g., 'css' or 'js').
*
* @return string|false The generated ID or false if generation fails.
*/
public function _generate_id( $sources, $type ) {
$values = array();
foreach ( $sources as $source ) {
if ( is_string( $source ) ) {
$values[] = $source;
} else {
$values[] = $source->filepath;
}
}
foreach ( $sources as $source ) {
if ( is_string( $source ) && file_exists( $source ) ) {
$data = @file_get_contents( $source );
if ( false !== $data ) {
$values[] = md5( $data );
} else {
return false;
}
} else {
$headers = @get_headers( $source->minifyOptions['prependRelativePath'] );
if ( strpos( $headers[0], '200' ) !== false ) {
$segments = explode( '.', $source->minifyOptions['prependRelativePath'] );
$ext = strtolower( array_pop( $segments ) );
$pc_source = $this->_precache_file( $source->minifyOptions['prependRelativePath'], $ext );
$data = @file_get_contents( $pc_source->filepath );
if ( false !== $data ) {
$values[] = md5( $data );
} else {
return false;
}
} else {
return false;
}
}
}
$keys = array(
'minify.debug',
'minify.engine',
'minify.options',
'minify.symlinks',
);
if ( 'js' === $type ) {
$engine = $this->_config->get_string( 'minify.js.engine' );
if ( $this->_config->get_boolean( 'minify.auto' ) ) {
$keys[] = 'minify.js.method';
} else {
array_merge(
$keys,
array(
'minify.js.combine.header',
'minify.js.combine.body',
'minify.js.combine.footer',
)
);
}
switch ( $engine ) {
case 'js':
$keys = array_merge(
$keys,
array(
'minify.js.strip.comments',
'minify.js.strip.crlf',
)
);
break;
case 'yuijs':
$keys = array_merge(
$keys,
array(
'minify.yuijs.options.line-break',
'minify.yuijs.options.nomunge',
'minify.yuijs.options.preserve-semi',
'minify.yuijs.options.disable-optimizations',
)
);
break;
case 'ccjs':
$keys = array_merge(
$keys,
array(
'minify.ccjs.options.compilation_level',
'minify.ccjs.options.formatting',
)
);
break;
}
} elseif ( 'css' === $type ) {