-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathautoptimizeCache.php
855 lines (766 loc) · 29.7 KB
/
autoptimizeCache.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
<?php
/**
* Handles disk-cache-related operations.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class autoptimizeCache
{
/**
* Cache filename.
*
* @var string
*/
private $filename;
/**
* Cache directory path (with a trailing slash).
*
* @var string
*/
private $cachedir;
/**
* Whether gzipping is done by the web server or us.
* True => we don't gzip, the web server does it.
* False => we do it ourselves.
*
* @var bool
*/
private $nogzip;
/**
* Ctor.
*
* @param string $md5 Hash.
* @param string $ext Extension.
*/
public function __construct( $md5, $ext = 'php' )
{
$_min_ext = '';
if ( apply_filters( 'autoptimize_filter_cache_url_add_min_ext', false ) ) {
$_min_ext = '.min';
}
$this->cachedir = AUTOPTIMIZE_CACHE_DIR;
$this->nogzip = AUTOPTIMIZE_CACHE_NOGZIP;
if ( ! $this->nogzip ) {
$this->filename = AUTOPTIMIZE_CACHEFILE_PREFIX . $md5 . $_min_ext . '.php';
} else {
if ( in_array( $ext, array( 'js', 'css' ) ) ) {
$this->filename = $ext . '/' . AUTOPTIMIZE_CACHEFILE_PREFIX . $md5 . $_min_ext . '.' . $ext;
} else {
$this->filename = AUTOPTIMIZE_CACHEFILE_PREFIX . $md5 . $_min_ext . '.' . $ext;
}
}
}
/**
* Returns true if the cached file exists on disk.
*
* @return bool
*/
public function check()
{
return file_exists( $this->cachedir . $this->filename );
}
/**
* Returns cache contents if they exist, false otherwise.
*
* @return string|false
*/
public function retrieve()
{
if ( $this->check() ) {
if ( false == $this->nogzip ) {
return file_get_contents( $this->cachedir . $this->filename . '.none' );
} else {
return file_get_contents( $this->cachedir . $this->filename );
}
}
return false;
}
/**
* Stores given $data in cache.
*
* @param string $data Data to cache.
* @param string $mime Mimetype.
*
* @return void|bool
*/
public function cache( $data, $mime )
{
// readonly FS explicitly OK'ed by developer, so just pretend all is OK.
if ( defined( 'AUTOPTIMIZE_CACHE_READONLY' ) ) {
return true;
}
// off by default; check if cachedirs exist every time before caching
//
// to be activated for users that experience these ugly errors;
// PHP Warning: file_put_contents failed to open stream: No such file or directory.
if ( apply_filters( 'autoptimize_filter_cache_checkdirs_on_write', false ) ) {
$this->check_and_create_dirs();
}
if ( false === $this->nogzip ) {
// We handle gzipping ourselves.
$file = 'default.php';
$phpcode = file_get_contents( AUTOPTIMIZE_PLUGIN_DIR . 'config/' . $file );
$phpcode = str_replace( array( '%%CONTENT%%', 'exit;' ), array( $mime, '' ), $phpcode );
file_put_contents( $this->cachedir . $this->filename, $phpcode );
file_put_contents( $this->cachedir . $this->filename . '.none', $data );
} else {
// Write code to cache without doing anything else.
file_put_contents( $this->cachedir . $this->filename, $data );
// save fallback .js or .css file if filter true (to be false by default) but not if snippet or single.
if ( self::do_fallback() && strpos( $this->filename, '_snippet_' ) === false && strpos( $this->filename, '_single_' ) === false ) {
$_extension = pathinfo( $this->filename, PATHINFO_EXTENSION );
$_fallback_file = AUTOPTIMIZE_CACHEFILE_PREFIX . 'fallback.' . $_extension;
if ( ( 'css' === $_extension || 'js' === $_extension ) && ! file_exists( $this->cachedir . $_extension . '/' . $_fallback_file ) ) {
file_put_contents( $this->cachedir . $_extension . '/' . $_fallback_file, $data );
}
}
if ( apply_filters( 'autoptimize_filter_cache_create_static_gzip', false ) ) {
// Create an additional cached gzip file.
file_put_contents( $this->cachedir . $this->filename . '.gz', gzencode( $data, 9, FORCE_GZIP ) );
// If PHP Brotli extension is installed, create an additional cached Brotli file.
if ( function_exists( 'brotli_compress' ) ) {
file_put_contents( $this->cachedir . $this->filename . '.br', brotli_compress( $data, 11, BROTLI_GENERIC ) );
}
}
}
// Provide 3rd party action hook for every cache file that is created.
// This hook can for example be used to inject a copy of the created cache file to a other domain.
do_action( 'autoptimize_action_cache_file_created', $this->cachedir . $this->filename );
}
/**
* Get cache filename.
*
* @return string
*/
public function getname()
{
// NOTE: This could've maybe been a do_action() instead, however,
// that ship has sailed.
// The original idea here was to provide 3rd party code a hook so that
// it can "listen" to all the complete autoptimized-urls that the page
// will emit... Or something to that effect I think?
apply_filters( 'autoptimize_filter_cache_getname', AUTOPTIMIZE_CACHE_URL . $this->filename );
return $this->filename;
}
/**
* Returns true if given `$file` is considered a valid Autoptimize cache file,
* false otherwise.
*
* @param string $dir Directory name (with a trailing slash).
* @param string $file Filename.
* @return bool
*/
protected static function is_valid_cache_file( $dir, $file )
{
if ( '.' !== $file && '..' !== $file &&
false !== strpos( $file, AUTOPTIMIZE_CACHEFILE_PREFIX ) &&
is_file( $dir . $file ) ) {
// It's a valid file!
return true;
}
// Everything else is considered invalid!
return false;
}
/**
* Clears contents of AUTOPTIMIZE_CACHE_DIR.
*
* @return void
*/
protected static function clear_cache_classic()
{
$contents = self::get_cache_contents();
foreach ( $contents as $name => $files ) {
$dir = rtrim( AUTOPTIMIZE_CACHE_DIR . $name, '/' ) . '/';
foreach ( $files as $file ) {
if ( self::is_valid_cache_file( $dir, $file ) ) {
@unlink( $dir . $file ); // @codingStandardsIgnoreLine
}
}
}
@unlink( AUTOPTIMIZE_CACHE_DIR . '/.htaccess' ); // @codingStandardsIgnoreLine
}
/**
* Recursively deletes the specified pathname (file/directory) if possible.
* Returns true on success, false otherwise.
*
* @param string $pathname Pathname to remove.
*
* @return bool
*/
protected static function rmdir( $pathname )
{
$files = self::get_dir_contents( $pathname );
foreach ( $files as $file ) {
$path = $pathname . '/' . $file;
if ( is_dir( $path ) ) {
self::rmdir( $path );
} else {
unlink( $path );
}
}
return rmdir( $pathname );
}
/**
* Clears contents of AUTOPTIMIZE_CACHE_DIR by renaming the current
* cache directory into a new one with a unique name and then
* re-creating the default (empty) cache directory.
*
* Important/ Fixme: this does not take multisite into account, so
* if advanced_cache_clear_enabled is true (it is not by default)
* then the content for all subsites is zapped!
*
* @return bool Returns true when everything is done successfully, false otherwise.
*/
protected static function clear_cache_via_rename()
{
$ok = false;
$dir = self::get_pathname_base();
$new_name = self::get_unique_name();
// Makes sure the new pathname is on the same level...
$new_pathname = dirname( $dir ) . '/' . $new_name;
$renamed = @rename( $dir, $new_pathname ); // @codingStandardsIgnoreLine
// When renamed, re-create the default cache directory back so it's
// available again...
if ( $renamed ) {
$ok = self::cacheavail();
}
return $ok;
}
/**
* Returns true when advanced cache clearing is enabled.
*
* @return bool
*/
public static function advanced_cache_clear_enabled()
{
return apply_filters( 'autoptimize_filter_cache_clear_advanced', false );
}
/**
* Returns a (hopefully) unique new cache folder name for renaming purposes.
*
* @return string
*/
protected static function get_unique_name()
{
$prefix = self::get_advanced_cache_clear_prefix();
$new_name = uniqid( $prefix, true );
return $new_name;
}
/**
* Get cache prefix name used in advanced cache clearing mode.
*
* @return string
*/
protected static function get_advanced_cache_clear_prefix()
{
$pathname = self::get_pathname_base();
$basename = basename( $pathname );
$prefix = $basename . '-artifact-';
return $prefix;
}
/**
* Returns an array of file and directory names found within
* the given $pathname without '.' and '..' elements.
*
* @param string $pathname Pathname.
*
* @return array
*/
protected static function get_dir_contents( $pathname )
{
return array_slice( scandir( $pathname ), 2 );
}
/**
* Wipes directories which were created as part of the fast cache clearing
* routine (which renames the current cache directory into a new one with
* a custom-prefixed unique name).
*
* @return bool
*/
public static function delete_advanced_cache_clear_artifacts()
{
// Don't go through these motions (called from the cachechecker) if advanced cache clear isn't even active.
if ( ! self::advanced_cache_clear_enabled() ) {
return false;
}
$dir = self::get_pathname_base();
$prefix = self::get_advanced_cache_clear_prefix();
$parent = dirname( $dir );
$ok = false;
// Returns the list of files without '.' and '..' elements.
$files = self::get_dir_contents( $parent );
if ( is_array( $files ) && ! empty( $files ) ) {
foreach ( $files as $file ) {
$path = $parent . '/' . $file;
$prefixed = ( false !== strpos( $path, $prefix ) );
// Removing only our own (prefixed) directories...
if ( is_dir( $path ) && $prefixed ) {
$ok = self::rmdir( $path );
}
}
}
return $ok;
}
/**
* Returns the cache directory pathname used.
* Done as a function so we canSlightly different
* if multisite is used and `autoptimize_separate_blog_caches` filter
* is used.
*
* @return string
*/
public static function get_pathname()
{
$pathname = self::get_pathname_base();
if ( is_multisite() && apply_filters( 'autoptimize_separate_blog_caches', true ) ) {
$blog_id = get_current_blog_id();
$pathname .= $blog_id . '/';
}
return $pathname;
}
/**
* Returns the base path of our cache directory.
*
* @return string
*/
protected static function get_pathname_base()
{
$pathname = WP_CONTENT_DIR . AUTOPTIMIZE_CACHE_CHILD_DIR;
return $pathname;
}
/**
* Deletes everything from the cache directories.
*
* @param bool $propagate Whether to trigger additional actions when cache is purged.
*
* @return bool
*/
public static function clearall( $propagate = true )
{
if ( defined( 'ET_CORE_VERSION' ) && 'Divi' === get_template() ) {
// see https://blog.futtta.be/2018/11/17/warning-divi-purging-autoptimizes-cache/ .
$dbt = debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS, 2 );
$caller = isset( $dbt[1]['function'] ) ? $dbt[1]['function'] : null;
if ( 'et_core_clear_wp_cache' === $caller ) {
if ( apply_filters( 'autoptimize_filter_cache_divi_wrong_complain', true ) ) {
_doing_it_wrong( 'autoptimizeCache::clearall', 'Divi devs: please don\'t clear Autoptimize\'s cache, it is unneeded and can break sites. You can contact me at [email protected] to discuss.', 'Autoptimize 2.9.6' );
}
return false;
}
}
if ( ! self::cacheavail() || true === apply_filters( 'autoptimize_filter_cache_clearall_disabled', false ) ) {
return false;
}
// TODO/FIXME: If cache is big, switch to advanced/new cache clearing automatically?
if ( self::advanced_cache_clear_enabled() ) {
self::clear_cache_via_rename();
} else {
self::clear_cache_classic();
}
// Remove 404 handler if required.
if ( self::do_fallback() ) {
$_fallback_php = trailingslashit( WP_CONTENT_DIR ) . 'autoptimize_404_handler.php';
@unlink( $_fallback_php ); // @codingStandardsIgnoreLine
}
// Remove the transient so it gets regenerated...
delete_transient( 'autoptimize_stats' );
// Cache was just purged, clear page cache and allow others to hook into our purging...
if ( true === $propagate ) {
if ( ! function_exists( 'autoptimize_do_cachepurged_action' ) ) {
function autoptimize_do_cachepurged_action() {
do_action( 'autoptimize_action_cachepurged' );
}
}
add_action( 'shutdown', 'autoptimize_do_cachepurged_action', 11 );
add_action( 'autoptimize_action_cachepurged', array( 'autoptimizeCache', 'flushPageCache' ), 10, 0 );
}
// Warm cache (part of speedupper)!
if ( apply_filters( 'autoptimize_filter_speedupper', true ) && false == get_transient( 'autoptimize_cache_warmer_protector' ) ) {
set_transient( 'autoptimize_cache_warmer_protector', 'I shall not warm cache for another 10 minutes.', 60 * 10 );
$url = site_url() . '/?ao_speedup_cachebuster=' . rand( 1, 100000 );
$url = apply_filters( 'autoptimize_filter_cache_warmer_url', $url );
$cache = @wp_remote_get( $url ); // @codingStandardsIgnoreLine
unset( $cache );
}
return true;
}
/**
* Wrapper for clearall but with false param
* to ensure the event is not propagated to others
* through our own hooks (to avoid infinite loops).
*
* @return bool
*/
public static function clearall_actionless()
{
return self::clearall( false );
}
/**
* Returns the contents of our cache dirs.
*
* @return array
*/
protected static function get_cache_contents()
{
$contents = array();
foreach ( array( '', 'js', 'css' ) as $dir ) {
$contents[ $dir ] = scandir( AUTOPTIMIZE_CACHE_DIR . $dir );
}
return $contents;
}
/**
* Returns stats about cached contents.
*
* @return array
*/
public static function stats()
{
$stats = get_transient( 'autoptimize_stats' );
// If no transient, do the actual scan!
if ( ! is_array( $stats ) ) {
if ( ! self::cacheavail() ) {
return 0;
}
$stats = self::stats_scan();
$count = $stats[0];
if ( $count > 100 ) {
// Store results in transient.
set_transient(
'autoptimize_stats',
$stats,
apply_filters( 'autoptimize_filter_cache_statsexpiry', HOUR_IN_SECONDS )
);
}
}
return $stats;
}
/**
* Performs a scan of cache directory contents and returns an array
* with 3 values: count, size, timestamp.
* count = total number of found files
* size = total filesize (in bytes) of found files
* timestamp = unix timestamp when the scan was last performed/finished.
*
* @return array
*/
protected static function stats_scan()
{
$count = 0;
$size = 0;
// Scan everything in our cache directories.
foreach ( self::get_cache_contents() as $name => $files ) {
$dir = rtrim( AUTOPTIMIZE_CACHE_DIR . $name, '/' ) . '/';
foreach ( $files as $file ) {
if ( self::is_valid_cache_file( $dir, $file ) ) {
if ( AUTOPTIMIZE_CACHE_NOGZIP &&
(
false !== strpos( $file, '.js' ) ||
false !== strpos( $file, '.css' ) ||
false !== strpos( $file, '.img' ) ||
false !== strpos( $file, '.txt' )
)
) {
// Web server is gzipping, we count .js|.css|.img|.txt files.
$count++;
} elseif ( ! AUTOPTIMIZE_CACHE_NOGZIP && false !== strpos( $file, '.none' ) ) {
// We are gzipping ourselves via php, counting only .none files.
$count++;
}
$size += filesize( $dir . $file );
}
}
}
$stats = array( $count, $size, time() );
return $stats;
}
/**
* Ensures the cache directory exists, is writeable and contains the
* required .htaccess files.
* Returns false in case it fails to ensure any of those things.
*
* @return bool
*/
public static function cacheavail()
{
// readonly FS explicitly OK'ed by dev, let's assume the cache dirs are there!
if ( defined( 'AUTOPTIMIZE_CACHE_READONLY' ) ) {
return true;
}
if ( false === autoptimizeCache::check_and_create_dirs() ) {
return false;
}
// Using .htaccess inside our cache folder to overrule wp-super-cache.
$htaccess = AUTOPTIMIZE_CACHE_DIR . '/.htaccess';
if ( ! is_file( $htaccess ) ) {
/**
* Create `wp-content/AO_htaccess_tmpl` file with
* whatever htaccess rules you might need
* if you want to override default AO htaccess
*/
$htaccess_tmpl = WP_CONTENT_DIR . '/AO_htaccess_tmpl';
if ( is_file( $htaccess_tmpl ) ) {
$content = file_get_contents( $htaccess_tmpl );
} elseif ( is_multisite() || ! AUTOPTIMIZE_CACHE_NOGZIP ) {
$content = '<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css A30672000
ExpiresByType text/javascript A30672000
ExpiresByType application/javascript A30672000
</IfModule>
<IfModule mod_headers.c>
Header append Cache-Control "public, immutable"
</IfModule>
<IfModule mod_deflate.c>
<FilesMatch "\.(js|css)$">
SetOutputFilter DEFLATE
</FilesMatch>
</IfModule>
<IfModule mod_authz_core.c>
<Files *.php>
Require all granted
</Files>
</IfModule>
<IfModule !mod_authz_core.c>
<Files *.php>
Order allow,deny
Allow from all
</Files>
</IfModule>';
} else {
$content = '<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css A30672000
ExpiresByType text/javascript A30672000
ExpiresByType application/javascript A30672000
</IfModule>
<IfModule mod_headers.c>
Header append Cache-Control "public, immutable"
</IfModule>
<IfModule mod_deflate.c>
<FilesMatch "\.(js|css)$">
SetOutputFilter DEFLATE
</FilesMatch>
</IfModule>
<IfModule mod_authz_core.c>
<Files *.php>
Require all denied
</Files>
</IfModule>
<IfModule !mod_authz_core.c>
<Files *.php>
Order deny,allow
Deny from all
</Files>
</IfModule>';
}
if ( self::do_fallback() === true ) {
$content .= "\nErrorDocument 404 " . trailingslashit( parse_url( content_url(), PHP_URL_PATH ) ) . 'autoptimize_404_handler.php';
}
@file_put_contents( $htaccess, $content ); // @codingStandardsIgnoreLine
}
if ( self::do_fallback() ) {
self::check_fallback_php();
}
// All OK!
return true;
}
/**
* Checks if fallback-php file exists and create it if not.
*
* Return bool
*/
public static function check_fallback_php() {
$_fallback_filename = 'autoptimize_404_handler.php';
$_fallback_php = trailingslashit( WP_CONTENT_DIR ) . $_fallback_filename;
$_fallback_status = true;
if ( ! file_exists( $_fallback_php ) && is_writable( WP_CONTENT_DIR ) ) {
$_fallback_php_contents = file_get_contents( AUTOPTIMIZE_PLUGIN_DIR . 'config/' . $_fallback_filename );
$_fallback_php_contents = str_replace( '<?php exit;', '<?php', $_fallback_php_contents );
$_fallback_php_contents = str_replace( '<!--ao-cache-dir-->', AUTOPTIMIZE_CACHE_DIR, $_fallback_php_contents );
$_fallback_php_contents = str_replace( '<!--ao-cachefile-prefix-->', AUTOPTIMIZE_CACHEFILE_PREFIX, $_fallback_php_contents );
if ( is_multisite() ) {
$_fallback_php_contents = str_replace( '$multisite = false;', '$multisite = true;', $_fallback_php_contents );
}
if ( apply_filters( 'autoptimize_filter_cache_fallback_log_errors', false ) ) {
$_fallback_php_contents = str_replace( '// error_log', 'error_log', $_fallback_php_contents );
}
$_fallback_status = file_put_contents( $_fallback_php, $_fallback_php_contents );
}
return $_fallback_status;
}
/**
* Tells if AO should try to avoid 404's by creating fallback filesize
* and create a php 404 handler and tell .htaccess to redirect to said handler
* and hook into WordPress to redirect 404 to said handler as well. NGINX users
* are smart enough to get this working, no? ;-)
*
* Return bool
*/
public static function do_fallback() {
static $_do_fallback = null;
if ( null === $_do_fallback ) {
$_do_fallback = (bool) apply_filters( 'autoptimize_filter_cache_do_fallback', autoptimizeOptionWrapper::get_option( 'autoptimize_cache_fallback', '1' ) );
}
return $_do_fallback;
}
/**
* Hooks into template_redirect, will act on 404-ing requests for
* Autoptimized files and redirects to the fallback CSS/ JS if available
* and 410'ing ("Gone") if fallback not available.
*/
public static function wordpress_notfound_fallback() {
$original_request = strtok( $_SERVER['REQUEST_URI'], '?' );
if ( strpos( $original_request, wp_basename( WP_CONTENT_DIR ) . AUTOPTIMIZE_CACHE_CHILD_DIR ) !== false && is_404() ) {
// make sure this is not considered a 404.
global $wp_query;
$wp_query->is_404 = false;
// set fallback path.
$js_or_css = pathinfo( $original_request, PATHINFO_EXTENSION );
$fallback_path = AUTOPTIMIZE_CACHE_DIR . $js_or_css . '/autoptimize_fallback.' . $js_or_css;
// prepare for Shakeeb's Unused CSS files to be 404-handled as well.
if ( strpos( $original_request, 'uucss/uucss-' ) !== false ) {
$original_request = preg_replace( '/uucss\/uucss-[a-z0-9]{32}-/', 'css/', $original_request );
}
// set fallback URL.
$fallback_target = preg_replace( '/(.*)_(?:[a-z0-9]{32})\.(js|css)$/', '${1}_fallback.${2}', $original_request );
// redirect to fallback if possible.
if ( $original_request !== $fallback_target && file_exists( $fallback_path ) ) {
// redirect to fallback.
wp_redirect( $fallback_target, 302 );
} else {
// return HTTP 410 (gone) reponse.
status_header( 410 );
}
}
}
/**
* Checks if cache dirs exist and create if not.
* Returns false if not succesful.
*
* @return bool
*/
public static function check_and_create_dirs() {
if ( ! defined( 'AUTOPTIMIZE_CACHE_DIR' ) ) {
// We didn't set a cache.
return false;
}
foreach ( array( '', 'js', 'css' ) as $dir ) {
if ( ! self::check_cache_dir( AUTOPTIMIZE_CACHE_DIR . $dir ) ) {
return false;
}
}
return true;
}
/**
* Ensures the specified `$dir` exists and is writeable.
* Returns false if that's not the case.
*
* @param string $dir Directory to check/create.
*
* @return bool
*/
protected static function check_cache_dir( $dir )
{
// Try creating the dir if it doesn't exist.
if ( ! file_exists( $dir ) ) {
@mkdir( $dir, 0775, true ); // @codingStandardsIgnoreLine
if ( ! file_exists( $dir ) ) {
return false;
}
}
// If we still cannot write, bail.
if ( ! is_writable( $dir ) ) {
return false;
}
// Create an index.html in there to avoid prying eyes!
$idx_file = rtrim( $dir, '/\\' ) . '/index.html';
if ( ! is_file( $idx_file ) ) {
@file_put_contents( $idx_file, '<html><head><meta name="robots" content="noindex, nofollow"></head><body>Generated by <a href="http://wordpress.org/extend/plugins/autoptimize/" rel="nofollow">Autoptimize</a></body></html>' ); // @codingStandardsIgnoreLine
}
return true;
}
/**
* Flushes as many page cache plugin's caches as possible.
*
* @return void
*/
// @codingStandardsIgnoreStart
public static function flushPageCache()
{
if ( function_exists( 'wp_cache_clear_cache' ) ) {
if ( is_multisite() ) {
$blog_id = get_current_blog_id();
wp_cache_clear_cache( $blog_id );
} else {
wp_cache_clear_cache();
}
} elseif ( has_action( 'cachify_flush_cache' ) ) {
do_action( 'cachify_flush_cache' );
} elseif ( function_exists( 'w3tc_pgcache_flush' ) ) {
w3tc_pgcache_flush();
} elseif ( function_exists( 'wp_fast_cache_bulk_delete_all' ) ) {
wp_fast_cache_bulk_delete_all();
} elseif ( function_exists( 'rapidcache_clear_cache' ) ) {
rapidcache_clear_cache();
} elseif ( class_exists( 'Swift_Performance_Cache' ) ) {
Swift_Performance_Cache::clear_all_cache();
} elseif ( class_exists( 'WpFastestCache' ) ) {
$wpfc = new WpFastestCache();
$wpfc->deleteCache();
} elseif ( class_exists( 'c_ws_plugin__qcache_purging_routines' ) ) {
c_ws_plugin__qcache_purging_routines::purge_cache_dir(); // quick cache
} elseif ( class_exists( 'zencache' ) ) {
zencache::clear();
} elseif ( class_exists( 'comet_cache' ) ) {
comet_cache::clear();
} elseif ( class_exists( 'WpeCommon' ) ) {
// WPEngine cache purge/flush methods to call by default
$wpe_methods = array(
'purge_varnish_cache',
);
// More agressive clear/flush/purge behind a filter
if ( apply_filters( 'autoptimize_flush_wpengine_aggressive', false ) ) {
$wpe_methods = array_merge( $wpe_methods, array( 'purge_memcached', 'clear_maxcdn_cache' ) );
}
// Filtering the entire list of WpeCommon methods to be called (for advanced usage + easier testing)
$wpe_methods = apply_filters( 'autoptimize_flush_wpengine_methods', $wpe_methods );
foreach ( $wpe_methods as $wpe_method ) {
if ( method_exists( 'WpeCommon', $wpe_method ) ) {
WpeCommon::$wpe_method();
}
}
} elseif ( function_exists( 'sg_cachepress_purge_cache' ) ) {
sg_cachepress_purge_cache();
} elseif ( array_key_exists( 'KINSTA_CACHE_ZONE', $_SERVER ) ) {
$_kinsta_clear_cache_url = 'https://localhost/kinsta-clear-cache-all';
$_kinsta_response = wp_remote_get(
$_kinsta_clear_cache_url,
array(
'sslverify' => false,
'timeout' => 5,
)
);
} elseif ( class_exists( 'RaidboxesNginxCacheFunctions' ) ) {
$rb_cache_helper = new RaidboxesNginxCacheFunctions();
$rb_cache_helper->purge_cache();
} elseif ( defined('NGINX_HELPER_BASENAME') ) {
do_action( 'rt_nginx_helper_purge_all' );
} elseif ( file_exists( WP_CONTENT_DIR . '/wp-cache-config.php' ) && function_exists( 'prune_super_cache' ) ) {
// fallback for WP-Super-Cache
global $cache_path;
if ( is_multisite() ) {
$blog_id = get_current_blog_id();
prune_super_cache( get_supercache_dir( $blog_id ), true );
prune_super_cache( $cache_path . 'blogs/', true );
} else {
prune_super_cache( $cache_path . 'supercache/', true );
prune_super_cache( $cache_path, true );
}
} elseif ( class_exists( 'NginxCache' ) ) {
$nginx_cache = new NginxCache();
$nginx_cache->purge_zone_once();
}
}
// @codingStandardsIgnoreEnd
}