forked from Automattic/batcache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
advanced-cache.php
554 lines (452 loc) · 19.7 KB
/
advanced-cache.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
<?php
if ( is_readable( dirname( __FILE__ ) . '/batcache-stats.php' ) )
require_once dirname( __FILE__ ) . '/batcache-stats.php';
if ( !function_exists( 'batcache_stats' ) ) {
function batcache_stats( $name, $value, $num = 1, $today = FALSE, $hour = FALSE ) { }
}
// nananananananananananananananana BATCACHE!!!
function batcache_cancel() {
global $batcache;
if ( is_object($batcache) )
$batcache->cancel = true;
}
// Variants can be set by functions which use early-set globals like $_SERVER to run simple tests.
// Functions defined in WordPress, plugins, and themes are not available and MUST NOT be used.
// Example: vary_cache_on_function('return preg_match("/feedburner/i", $_SERVER["HTTP_USER_AGENT"]);');
// This will cause batcache to cache a variant for requests from Feedburner.
// Tips for writing $function:
// X_X DO NOT use any functions from your theme or plugins. Those files have not been included. Fatal error.
// X_X DO NOT use any WordPress functions except is_admin() and is_multisite(). Fatal error.
// X_X DO NOT include or require files from anywhere without consulting expensive professionals first. Fatal error.
// X_X DO NOT use $wpdb, $blog_id, $current_user, etc. These have not been initialized.
// ^_^ DO understand how create_function works. This is how your code is used: create_function('', $function);
// ^_^ DO remember to return something. The return value determines the cache variant.
function vary_cache_on_function($function) {
global $batcache;
if ( preg_match('/include|require|echo|(?<!s)print|dump|export|open|sock|unlink|`|eval/i', $function) )
die('Illegal word in variant determiner.');
if ( !preg_match('/\$_/', $function) )
die('Variant determiner should refer to at least one $_ variable.');
$batcache->add_variant($function);
}
class batcache {
// This is the base configuration. You can edit these variables or move them into your wp-config.php file.
var $max_age = 300; // Expire batcache items aged this many seconds (zero to disable batcache)
var $remote = 0; // Zero disables sending buffers to remote datacenters (req/sec is never sent)
var $times = 2; // Only batcache a page after it is accessed this many times... (two or more)
var $seconds = 120; // ...in this many seconds (zero to ignore this and use batcache immediately)
var $group = 'batcache'; // Name of memcached group. You can simulate a cache flush by changing this.
var $unique = array(); // If you conditionally serve different content, put the variable values here.
var $vary = array(); // Array of functions for create_function. The return value is added to $unique above.
var $headers = array(); // Add headers here as name=>value or name=>array(values). These will be sent with every response from the cache.
var $cache_redirects = false; // Set true to enable redirect caching.
var $redirect_status = false; // This is set to the response code during a redirect.
var $redirect_location = false; // This is set to the redirect location.
var $use_stale = true; // Is it ok to return stale cached response when updating the cache?
var $uncached_headers = array('transfer-encoding'); // These headers will never be cached. Apply strtolower.
var $debug = true; // Set false to hide the batcache info <!-- comment -->
var $cache_control = true; // Set false to disable Last-Modified and Cache-Control headers
var $cancel = false; // Change this to cancel the output buffer. Use batcache_cancel();
var $noskip_cookies = array( 'wordpress_test_cookie' ); // Names of cookies - if they exist and the cache would normally be bypassed, don't bypass it
var $query = '';
var $genlock = false;
var $do = false;
function __construct( $settings ) {
if ( is_array( $settings ) ) foreach ( $settings as $k => $v )
$this->$k = $v;
}
function is_ssl() {
if ( isset($_SERVER['HTTPS']) ) {
if ( 'on' == strtolower($_SERVER['HTTPS']) )
return true;
if ( '1' == $_SERVER['HTTPS'] )
return true;
} elseif ( isset($_SERVER['SERVER_PORT']) && ( '443' == $_SERVER['SERVER_PORT'] ) ) {
return true;
}
return false;
}
function status_header( $status_header, $status_code ) {
$this->status_header = $status_header;
$this->status_code = $status_code;
return $status_header;
}
function redirect_status( $status, $location ) {
if ( $this->cache_redirects ) {
$this->redirect_status = $status;
$this->redirect_location = $location;
}
return $status;
}
function do_headers( $headers1, $headers2 = array() ) {
// Merge the arrays of headers into one
$headers = array();
$keys = array_unique( array_merge( array_keys( $headers1 ), array_keys( $headers2 ) ) );
foreach ( $keys as $k ) {
$headers[$k] = array();
if ( isset( $headers1[$k] ) && isset( $headers2[$k] ) )
$headers[$k] = array_merge( (array) $headers2[$k], (array) $headers1[$k] );
elseif ( isset( $headers2[$k] ) )
$headers[$k] = (array) $headers2[$k];
else
$headers[$k] = (array) $headers1[$k];
$headers[$k] = array_unique( $headers[$k] );
}
// These headers take precedence over any previously sent with the same names
foreach ( $headers as $k => $values ) {
$clobber = true;
foreach ( $values as $v ) {
header( "$k: $v", $clobber );
$clobber = false;
}
}
}
function configure_groups() {
// Configure the memcached client
if ( ! $this->remote )
if ( function_exists('wp_cache_add_no_remote_groups') )
wp_cache_add_no_remote_groups(array($this->group));
if ( function_exists('wp_cache_add_global_groups') )
wp_cache_add_global_groups(array($this->group));
}
// Defined here because timer_stop() calls number_format_i18n()
function timer_stop($display = 0, $precision = 3) {
global $timestart, $timeend;
$mtime = microtime();
$mtime = explode(' ',$mtime);
$mtime = $mtime[1] + $mtime[0];
$timeend = $mtime;
$timetotal = $timeend-$timestart;
$r = number_format($timetotal, $precision);
if ( $display )
echo $r;
return $r;
}
function ob($output) {
// PHP5 and objects disappearing before output buffers?
wp_cache_init();
// Remember, $wp_object_cache was clobbered in wp-settings.php so we have to repeat this.
$this->configure_groups();
if ( $this->cancel !== false ) {
wp_cache_delete( "{$this->url_key}_genlock", $this->group );
return $output;
}
// Do not batcache blank pages unless they are HTTP redirects
$output = trim($output);
if ( $output === '' && (!$this->redirect_status || !$this->redirect_location) ) {
wp_cache_delete( "{$this->url_key}_genlock", $this->group );
return;
}
// Do not cache 5xx responses
if ( isset( $this->status_code ) && intval($this->status_code / 100) == 5 ) {
wp_cache_delete( "{$this->url_key}_genlock", $this->group );
return $output;
}
$this->do_variants($this->vary);
$this->generate_keys();
// Construct and save the batcache
$this->cache = array(
'output' => $output,
'time' => isset( $_SERVER['REQUEST_TIME'] ) ? $_SERVER['REQUEST_TIME'] : time(),
'timer' => $this->timer_stop(false, 3),
'headers' => array(),
'status_header' => $this->status_header,
'redirect_status' => $this->redirect_status,
'redirect_location' => $this->redirect_location,
'version' => $this->url_version
);
foreach ( headers_list() as $header ) {
list($k, $v) = array_map('trim', explode(':', $header, 2));
$this->cache['headers'][$k][] = $v;
}
if ( !empty( $this->cache['headers'] ) && !empty( $this->uncached_headers ) ) {
foreach ( $this->uncached_headers as $header )
unset( $this->cache['headers'][$header] );
}
foreach ( $this->cache['headers'] as $header => $values ) {
// Do not cache if cookies were set
if ( strtolower( $header ) === 'set-cookie' ) {
wp_cache_delete( "{$this->url_key}_genlock", $this->group );
return $output;
}
foreach ( (array) $values as $value )
if ( preg_match('/^Cache-Control:.*max-?age=(\d+)/i', "$header: $value", $matches) )
$this->max_age = intval($matches[1]);
}
$this->cache['max_age'] = $this->max_age;
wp_cache_set($this->key, $this->cache, $this->group, $this->max_age + $this->seconds + 30);
// Unlock regeneration
wp_cache_delete("{$this->url_key}_genlock", $this->group);
if ( $this->cache_control ) {
// Don't clobber Last-Modified header if already set, e.g. by WP::send_headers()
if ( !isset($this->cache['headers']['Last-Modified']) )
header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s', $this->cache['time'] ) . ' GMT', true );
if ( !isset($this->cache['headers']['Cache-Control']) )
header("Cache-Control: max-age=$this->max_age, must-revalidate", false);
}
$this->do_headers( $this->headers );
// Add some debug info just before <head
if ( $this->debug ) {
$this->add_debug_just_cached();
}
// Pass output to next ob handler
batcache_stats( 'batcache', 'total_page_views' );
return $this->cache['output'];
}
function add_variant($function) {
$key = md5($function);
$this->vary[$key] = $function;
}
function do_variants($dimensions = false) {
// This function is called without arguments early in the page load, then with arguments during the OB handler.
if ( $dimensions === false )
$dimensions = wp_cache_get("{$this->url_key}_vary", $this->group);
else
wp_cache_set("{$this->url_key}_vary", $dimensions, $this->group, $this->max_age + 10);
if ( is_array($dimensions) ) {
ksort($dimensions);
foreach ( $dimensions as $key => $function ) {
$fun = create_function('', $function);
$value = $fun();
$this->keys[$key] = $value;
}
}
}
function generate_keys() {
// ksort($this->keys); // uncomment this when traffic is slow
$this->key = md5(serialize($this->keys));
$this->req_key = $this->key . '_reqs';
}
function add_debug_just_cached() {
$generation = $this->cache['timer'];
$bytes = strlen( serialize( $this->cache ) );
$html = <<<HTML
<!--
generated in $generation seconds
$bytes bytes batcached for {$this->max_age} seconds
-->
HTML;
$this->add_debug_html_to_output( $html );
}
function add_debug_from_cache() {
$seconds_ago = time() - $this->cache['time'];
$generation = $this->cache['timer'];
$serving = $this->timer_stop( false, 3 );
$expires = $this->cache['max_age'] - time() + $this->cache['time'];
$html = <<<HTML
<!--
generated $seconds_ago seconds ago
generated in $generation seconds
served from batcache in $serving seconds
expires in $expires seconds
-->
HTML;
$this->add_debug_html_to_output( $html );
}
function add_debug_html_to_output( $debug_html ) {
// Casing on the Content-Type header is inconsistent
foreach ( array( 'Content-Type', 'Content-type' ) as $key ) {
if ( isset( $this->cache['headers'][ $key ][0] ) && 0 !== strpos( $this->cache['headers'][ $key ][0], 'text/html' ) )
return;
}
$head_position = strpos( $this->cache['output'], '<head' );
if ( false === $head_position ) {
return;
}
$this->cache['output'] .= "\n$debug_html";
}
}
global $batcache;
// Pass in the global variable which may be an array of settings to override defaults.
$batcache = new batcache($batcache);
if ( ! defined( 'WP_CONTENT_DIR' ) )
return;
// Never batcache interactive scripts or API endpoints.
if ( in_array(
basename( $_SERVER['SCRIPT_FILENAME'] ),
array(
'wp-app.php',
'xmlrpc.php',
'wp-cron.php',
) ) )
return;
// Never batcache WP javascript generators
if ( strstr( $_SERVER['SCRIPT_FILENAME'], 'wp-includes/js' ) )
return;
// Only cache HEAD and GET requests.
if ((isset($_SERVER['REQUEST_METHOD']) && !in_array($_SERVER['REQUEST_METHOD'], array('GET', 'HEAD')))) {
return;
}
// Never batcache when cookies indicate a cache-exempt visitor.
if ( is_array( $_COOKIE) && ! empty( $_COOKIE ) ) {
foreach ( array_keys( $_COOKIE ) as $batcache->cookie ) {
if ( ! in_array( $batcache->cookie, $batcache->noskip_cookies ) && ( substr( $batcache->cookie, 0, 2 ) == 'wp' || substr( $batcache->cookie, 0, 9 ) == 'wordpress' || substr( $batcache->cookie, 0, 14 ) == 'comment_author' ) ) {
batcache_stats( 'batcache', 'cookie_skip' );
return;
}
}
}
if ( ! include_once( WP_CONTENT_DIR . '/object-cache.php' ) )
return;
wp_cache_init(); // Note: wp-settings.php calls wp_cache_init() which clobbers the object made here.
if ( ! is_object( $wp_object_cache ) )
return;
// Now that the defaults are set, you might want to use different settings under certain conditions.
/* Example: if your documents have a mobile variant (a different document served by the same URL) you must tell batcache about the variance. Otherwise you might accidentally cache the mobile version and serve it to desktop users, or vice versa.
$batcache->unique['mobile'] = is_mobile_user_agent();
*/
/* Example: never batcache for this host
if ( $_SERVER['HTTP_HOST'] == 'do-not-batcache-me.com' )
return;
*/
/* Example: batcache everything on this host regardless of traffic level
if ( $_SERVER['HTTP_HOST'] == 'always-batcache-me.com' )
return;
*/
/* Example: If you sometimes serve variants dynamically (e.g. referrer search term highlighting) you probably don't want to batcache those variants. Remember this code is run very early in wp-settings.php so plugins are not yet loaded. You will get a fatal error if you try to call an undefined function. Either include your plugin now or define a test function in this file.
if ( include_once( 'plugins/searchterm-highlighter.php') && referrer_has_search_terms() )
return;
*/
// Disabled
if ( $batcache->max_age < 1 )
return;
// Make sure we can increment. If not, turn off the traffic sensor.
if ( ! method_exists( $GLOBALS['wp_object_cache'], 'incr' ) )
$batcache->times = 0;
// Necessary to prevent clients using cached version after login cookies set. If this is a problem, comment it out and remove all Last-Modified headers.
header('Vary: Cookie', false);
// Things that define a unique page.
if ( isset( $_SERVER['QUERY_STRING'] ) ) {
parse_str($_SERVER['QUERY_STRING'], $batcache->query);
// Normalize query paramaters for better cache hits.
ksort( $batcache->query );
}
$batcache->keys = array(
'host' => $_SERVER['HTTP_HOST'],
'method' => $_SERVER['REQUEST_METHOD'],
'path' => ( $batcache->pos = strpos($_SERVER['REQUEST_URI'], '?') ) ? substr($_SERVER['REQUEST_URI'], 0, $batcache->pos) : $_SERVER['REQUEST_URI'],
'query' => $batcache->query,
'extra' => $batcache->unique
);
if ( $batcache->is_ssl() )
$batcache->keys['ssl'] = true;
// Recreate the permalink from the URL
$batcache->permalink = 'http://' . $batcache->keys['host'] . $batcache->keys['path'] . ( isset($batcache->keys['query']['p']) ? "?p=" . $batcache->keys['query']['p'] : '' );
$batcache->url_key = md5($batcache->permalink);
$batcache->configure_groups();
$batcache->url_version = (int) wp_cache_get("{$batcache->url_key}_version", $batcache->group);
$batcache->do_variants();
$batcache->generate_keys();
// Get the batcache
$batcache->cache = wp_cache_get($batcache->key, $batcache->group);
if ( isset( $batcache->cache['version'] ) && $batcache->cache['version'] != $batcache->url_version ) {
// Always refresh the cache if a newer version is available.
$batcache->do = true;
} else if ( $batcache->seconds < 1 || $batcache->times < 2 ) {
// Are we only caching frequently-requested pages?
$batcache->do = true;
} else {
// No batcache item found, or ready to sample traffic again at the end of the batcache life?
if ( !is_array($batcache->cache) || time() >= $batcache->cache['time'] + $batcache->max_age - $batcache->seconds ) {
wp_cache_add($batcache->req_key, 0, $batcache->group);
$batcache->requests = wp_cache_incr($batcache->req_key, 1, $batcache->group);
if ( $batcache->requests >= $batcache->times &&
time() >= $batcache->cache['time'] + $batcache->cache['max_age']
) {
wp_cache_delete( $batcache->req_key, $batcache->group );
$batcache->do = true;
} else {
$batcache->do = false;
}
}
}
// Obtain cache generation lock
if ( $batcache->do )
$batcache->genlock = wp_cache_add("{$batcache->url_key}_genlock", 1, $batcache->group, 10);
if ( isset( $batcache->cache['time'] ) && // We have cache
! $batcache->genlock && // We have not obtained cache regeneration lock
(
time() < $batcache->cache['time'] + $batcache->cache['max_age'] || // Batcached page that hasn't expired ||
( $batcache->do && $batcache->use_stale ) // Regenerating it in another request and can use stale cache
)
) {
// Issue redirect if cached and enabled
if ( $batcache->cache['redirect_status'] && $batcache->cache['redirect_location'] && $batcache->cache_redirects ) {
$status = $batcache->cache['redirect_status'];
$location = $batcache->cache['redirect_location'];
// From vars.php
$is_IIS = (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false || strpos($_SERVER['SERVER_SOFTWARE'], 'ExpressionDevServer') !== false);
$batcache->do_headers( $batcache->headers );
if ( $is_IIS ) {
header("Refresh: 0;url=$location");
} else {
if ( php_sapi_name() != 'cgi-fcgi' ) {
$texts = array(
300 => 'Multiple Choices',
301 => 'Moved Permanently',
302 => 'Found',
303 => 'See Other',
304 => 'Not Modified',
305 => 'Use Proxy',
306 => 'Reserved',
307 => 'Temporary Redirect',
);
$protocol = $_SERVER["SERVER_PROTOCOL"];
if ( 'HTTP/1.1' != $protocol && 'HTTP/1.0' != $protocol )
$protocol = 'HTTP/1.0';
if ( isset($texts[$status]) )
header("$protocol $status " . $texts[$status]);
else
header("$protocol 302 Found");
}
header("Location: $location");
}
exit;
}
// Respect ETags served with feeds.
$three04 = false;
if ( isset( $SERVER['HTTP_IF_NONE_MATCH'] ) && isset( $batcache->cache['headers']['ETag'][0] ) && $_SERVER['HTTP_IF_NONE_MATCH'] == $batcache->cache['headers']['ETag'][0] )
$three04 = true;
// Respect If-Modified-Since.
elseif ( $batcache->cache_control && isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) ) {
$client_time = strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']);
if ( isset($batcache->cache['headers']['Last-Modified'][0]) )
$cache_time = strtotime($batcache->cache['headers']['Last-Modified'][0]);
else
$cache_time = $batcache->cache['time'];
if ( $client_time >= $cache_time )
$three04 = true;
}
// Use the batcache save time for Last-Modified so we can issue "304 Not Modified" but don't clobber a cached Last-Modified header.
if ( $batcache->cache_control && !isset($batcache->cache['headers']['Last-Modified'][0]) ) {
header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s', $batcache->cache['time'] ) . ' GMT', true );
header('Cache-Control: max-age=' . ($batcache->cache['max_age'] - time() + $batcache->cache['time']) . ', must-revalidate', true);
}
// Add some debug info just before </head>
if ( $batcache->debug ) {
$batcache->add_debug_from_cache();
}
$batcache->do_headers( $batcache->headers, $batcache->cache['headers'] );
if ( $three04 ) {
header("HTTP/1.1 304 Not Modified", true, 304);
die;
}
if ( !empty($batcache->cache['status_header']) )
header($batcache->cache['status_header'], true);
batcache_stats( 'batcache', 'total_cached_views' );
// Have you ever heard a death rattle before?
die($batcache->cache['output']);
}
// Didn't meet the minimum condition?
if ( ! $batcache->do || ! $batcache->genlock )
return;
//WordPress 4.7 changes how filters are hooked. Since WordPress 4.6 add_filter can be used in advanced-cache.php. Previous behaviour is kept for backwards compatability with WP < 4.6
if ( function_exists( 'add_filter' ) ) {
add_filter( 'status_header', array( &$batcache, 'status_header' ), 10, 2 );
add_filter( 'wp_redirect_status', array( &$batcache, 'redirect_status' ), 10, 2 );
} else {
$wp_filter['status_header'][10]['batcache'] = array( 'function' => array(&$batcache, 'status_header'), 'accepted_args' => 2 );
$wp_filter['wp_redirect_status'][10]['batcache'] = array( 'function' => array(&$batcache, 'redirect_status'), 'accepted_args' => 2 );
}
ob_start(array(&$batcache, 'ob'));
// It is safer to omit the final PHP closing tag.