PgCache_Environment.php
40.9 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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
<?php
namespace W3TC;
/**
* class PgCache_Environment
*/
class PgCache_Environment {
/**
* Fixes environment in each wp-admin request
*
* @param Config $config
* @param bool $force_all_checks
*
* @throws Util_Environment_Exceptions
*/
public function fix_on_wpadmin_request( $config, $force_all_checks ) {
$exs = new Util_Environment_Exceptions();
if ( ( !defined( 'WP_CACHE' ) || !WP_CACHE ) ) {
try {
$this->wp_config_add_directive();
} catch ( Util_WpFile_FilesystemOperationException $ex ) {
$exs->push( $ex );
}
}
$this->fix_folders( $config, $exs );
if ( $config->get_boolean( 'config.check' ) || $force_all_checks ) {
if ( $config->get_boolean( 'pgcache.enabled' ) &&
$config->get_string( 'pgcache.engine' ) == 'file_generic' ) {
$this->rules_core_add( $config, $exs );
$this->rules_cache_add( $config, $exs );
} else {
$this->rules_core_remove( $exs );
$this->rules_cache_remove( $exs );
}
}
// if no errors so far - check if rewrite actually works
if ( count( $exs->exceptions() ) <= 0 ) {
try {
if ( $config->get_boolean( 'pgcache.enabled' ) &&
$config->get_string( 'pgcache.engine' ) == 'file_generic' ) {
$this->verify_file_generic_compatibility();
if ( $config->get_boolean( 'pgcache.debug' ) )
$this->verify_file_generic_rewrite_working();
}
} catch ( \Exception $ex ) {
$exs->push( $ex );
}
}
if ( count( $exs->exceptions() ) > 0 )
throw $exs;
}
/**
* Fixes environment once event occurs
*
* @param Config $config
* @param string $event
* @param null|Config $old_config
* @throws Util_Environment_Exceptions
*/
public function fix_on_event( $config, $event, $old_config = null ) {
// Schedules events
if ( $config->get_boolean( 'pgcache.enabled' ) &&
( $config->get_string( 'pgcache.engine' ) == 'file' ||
$config->get_string( 'pgcache.engine' ) == 'file_generic' ) ) {
if ( $old_config != null &&
$config->get_integer( 'pgcache.file.gc' ) !=
$old_config->get_integer( 'pgcache.file.gc' ) ) {
$this->unschedule_gc();
}
if ( !wp_next_scheduled( 'w3_pgcache_cleanup' ) ) {
wp_schedule_event( time(),
'w3_pgcache_cleanup', 'w3_pgcache_cleanup' );
}
} else {
$this->unschedule_gc();
}
// Schedule prime event
if ( $config->get_boolean( 'pgcache.enabled' ) &&
$config->get_boolean( 'pgcache.prime.enabled' ) ) {
if ( $old_config != null &&
$config->get_integer( 'pgcache.prime.interval' ) !=
$old_config->get_integer( 'pgcache.prime.interval' ) ) {
$this->unschedule_prime();
}
if ( !wp_next_scheduled( 'w3_pgcache_prime' ) ) {
wp_schedule_event( time(),
'w3_pgcache_prime', 'w3_pgcache_prime' );
}
} else {
$this->unschedule_prime();
}
}
/**
* Fixes environment after plugin deactivation
*
* @throws Util_Environment_Exceptions
*/
public function fix_after_deactivation() {
$exs = new Util_Environment_Exceptions();
try {
$this->wp_config_remove_directive( $exs );
} catch ( Util_WpFile_FilesystemOperationException $ex ) {
$exs->push( $ex );
}
$this->rules_core_remove( $exs );
$this->rules_cache_remove( $exs );
$this->unschedule_gc();
$this->unschedule_prime();
if ( count( $exs->exceptions() ) > 0 )
throw $exs;
}
/**
* Returns required rules for module
*
* @param Config $config
* @return array
*/
public function get_required_rules( $config ) {
if ( !$config->get_boolean( 'pgcache.enabled' ) ||
$config->get_string( 'pgcache.engine' ) != 'file_generic' )
return null;
$rewrite_rules = array();
$pgcache_rules_core_path = Util_Rule::get_pgcache_rules_core_path();
$rewrite_rules[] = array(
'filename' => $pgcache_rules_core_path,
'content' => $this->rules_core_generate( $config ),
'priority' => 1000
);
$pgcache_rules_cache_path = Util_Rule::get_pgcache_rules_cache_path();
$rewrite_rules[] = array(
'filename' => $pgcache_rules_cache_path,
'content' => $this->rules_cache_generate( $config )
);
return $rewrite_rules;
}
/**
* Fixes folders
*
* @param Config $config
* @param Util_Environment_Exceptions $exs
*/
private function fix_folders( $config, $exs ) {
if ( !$config->get_boolean( 'pgcache.enabled' ) )
return;
// folder that we delete if exists and not writeable
if ( $config->get_string( 'pgcache.engine' ) == 'file_generic' )
$dir = W3TC_CACHE_PAGE_ENHANCED_DIR;
else if ( $config->get_string( 'pgcache.engine' ) != 'file' )
$dir = W3TC_CACHE_DIR . '/page';
else
return;
try{
if ( file_exists( $dir ) && !is_writeable( $dir ) )
Util_WpFile::delete_folder( $dir, '', $_SERVER['REQUEST_URI'] );
} catch ( Util_WpFile_FilesystemRmdirException $ex ) {
$exs->push( $ex );
}
}
/**
* Checks if mode can be used
*/
private function verify_file_generic_compatibility() {
$permalink_structure = get_option( 'permalink_structure' );
if ( $permalink_structure == '' ) {
throw new Util_Environment_Exception( 'Disk Enhanced mode ' .
'can\'t work with "Default" permalinks structure' );
}
}
/**
* Fixes environment for enabled pgcache
*
* @throws Util_Environment_Exceptions
*/
private function verify_file_generic_rewrite_working() {
$url = get_home_url() . '/w3tc_rewrite_test' . rand();
if ( !$this->test_rewrite( $url ) ) {
$key = sprintf( 'w3tc_rewrite_test_result_%s', substr( md5( $url ), 0, 16 ) );
$result = get_transient( $key );
$home_url = get_home_url();
$tech_message =
( Util_Environment::is_nginx() ? 'nginx configuration file' : '.htaccess file' ) .
' contains rules to rewrite url ' .
$home_url . '/w3tc_rewrite_test into ' .
$home_url . '/?w3tc_rewrite_test which, if handled by ' .
'plugin, return "OK" message.<br/>';
$tech_message .= 'The plugin made a request to ' .
$home_url . '/w3tc_rewrite_test but received: <br />' .
$result . '<br />';
$tech_message .= 'instead of "OK" response. <br />';
$error = '<strong>W3 Total Cache error:</strong> ' .
'It appears Page Cache ' .
'<acronym title="Uniform Resource Locator">URL</acronym> ' .
'rewriting is not working. ';
if ( Util_Environment::is_preview_mode() ) {
$error .= ' This could be due to using Preview mode. <a href="' . $url . '">Click here</a> to manually verify its working. It should say OK. <br />';
}
if ( Util_Environment::is_nginx() ) {
$error .= 'Please verify that all configuration files are ' .
'included in the configuration file ' .
'(and that you have reloaded / restarted nginx).';
} else {
$error .= 'Please verify that the server configuration ' .
'allows .htaccess';
}
$error .= '<br />Unfortunately disk enhanced page caching will ' .
'not function without custom rewrite rules. ' .
'Please ask your server administrator for assistance. ' .
'Also refer to <a href="' .
admin_url( 'admin.php?page=w3tc_install' ) .
'">the install page</a> for the rules for your server.';
throw new Util_Environment_Exception( $error, $tech_message );
}
}
/**
* Perform rewrite test
*
* @param string $url
* @return boolean
*/
private function test_rewrite( $url ) {
$key = sprintf( 'w3tc_rewrite_test_%s', substr( md5( $url ), 0, 16 ) );
$result = get_transient( $key );
if ( $result === false ) {
$response = Util_Http::get( $url );
$result = ( !is_wp_error( $response ) && $response['response']['code'] == 200 && trim( $response['body'] ) == 'OK' );
if ( $result ) {
set_transient( $key, $result, 30 );
} else {
$key_result = sprintf( 'w3tc_rewrite_test_result_%s', substr( md5( $url ), 0, 16 ) );
set_transient( $key_result, is_wp_error( $response )? $response->get_error_message(): implode( ' ', $response['response'] ), 30 );
}
}
return $result;
}
/**
* scheduling stuff
*/
private function unschedule_gc() {
if ( wp_next_scheduled( 'w3_pgcache_cleanup' ) )
wp_clear_scheduled_hook( 'w3_pgcache_cleanup' );
}
private function unschedule_prime() {
if ( wp_next_scheduled( 'w3_pgcache_prime' ) )
wp_clear_scheduled_hook( 'w3_pgcache_prime' );
}
/*
* wp-config modification
*/
/**
* Enables WP_CACHE
*
* @throws Util_WpFile_FilesystemOperationException with S/FTP form if it can't get the required filesystem credentials
*/
private function wp_config_add_directive() {
$config_path = Util_Environment::wp_config_path();
$config_data = @file_get_contents( $config_path );
if ( $config_data === false )
return;
$new_config_data = $this->wp_config_remove_from_content( $config_data );
$new_config_data = preg_replace(
'~<\?(php)?~',
"\\0\r\n" . $this->wp_config_addon(),
$new_config_data,
1 );
if ( $new_config_data != $config_data ) {
try {
Util_WpFile::write_to_file( $config_path, $new_config_data );
} catch ( Util_WpFile_FilesystemOperationException $ex ) {
throw new Util_WpFile_FilesystemModifyException(
$ex->getMessage(), $ex->credentials_form(),
'Edit file <strong>' . $config_path .
'</strong> and add next lines:', $config_path,
$this->wp_config_addon() );
}
}
}
/**
* Disables WP_CACHE
*
* @throws Util_WpFile_FilesystemOperationException with S/FTP form if it can't get the required filesystem credentials
*/
private function wp_config_remove_directive() {
$config_path = Util_Environment::wp_config_path();
$config_data = @file_get_contents( $config_path );
if ( $config_data === false )
return;
$new_config_data = $this->wp_config_remove_from_content( $config_data );
if ( $new_config_data != $config_data ) {
try {
Util_WpFile::write_to_file( $config_path, $new_config_data );
} catch ( Util_WpFile_FilesystemOperationException $ex ) {
throw new Util_WpFile_FilesystemModifyException(
$ex->getMessage(), $ex->credentials_form(),
'Edit file <strong>' . $config_path .
'</strong> and remove next lines:',
$config_path, $this->wp_config_addon() );
}
}
}
/**
* Returns string Addon required for plugin in wp-config
*/
private function wp_config_addon() {
return "/** Enable W3 Total Cache */\r\n" .
"define('WP_CACHE', true); // Added by W3 Total Cache\r\n";
}
/**
* Disables WP_CACHE
*
* @param string $config_data wp-config.php content
* @return string
* @throws Util_WpFile_FilesystemOperationException with S/FTP form if it can't get the required filesystem credentials
*/
private function wp_config_remove_from_content( $config_data ) {
$config_data = preg_replace(
"~\\/\\*\\* Enable W3 Total Cache \\*\\*?\\/.*?\\/\\/ Added by W3 Total Cache(\r\n)*~s",
'', $config_data );
$config_data = preg_replace(
"~(\\/\\/\\s*)?define\\s*\\(\\s*['\"]?WP_CACHE['\"]?\\s*,.*?\\)\\s*;+\\r?\\n?~is",
'', $config_data );
return $config_data;
}
/**
* rules core modification
*/
/**
* Writes directives to WP .htaccess / nginx.conf
* returns true if modifications has been made
*/
private function rules_core_add( $config, $exs ) {
$path = Util_Rule::get_pgcache_rules_core_path();
if ( $path === false )
return;
$original_data = @file_get_contents( $path );
if ( $original_data === false )
$original_data = '';
$data = $original_data;
if ( $has_wpsc = Util_Rule::has_rules( $data, W3TC_MARKER_BEGIN_PGCACHE_WPSC, W3TC_MARKER_END_PGCACHE_WPSC ) )
$data = Util_Rule::erase_rules( $data, W3TC_MARKER_BEGIN_PGCACHE_WPSC, W3TC_MARKER_END_PGCACHE_WPSC );
$rules = $this->rules_core_generate( $config );
$rules_missing = ( strstr( Util_Rule::clean_rules( $data ), Util_Rule::clean_rules( $rules ) ) === false );
if ( !$has_wpsc && !$rules_missing )
return; // modification of file not required
$replace_start = strpos( $data, W3TC_MARKER_BEGIN_PGCACHE_CORE );
$replace_end = strpos( $data, W3TC_MARKER_END_PGCACHE_CORE );
if ( $replace_start !== false && $replace_end !== false && $replace_start < $replace_end ) {
$replace_length = $replace_end - $replace_start +
strlen( W3TC_MARKER_END_PGCACHE_CORE ) + 1;
} else {
$replace_start = false;
$replace_length = 0;
$search = array(
W3TC_MARKER_BEGIN_BROWSERCACHE_NO404WP => 0,
W3TC_MARKER_BEGIN_WORDPRESS => 0,
W3TC_MARKER_END_MINIFY_CORE =>
strlen( W3TC_MARKER_END_MINIFY_CORE ) + 1,
W3TC_MARKER_END_BROWSERCACHE_CACHE =>
strlen( W3TC_MARKER_END_BROWSERCACHE_CACHE ) + 1,
W3TC_MARKER_END_PGCACHE_CACHE =>
strlen( W3TC_MARKER_END_PGCACHE_CACHE ) + 1,
W3TC_MARKER_END_MINIFY_CACHE =>
strlen( W3TC_MARKER_END_MINIFY_CACHE ) + 1
);
foreach ( $search as $string => $length ) {
$replace_start = strpos( $data, $string );
if ( $replace_start !== false ) {
$replace_start += $length;
break;
}
}
}
if ( $replace_start !== false ) {
$data = Util_Rule::trim_rules( substr_replace( $data, $rules,
$replace_start, $replace_length ) );
} else {
$data = Util_Rule::trim_rules( $data . $rules );
}
try {
Util_WpFile::write_to_file( $path, $data );
} catch ( Util_WpFile_FilesystemOperationException $ex ) {
if ( $has_wpsc )
$exs->push( new Util_WpFile_FilesystemModifyException(
$ex->getMessage(), $ex->credentials_form(),
sprintf( __( 'Edit file <strong>%s</strong> and remove all lines between and including
<strong>%s</strong> and <strong>%s</strong> markers.', 'w3-total-cache' )
, $path
, W3TC_MARKER_BEGIN_PGCACHE_WPSC
, W3TC_MARKER_END_PGCACHE_WPSC
), $path ) );
if ( $rules_missing ) {
if ( strpos( $data, W3TC_MARKER_BEGIN_PGCACHE_CORE ) !== false )
$exs->push( new Util_WpFile_FilesystemModifyException(
$ex->getMessage(), $ex->credentials_form(),
sprintf( __( 'Edit file <strong>%s</strong> and replace all lines between and including
<strong>%s</strong> and <strong>%s</strong> markers with:', 'w3-total-cache' )
, $path
, W3TC_MARKER_BEGIN_PGCACHE_CORE
, W3TC_MARKER_END_PGCACHE_CORE
), $path, $rules ) );
else
$exs->push( new Util_WpFile_FilesystemModifyException(
$ex->getMessage(), $ex->credentials_form(),
sprintf( __( 'Edit file <strong>%s</strong> and add the following rules above the WordPress
directives:' )
, $path
), $path, $rules ) );
}
return;
}
Util_Rule::after_rules_modified();
}
/**
* Removes Page Cache core directives
*
* @param Util_Environment_Exceptions $exs
* @throws Util_WpFile_FilesystemOperationException with S/FTP form if it can't get the required filesystem credentials
*/
private function rules_core_remove( $exs ) {
Util_Rule::remove_rules( $exs, Util_Rule::get_pgcache_rules_core_path(),
W3TC_MARKER_BEGIN_PGCACHE_CORE,
W3TC_MARKER_END_PGCACHE_CORE
);
}
/**
* Generates rules for WP dir
*
* @param Config $config
* @return string
*/
private function rules_core_generate( $config ) {
switch ( true ) {
case Util_Environment::is_apache():
case Util_Environment::is_litespeed():
return $this->rules_core_generate_apache( $config );
case Util_Environment::is_nginx():
return $this->rules_core_generate_nginx( $config );
}
return '';
}
/**
* Generates rules for WP dir
*
* @param Config $config
* @return string
*/
private function rules_core_generate_apache( $config ) {
$rewrite_base = Util_Environment::network_home_url_uri();
$cache_dir = Util_Environment::normalize_path( W3TC_CACHE_PAGE_ENHANCED_DIR );
$permalink_structure = get_option( 'permalink_structure' );
$current_user = wp_get_current_user();
/**
* Auto reject cookies
*/
$reject_cookies = array(
'comment_author',
'wp-postpass'
);
if ( $config->get_string( 'pgcache.engine' ) == 'file_generic' ) {
$reject_cookies[] = 'w3tc_logged_out';
}
/**
* Reject cache for logged in users
* OR
* Reject cache for roles if any
*/
if ( $config->get_boolean( 'pgcache.reject.logged' ) ) {
$reject_cookies = array_merge( $reject_cookies, array(
'wordpress_logged_in'
) );
} elseif ( $config->get_boolean( 'pgcache.reject.logged_roles' ) ) {
$new_cookies = array();
foreach ( $config->get_array( 'pgcache.reject.roles' ) as $role ) {
$new_cookies[] = 'w3tc_logged_' . md5( NONCE_KEY . $role );
}
$reject_cookies = array_merge( $reject_cookies, $new_cookies );
}
/**
* Custom config
*/
$reject_cookies = array_merge( $reject_cookies, $config->get_array( 'pgcache.reject.cookie' ) );
Util_Rule::array_trim( $reject_cookies );
$reject_user_agents = $config->get_array( 'pgcache.reject.ua' );
if ( $config->get_boolean( 'pgcache.compatibility' ) ) {
$reject_user_agents = array_merge( array( W3TC_POWERED_BY ), $reject_user_agents );
}
Util_Rule::array_trim( $reject_user_agents );
/**
* Generate directives
*/
$env_W3TC_UA = '';
$env_W3TC_REF = '';
$env_W3TC_SSL = '';
$env_W3TC_ENC = '';
$rules = '';
$rules .= W3TC_MARKER_BEGIN_PGCACHE_CORE . "\n";
$rules .= "<IfModule mod_rewrite.c>\n";
$rules .= " RewriteEngine On\n";
$rules .= " RewriteBase " . $rewrite_base . "\n";
if ( $config->get_boolean( 'pgcache.debug' ) ) {
$rules .= " RewriteRule ^(.*\\/)?w3tc_rewrite_test([0-9]+)/?$ $1?w3tc_rewrite_test=1 [L]\n";
}
/**
* Check for mobile redirect
*/
if ( $config->get_boolean( 'mobile.enabled' ) ) {
$mobile_groups = $config->get_array( 'mobile.rgroups' );
foreach ( $mobile_groups as $mobile_group => $mobile_config ) {
$mobile_enabled = ( isset( $mobile_config['enabled'] ) ? (boolean) $mobile_config['enabled'] : false );
$mobile_agents = ( isset( $mobile_config['agents'] ) ? (array) $mobile_config['agents'] : '' );
$mobile_redirect = ( isset( $mobile_config['redirect'] ) ? $mobile_config['redirect'] : '' );
if ( $mobile_enabled && count( $mobile_agents ) && $mobile_redirect ) {
$rules .= " RewriteCond %{HTTP_USER_AGENT} (" . implode( '|', $mobile_agents ) . ") [NC]\n";
$rules .= " RewriteRule .* " . $mobile_redirect . " [R,L]\n";
}
}
}
/**
* Check for referrer redirect
*/
if ( $config->get_boolean( 'referrer.enabled' ) ) {
$referrer_groups = $config->get_array( 'referrer.rgroups' );
foreach ( $referrer_groups as $referrer_group => $referrer_config ) {
$referrer_enabled = ( isset( $referrer_config['enabled'] ) ? (boolean) $referrer_config['enabled'] : false );
$referrer_referrers = ( isset( $referrer_config['referrers'] ) ? (array) $referrer_config['referrers'] : '' );
$referrer_redirect = ( isset( $referrer_config['redirect'] ) ? $referrer_config['redirect'] : '' );
if ( $referrer_enabled && count( $referrer_referrers ) && $referrer_redirect ) {
$rules .= " RewriteCond %{HTTP_COOKIE} w3tc_referrer=.*(" . implode( '|', $referrer_referrers ) . ") [NC]\n";
$rules .= " RewriteRule .* " . $referrer_redirect . " [R,L]\n";
}
}
}
/**
* Set mobile groups
*/
if ( $config->get_boolean( 'mobile.enabled' ) ) {
$mobile_groups = array_reverse( $config->get_array( 'mobile.rgroups' ) );
foreach ( $mobile_groups as $mobile_group => $mobile_config ) {
$mobile_enabled = ( isset( $mobile_config['enabled'] ) ? (boolean) $mobile_config['enabled'] : false );
$mobile_agents = ( isset( $mobile_config['agents'] ) ? (array) $mobile_config['agents'] : '' );
$mobile_redirect = ( isset( $mobile_config['redirect'] ) ? $mobile_config['redirect'] : '' );
if ( $mobile_enabled && count( $mobile_agents ) && !$mobile_redirect ) {
$rules .= " RewriteCond %{HTTP_USER_AGENT} (" . implode( '|', $mobile_agents ) . ") [NC]\n";
$rules .= " RewriteRule .* - [E=W3TC_UA:_" . $mobile_group . "]\n";
$env_W3TC_UA = '%{ENV:W3TC_UA}';
}
}
}
/**
* Set referrer groups
*/
if ( $config->get_boolean( 'referrer.enabled' ) ) {
$referrer_groups = array_reverse( $config->get_array( 'referrer.rgroups' ) );
foreach ( $referrer_groups as $referrer_group => $referrer_config ) {
$referrer_enabled = ( isset( $referrer_config['enabled'] ) ? (boolean) $referrer_config['enabled'] : false );
$referrer_referrers = ( isset( $referrer_config['referrers'] ) ? (array) $referrer_config['referrers'] : '' );
$referrer_redirect = ( isset( $referrer_config['redirect'] ) ? $referrer_config['redirect'] : '' );
if ( $referrer_enabled && count( $referrer_referrers ) && !$referrer_redirect ) {
$rules .= " RewriteCond %{HTTP_COOKIE} w3tc_referrer=.*(" . implode( '|', $referrer_referrers ) . ") [NC]\n";
$rules .= " RewriteRule .* - [E=W3TC_REF:_" . $referrer_group . "]\n";
$env_W3TC_REF = '%{ENV:W3TC_REF}';
}
}
}
/**
* Set HTTPS
*/
if ( $config->get_boolean( 'pgcache.cache.ssl' ) ) {
$rules .= " RewriteCond %{HTTPS} =on\n";
$rules .= " RewriteRule .* - [E=W3TC_SSL:_ssl]\n";
$rules .= " RewriteCond %{SERVER_PORT} =443\n";
$rules .= " RewriteRule .* - [E=W3TC_SSL:_ssl]\n";
$env_W3TC_SSL = '%{ENV:W3TC_SSL}';
}
$cache_path = str_replace( Util_Environment::document_root(), '', $cache_dir );
/**
* Set Accept-Encoding
*/
if ( $config->get_boolean( 'browsercache.enabled' ) && $config->get_boolean( 'browsercache.html.compression' ) ) {
$rules .= " RewriteCond %{HTTP:Accept-Encoding} gzip\n";
$rules .= " RewriteRule .* - [E=W3TC_ENC:_gzip]\n";
$env_W3TC_ENC = '%{ENV:W3TC_ENC}';
}
$rules .= " RewriteCond %{HTTP_COOKIE} w3tc_preview [NC]\n";
$rules .= " RewriteRule .* - [E=W3TC_PREVIEW:_preview]\n";
$env_W3TC_PREVIEW = '%{ENV:W3TC_PREVIEW}';
$use_cache_rules = '';
/**
* Don't accept POSTs
*/
$use_cache_rules .= " RewriteCond %{REQUEST_METHOD} !=POST\n";
/**
* Query string should be empty
*/
$use_cache_rules .= " RewriteCond %{QUERY_STRING} =\"\"\n";
/**
* Check permalink structure trailing slash
*/
if ( substr( $permalink_structure, -1 ) == '/' ) {
$use_cache_rules .= " RewriteCond %{REQUEST_URI} \\/$\n";
}
/**
* Check for rejected cookies
*/
$use_cache_rules .= " RewriteCond %{HTTP_COOKIE} !(" . implode( '|',
array_map( array( '\W3TC\Util_Environment', 'preg_quote' ), $reject_cookies ) ) . ") [NC]\n";
/**
* Check for rejected user agents
*/
if ( count( $reject_user_agents ) ) {
$use_cache_rules .= " RewriteCond %{HTTP_USER_AGENT} !(" .
implode( '|',
array_map( array( '\W3TC\Util_Environment', 'preg_quote' ), $reject_user_agents ) ) . ") [NC]\n";
}
/**
* Make final rewrites for specific files
*/
$uri_prefix = $cache_path . '/%{HTTP_HOST}/%{REQUEST_URI}/' .
'_index' . $env_W3TC_UA . $env_W3TC_REF . $env_W3TC_SSL . $env_W3TC_PREVIEW;
$switch = " -" . ( $config->get_boolean( 'pgcache.file.nfs' ) ? 'F' : 'f' );
$document_root = Util_Rule::apache_docroot_variable();
// write rule to rewrite to .html file
$ext = '.html';
$rules .= $use_cache_rules;
$rules .= " RewriteCond \"" . $document_root . $uri_prefix . $ext .
$env_W3TC_ENC . "\"" . $switch . "\n";
$rules .= " RewriteRule .* \"" . $uri_prefix . $ext .
$env_W3TC_ENC . "\" [L]\n";
$rules .= "</IfModule>\n";
$rules .= W3TC_MARKER_END_PGCACHE_CORE . "\n";
return $rules;
}
/**
* Generates rules for WP dir
*
* @param Config $config
* @return string
*/
private function rules_core_generate_nginx( $config ) {
$is_network = Util_Environment::is_wpmu();
$cache_dir = Util_Environment::normalize_path( W3TC_CACHE_PAGE_ENHANCED_DIR );
$permalink_structure = get_option( 'permalink_structure' );
/**
* Auto reject cookies
*/
$reject_cookies = array(
'comment_author',
'wp-postpass'
);
if ( $config->get_string( 'pgcache.engine' ) == 'file_generic' ) {
$reject_cookies[] = 'w3tc_logged_out';
}
/**
* Reject cache for logged in users
* OR
* Reject cache for roles if any
*/
if ( $config->get_boolean( 'pgcache.reject.logged' ) ) {
$reject_cookies = array_merge( $reject_cookies, array(
'wordpress_logged_in'
) );
} elseif ( $config->get_boolean( 'pgcache.reject.logged_roles' ) ) {
$new_cookies = array();
foreach ( $config->get_array( 'pgcache.reject.roles' ) as $role ) {
$new_cookies[] = 'w3tc_logged_' . md5( NONCE_KEY . $role );
}
$reject_cookies = array_merge( $reject_cookies, $new_cookies );
}
/**
* Custom config
*/
$reject_cookies = array_merge( $reject_cookies,
$config->get_array( 'pgcache.reject.cookie' ) );
Util_Rule::array_trim( $reject_cookies );
$reject_user_agents = $config->get_array( 'pgcache.reject.ua' );
if ( $config->get_boolean( 'pgcache.compatibility' ) ) {
$reject_user_agents = array_merge( array( W3TC_POWERED_BY ),
$reject_user_agents );
}
Util_Rule::array_trim( $reject_user_agents );
/**
* Generate rules
*/
$env_w3tc_ua = '';
$env_w3tc_ref = '';
$env_w3tc_ssl = '';
$env_w3tc_ext = '';
$env_w3tc_enc = '';
$rules = '';
$rules .= W3TC_MARKER_BEGIN_PGCACHE_CORE . "\n";
if ( $config->get_boolean( 'pgcache.debug' ) ) {
$rules .= "rewrite ^(.*\\/)?w3tc_rewrite_test([0-9]+)/?$ $1?w3tc_rewrite_test=1 last;\n";
}
/**
* Check for mobile redirect
*/
if ( $config->get_boolean( 'mobile.enabled' ) ) {
$mobile_groups = $config->get_array( 'mobile.rgroups' );
foreach ( $mobile_groups as $mobile_group => $mobile_config ) {
$mobile_enabled = ( isset( $mobile_config['enabled'] ) ?
(boolean) $mobile_config['enabled'] : false );
$mobile_agents = ( isset( $mobile_config['agents'] ) ?
(array) $mobile_config['agents'] : '' );
$mobile_redirect = ( isset( $mobile_config['redirect'] ) ?
$mobile_config['redirect'] : '' );
if ( $mobile_enabled && count( $mobile_agents ) && $mobile_redirect ) {
$rules .= "if (\$http_user_agent ~* \"(" . implode( '|',
$mobile_agents ) . ")\") {\n";
$rules .= " rewrite .* " . $mobile_redirect . " last;\n";
$rules .= "}\n";
}
}
}
/**
* Check for referrer redirect
*/
if ( $config->get_boolean( 'referrer.enabled' ) ) {
$referrer_groups = $config->get_array( 'referrer.rgroups' );
foreach ( $referrer_groups as $referrer_group => $referrer_config ) {
$referrer_enabled = ( isset( $referrer_config['enabled'] ) ?
(boolean) $referrer_config['enabled'] : false );
$referrer_referrers = ( isset( $referrer_config['referrers'] ) ?
(array) $referrer_config['referrers'] : '' );
$referrer_redirect = ( isset( $referrer_config['redirect'] ) ?
$referrer_config['redirect'] : '' );
if ( $referrer_enabled && count( $referrer_referrers ) &&
$referrer_redirect ) {
$rules .= "if (\$http_cookie ~* \"w3tc_referrer=.*(" .
implode( '|', $referrer_referrers ) . ")\") {\n";
$rules .= " rewrite .* " . $referrer_redirect . " last;\n";
$rules .= "}\n";
}
}
}
/**
* Don't accept POSTs
*/
$rules .= "set \$w3tc_rewrite 1;\n";
$rules .= "if (\$request_method = POST) {\n";
$rules .= " set \$w3tc_rewrite 0;\n";
$rules .= "}\n";
/**
* Query string should be empty
*/
$rules .= "if (\$query_string != \"\") {\n";
$rules .= " set \$w3tc_rewrite 0;\n";
$rules .= "}\n";
/**
* Check permalink structure trailing slash
*/
if ( substr( $permalink_structure, -1 ) == '/' ) {
$rules .= "if (\$request_uri !~ \\/$) {\n";
$rules .= " set \$w3tc_rewrite 0;\n";
$rules .= "}\n";
}
/**
* Check for rejected cookies
*/
$rules .= "if (\$http_cookie ~* \"(" . implode( '|',
array_map( array( '\W3TC\Util_Environment', 'preg_quote' ), $reject_cookies ) ) . ")\") {\n";
$rules .= " set \$w3tc_rewrite 0;\n";
$rules .= "}\n";
/**
* Check for rejected user agents
*/
if ( count( $reject_user_agents ) ) {
$rules .= "if (\$http_user_agent ~* \"(" . implode( '|',
array_map( array( '\W3TC\Util_Environment', 'preg_quote' ), $reject_user_agents ) ) . ")\") {\n";
$rules .= " set \$w3tc_rewrite 0;\n";
$rules .= "}\n";
}
/**
* Check mobile groups
*/
if ( $config->get_boolean( 'mobile.enabled' ) ) {
$mobile_groups = array_reverse( $config->get_array( 'mobile.rgroups' ) );
$set_ua_var = true;
foreach ( $mobile_groups as $mobile_group => $mobile_config ) {
$mobile_enabled = ( isset( $mobile_config['enabled'] ) ?
(boolean) $mobile_config['enabled'] : false );
$mobile_agents = ( isset( $mobile_config['agents'] ) ?
(array) $mobile_config['agents'] : '' );
$mobile_redirect = ( isset( $mobile_config['redirect'] ) ?
$mobile_config['redirect'] : '' );
if ( $mobile_enabled && count( $mobile_agents ) &&
!$mobile_redirect ) {
if ( $set_ua_var ) {
$rules .= "set \$w3tc_ua \"\";\n";
$set_ua_var = false;
}
$rules .= "if (\$http_user_agent ~* \"(" .
implode( '|', $mobile_agents ) . ")\") {\n";
$rules .= " set \$w3tc_ua _" . $mobile_group . ";\n";
$rules .= "}\n";
$env_w3tc_ua = "\$w3tc_ua";
}
}
}
/**
* Check for preview cookie
*/
$rules .= "set \$w3tc_preview \"\";\n";
$rules .= "if (\$http_cookie ~* \"(w3tc_preview)\") {\n";
$rules .= " set \$w3tc_preview _preview;\n";
$rules .= "}\n";
$env_w3tc_preview = "\$w3tc_preview";
/**
* Check referrer groups
*/
if ( $config->get_boolean( 'referrer.enabled' ) ) {
$referrer_groups = array_reverse( $config->get_array( 'referrer.rgroups' ) );
$set_ref_var = true;
foreach ( $referrer_groups as $referrer_group => $referrer_config ) {
$referrer_enabled = ( isset( $referrer_config['enabled'] ) ?
(boolean) $referrer_config['enabled'] : false );
$referrer_referrers = ( isset( $referrer_config['referrers'] ) ?
(array) $referrer_config['referrers'] : '' );
$referrer_redirect = ( isset( $referrer_config['redirect'] ) ?
$referrer_config['redirect'] : '' );
if ( $referrer_enabled && count( $referrer_referrers ) &&
!$referrer_redirect ) {
if ( $set_ref_var ) {
$rules .= "set \$w3tc_ref \"\";\n";
$set_ref_var = false;
}
$rules .= "if (\$http_cookie ~* \"w3tc_referrer=.*(" .
implode( '|', $referrer_referrers ) . ")\") {\n";
$rules .= " set \$w3tc_ref _" . $referrer_group . ";\n";
$rules .= "}\n";
$env_w3tc_ref = "\$w3tc_ref";
}
}
}
if ( $config->get_boolean( 'pgcache.cache.ssl' ) ) {
$rules .= "set \$w3tc_ssl \"\";\n";
$rules .= "if (\$scheme = https) {\n";
$rules .= " set \$w3tc_ssl _ssl;\n";
$rules .= "}\n";
$env_w3tc_ssl = "\$w3tc_ssl";
}
if ( $config->get_boolean( 'browsercache.enabled' ) &&
$config->get_boolean( 'browsercache.html.compression' ) ) {
$rules .= "set \$w3tc_enc \"\";\n";
$rules .= "if (\$http_accept_encoding ~ gzip) {\n";
$rules .= " set \$w3tc_enc _gzip;\n";
$rules .= "}\n";
$env_w3tc_enc = "\$w3tc_enc";
}
$cache_path = str_replace( Util_Environment::document_root(), '', $cache_dir );
$uri_prefix = $cache_path . "/\$http_host/" .
"\$request_uri/_index" . $env_w3tc_ua . $env_w3tc_ref .
$env_w3tc_ssl . $env_w3tc_preview;
if ( !$config->get_boolean( 'pgcache.cache.nginx_handle_xml' ) ) {
$env_w3tc_ext = '.html';
$rules .= "if (!-f \"\$document_root" . $uri_prefix . ".html" .
$env_w3tc_enc . "\") {\n";
$rules .= " set \$w3tc_rewrite 0;\n";
$rules .= "}\n";
} else {
$env_w3tc_ext = "\$w3tc_ext";
$rules .= "set \$w3tc_ext \"\";\n";
$rules .= "if (-f \"\$document_root" . $uri_prefix . ".html" .
$env_w3tc_enc . "\") {\n";
$rules .= " set \$w3tc_ext .html;\n";
$rules .= "}\n";
$rules .= "if (-f \"\$document_root" . $uri_prefix . ".xml" .
$env_w3tc_enc . "\") {\n";
$rules .= " set \$w3tc_ext .xml;\n";
$rules .= "}\n";
$rules .= "if (\$w3tc_ext = \"\") {\n";
$rules .= " set \$w3tc_rewrite 0;\n";
$rules .= "}\n";
}
$rules .= "if (\$w3tc_rewrite = 1) {\n";
$rules .= " rewrite .* \"" . $uri_prefix . $env_w3tc_ext . $env_w3tc_enc . "\" last;\n";
$rules .= "}\n";
$rules .= W3TC_MARKER_END_PGCACHE_CORE . "\n";
return $rules;
}
/*
* cache rules
*/
/**
* Writes directives to file cache .htaccess
* Throws exception on error
*
* @param Config $config
* @param Util_Environment_Exceptions $exs
*/
private function rules_cache_add( $config, $exs ) {
Util_Rule::add_rules( $exs,
Util_Rule::get_pgcache_rules_cache_path(),
$this->rules_cache_generate( $config ),
W3TC_MARKER_BEGIN_PGCACHE_CACHE,
W3TC_MARKER_END_PGCACHE_CACHE,
array(
W3TC_MARKER_BEGIN_BROWSERCACHE_CACHE => 0,
W3TC_MARKER_BEGIN_MINIFY_CORE => 0,
W3TC_MARKER_BEGIN_PGCACHE_CORE => 0,
W3TC_MARKER_BEGIN_BROWSERCACHE_NO404WP => 0,
W3TC_MARKER_BEGIN_WORDPRESS => 0,
W3TC_MARKER_END_MINIFY_CACHE => strlen( W3TC_MARKER_END_MINIFY_CACHE ) + 1
)
);
}
/**
* Removes Page Cache cache directives
*
* @param Util_Environment_Exceptions $exs
* @throws Util_WpFile_FilesystemOperationException with S/FTP form if it can't get the required filesystem credentials
*/
private function rules_cache_remove( $exs ) {
// apache's cache files are not used when core rules disabled
if ( !Util_Environment::is_nginx() )
return;
Util_Rule::remove_rules( $exs,
Util_Rule::get_pgcache_rules_cache_path(),
W3TC_MARKER_BEGIN_PGCACHE_CACHE,
W3TC_MARKER_END_PGCACHE_CACHE );
}
/**
* Generates directives for file cache dir
*
* @param Config $config
* @return string
*/
public function rules_cache_generate( $config ) {
switch ( true ) {
case Util_Environment::is_apache():
case Util_Environment::is_litespeed():
return $this->rules_cache_generate_apache( $config );
case Util_Environment::is_nginx():
return $this->rules_cache_generate_nginx( $config );
}
return '';
}
/**
* Generates directives for file cache dir
*
* @param Config $config
* @return string
*/
private function rules_cache_generate_apache( $config ) {
$charset = get_option( 'blog_charset' );
$pingback_url = get_bloginfo( 'pingback_url' );
$browsercache = $config->get_boolean( 'browsercache.enabled' );
$compression = ( $browsercache && $config->get_boolean( 'browsercache.html.compression' ) );
$expires = ( $browsercache && $config->get_boolean( 'browsercache.html.expires' ) );
$lifetime = ( $browsercache ? $config->get_integer( 'browsercache.html.lifetime' ) : 0 );
$cache_control = ( $browsercache && $config->get_boolean( 'browsercache.html.cache.control' ) );
$etag = ( $browsercache && $config->get_integer( 'browsercache.html.etag' ) );
$w3tc = ( $browsercache && $config->get_integer( 'browsercache.html.w3tc' ) );
$compatibility = $config->get_boolean( 'pgcache.compatibility' );
$rules = '';
$rules .= W3TC_MARKER_BEGIN_PGCACHE_CACHE . "\n";
if ( $compatibility ) {
$rules .= "Options -MultiViews\n";
// allow to read files by apache if they are blocked at some level above
$rules .= "<Files ~ \"\.(html|html_gzip|xml|xml_gzip)$\">\n";
$rules .= " Allow from all\n";
$rules .= "</Files>\n";
if ( !$etag ) {
$rules .= "FileETag None\n";
}
}
if ( $config->get_boolean( 'pgcache.file.nfs' ) ) {
$rules .= "EnableSendfile Off \n";
}
if ( !$config->get_boolean( 'pgcache.remove_charset' ) ) {
$rules .= "AddDefaultCharset " . ( $charset ? $charset : 'utf-8' ) . "\n";
}
if ( $etag ) {
$rules .= "FileETag MTime Size\n";
}
if ( $compression ) {
$rules .= "<IfModule mod_mime.c>\n";
$rules .= " AddType text/html .html_gzip\n";
$rules .= " AddEncoding gzip .html_gzip\n";
$rules .= " AddType text/xml .xml_gzip\n";
$rules .= " AddEncoding gzip .xml_gzip\n";
$rules .= "</IfModule>\n";
$rules .= "<IfModule mod_setenvif.c>\n";
$rules .= " SetEnvIfNoCase Request_URI \\.html_gzip$ no-gzip\n";
$rules .= " SetEnvIfNoCase Request_URI \\.xml_gzip$ no-gzip\n";
$rules .= "</IfModule>\n";
}
if ( $expires ) {
$rules .= "<IfModule mod_expires.c>\n";
$rules .= " ExpiresActive On\n";
$rules .= " ExpiresByType text/html M" . $lifetime . "\n";
$rules .= "</IfModule>\n";
}
$header_rules = '';
if ( $compatibility ) {
$header_rules .= " Header set X-Pingback \"" . $pingback_url . "\"\n";
}
if ( $w3tc ) {
$header_rules .= " Header set X-Powered-By \"" .
Util_Environment::w3tc_header() . "\"\n";
}
if ( $expires ) {
$header_rules .= " Header set Vary \"Accept-Encoding, Cookie\"\n";
}
$set_last_modified = $config->get_boolean( 'browsercache.html.last_modified' );
if ( !$set_last_modified && $config->get_boolean( 'browsercache.enabled' ) ) {
$header_rules .= " Header unset Last-Modified\n";
}
if ( $cache_control ) {
$cache_policy = $config->get_string( 'browsercache.html.cache.policy' );
switch ( $cache_policy ) {
case 'cache':
$header_rules .= " Header set Pragma \"public\"\n";
$header_rules .= " Header set Cache-Control \"public\"\n";
break;
case 'cache_public_maxage':
$header_rules .= " Header set Pragma \"public\"\n";
if ( $expires ) {
$header_rules .= " Header append Cache-Control \"public\"\n";
} else {
$header_rules .= " Header set Cache-Control \"max-age=" . $lifetime . ", public\"\n";
}
break;
case 'cache_validation':
$header_rules .= " Header set Pragma \"public\"\n";
$header_rules .= " Header set Cache-Control \"public, must-revalidate, proxy-revalidate\"\n";
break;
case 'cache_noproxy':
$header_rules .= " Header set Pragma \"public\"\n";
$header_rules .= " Header set Cache-Control \"private, must-revalidate\"\n";
break;
case 'cache_maxage':
$header_rules .= " Header set Pragma \"public\"\n";
if ( $expires ) {
$header_rules .= " Header append Cache-Control \"public, must-revalidate, proxy-revalidate\"\n";
} else {
$header_rules .= " Header set Cache-Control \"max-age=" . $lifetime . ", public, must-revalidate, proxy-revalidate\"\n";
}
break;
case 'no_cache':
$header_rules .= " Header set Pragma \"no-cache\"\n";
$header_rules .= " Header set Cache-Control \"max-age=0, private, no-store, no-cache, must-revalidate\"\n";
break;
}
}
if ( strlen( $header_rules ) > 0 ) {
$rules .= "<IfModule mod_headers.c>\n";
$rules .= $header_rules;
$rules .= "</IfModule>\n";
}
$rules .= W3TC_MARKER_END_PGCACHE_CACHE . "\n";
return $rules;
}
/**
* Generates directives for file cache dir
*
* @param Config $config
* @return string
*/
private function rules_cache_generate_nginx( $config ) {
$cache_root = Util_Environment::normalize_path( W3TC_CACHE_PAGE_ENHANCED_DIR );
$cache_dir = rtrim( str_replace( Util_Environment::document_root(), '', $cache_root ), '/' );
if ( Util_Environment::is_wpmu() ) {
$cache_dir = preg_replace( '~/w3tc.*?/~', '/w3tc.*?/', $cache_dir, 1 );
}
$browsercache = $config->get_boolean( 'browsercache.enabled' );
$compression = ( $browsercache && $config->get_boolean( 'browsercache.html.compression' ) );
$expires = ( $browsercache && $config->get_boolean( 'browsercache.html.expires' ) );
$lifetime = ( $browsercache ? $config->get_integer( 'browsercache.html.lifetime' ) : 0 );
$cache_control = ( $browsercache && $config->get_boolean( 'browsercache.html.cache.control' ) );
$w3tc = ( $browsercache && $config->get_integer( 'browsercache.html.w3tc' ) );
$common_rules = '';
if ( $expires ) {
$common_rules .= " expires modified " . $lifetime . "s;\n";
}
if ( $w3tc ) {
$common_rules .= " add_header X-Powered-By \"" .
Util_Environment::w3tc_header() . "\";\n";
}
if ( $expires ) {
$common_rules .= " add_header Vary \"Accept-Encoding, Cookie\";\n";
}
if ( $cache_control ) {
$cache_policy = $config->get_string( 'browsercache.html.cache.policy' );
switch ( $cache_policy ) {
case 'cache':
$common_rules .= " add_header Pragma \"public\";\n";
$common_rules .= " add_header Cache-Control \"public\";\n";
break;
case 'cache_public_maxage':
$common_rules .= " add_header Pragma \"public\";\n";
$common_rules .= " add_header Cache-Control \"max-age=" . $lifetime . ", public\";\n";
break;
case 'cache_validation':
$common_rules .= " add_header Pragma \"public\";\n";
$common_rules .= " add_header Cache-Control \"public, must-revalidate, proxy-revalidate\";\n";
break;
case 'cache_noproxy':
$common_rules .= " add_header Pragma \"public\";\n";
$common_rules .= " add_header Cache-Control \"private, must-revalidate\";\n";
break;
case 'cache_maxage':
$common_rules .= " add_header Pragma \"public\";\n";
$common_rules .= " add_header Cache-Control \"max-age=" . $lifetime . ", public, must-revalidate, proxy-revalidate\";\n";
break;
case 'no_cache':
$common_rules .= " add_header Pragma \"no-cache\";\n";
$common_rules .= " add_header Cache-Control \"max-age=0, private, no-store, no-cache, must-revalidate\";\n";
break;
}
}
$rules = '';
$rules .= W3TC_MARKER_BEGIN_PGCACHE_CACHE . "\n";
$rules .= "location ~ " . $cache_dir . ".*html$ {\n";
$rules .= $common_rules;
$rules .= "}\n";
if ( $compression ) {
$rules .= "location ~ " . $cache_dir . ".*gzip$ {\n";
$rules .= " gzip off;\n";
$rules .= " types {}\n";
$rules .= " default_type text/html;\n";
$rules .= $common_rules;
$rules .= " add_header Content-Encoding gzip;\n";
$rules .= "}\n";
}
$rules .= W3TC_MARKER_END_PGCACHE_CACHE . "\n";
return $rules;
}
}