forked from BoldGrid/w3-total-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExtension_FragmentCache_Plugin.php
226 lines (169 loc) · 5.22 KB
/
Extension_FragmentCache_Plugin.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
<?php
namespace W3TC;
/**
* W3 FragmentCache plugin
*/
class Extension_FragmentCache_Plugin {
private $_config = null;
function __construct() {
$this->_config = Dispatcher::config();
$this->_core = Dispatcher::component( 'Extension_FragmentCache_Core' );
}
/**
* Runs plugin
*/
function run() {
add_filter( 'w3tc_config_default_values', array(
$this, 'w3tc_config_default_values' ) );
$config = Dispatcher::config();
// remainder only when extension is frontend-active
if ( !$config->is_extension_active_frontend( 'fragmentcache' ) )
return;
add_action( 'init', array( $this, 'on_init' ), 9999999 );
add_filter( 'cron_schedules', array(
$this,
'cron_schedules'
) );
add_filter( 'w3tc_footer_comment', array(
$this,
'w3tc_footer_comment'
) );
if ( $this->_config->get_string( array( 'fragmentcache', 'engine' ) ) == 'file' ) {
add_action( 'w3_fragmentcache_cleanup', array(
$this,
'cleanup'
) );
}
add_action( 'switch_blog', array(
$this,
'switch_blog'
), 0, 2 );
$groups = $this->_config->get_array( array( 'fragmentcache', 'groups' ) );
foreach ( $groups as $group ) {
$split = explode( ',', $group );
$group = array_shift( $split );
$actions = $split;
$this->_core->register_group( $group, $actions,
$this->_config->get_integer( array( 'fragmentcache', 'lifetime' ) ) );
}
// handle transients by own cache
if ( Util_Environment::is_w3tc_pro( $this->_config ) ) {
$wp_cache = Dispatcher::component( 'ObjectCache_WpObjectCache' );
$fc_cache = Dispatcher::component( 'Extension_FragmentCache_WpObjectCache' );
$wp_cache->register_cache( $fc_cache, array(
'transient', 'site-transient' ) );
}
// flush operations
add_action( 'w3tc_flush_all',
array( $this, 'w3tc_flush_all' ),
300 );
add_action( 'w3tc_flush_fragmentcache', array(
$this, 'w3tc_flush_fragmentcache' ) );
add_action( 'w3tc_flush_fragmentcache_group', array(
$this, 'w3tc_flush_fragmentcache_group' ), 10, 2 );
// usage statistics handling
add_action( 'w3tc_usage_statistics_of_request', array(
$this, 'w3tc_usage_statistics_of_request' ), 10, 1 );
add_filter( 'w3tc_usage_statistics_metrics', array(
$this, 'w3tc_usage_statistics_metrics' ) );
}
public function w3tc_config_default_values( $default_values ) {
$default_values['fragmentcache'] = array(
'file.gc' => 3600,
'memcached.servers' => array( '127.0.0.1:11211' ),
'memcached.persistent' => true,
'redis.persistent' => true,
'redis.servers' => array( '127.0.0.1:6379' ),
'redis.verify_tls_certificates' => true,
'lifetime' => 180
);
return $default_values;
}
function w3tc_flush_all() {
$cache = Dispatcher::component( 'Extension_FragmentCache_WpObjectCache' );
$cache->flush();
}
function w3tc_flush_fragmentcache() {
$cache = Dispatcher::component( 'Extension_FragmentCache_WpObjectCache' );
$cache->flush();
}
/**
* Cleans fragment cache
*/
function w3tc_flush_fragmentcache_group( $group, $global = false ) {
$cache = Dispatcher::component( 'Extension_FragmentCache_WpObjectCache' );
$cache->flush_group( $group, $global );
}
/**
* Does disk cache cleanup
*
* @return void
*/
function cleanup() {
$this->_core->cleanup();
}
/**
* Cron schedules filter
*
* @param array $schedules
* @return array
*/
function cron_schedules( $schedules ) {
$gc_interval = $this->_config->get_integer( array( 'fragmentcache', 'file.gc' ) );
return array_merge( $schedules, array(
'w3_fragmentcache_cleanup' => array(
'interval' => $gc_interval,
'display' => sprintf( '[W3TC] Fragment Cache file GC (every %d seconds)', $gc_interval )
),
) );
}
/**
* Register actions on init
*/
function on_init() {
do_action( 'w3tc_register_fragment_groups' );
$actions = $this->_core->get_registered_actions();
foreach ( $actions as $action => $groups ) {
add_action( $action, array( $this, 'on_action' ), 0, 0 );
}
}
/**
* Flush action
*/
function on_action() {
$w3_fragmentcache = Dispatcher::component( 'Extension_FragmentCache_WpObjectCache' );
$actions = $this->_core->get_registered_actions();
$action = current_filter();
$groups = $actions[$action];
foreach ( $groups as $group ) {
$w3_fragmentcache->flush_group( $group );
}
}
/**
* Switch blog action
*/
function switch_blog( $blog_id, $previous_blog_id ) {
$o = Dispatcher::component( 'Extension_FragmentCache_WpObjectCache' );
$o->switch_blog( $blog_id );
}
public function w3tc_footer_comment( $strings ) {
$o = Dispatcher::component( 'Extension_FragmentCache_WpObjectCache' );
$strings = $o->w3tc_footer_comment( $strings );
return $strings;
}
public function w3tc_usage_statistics_of_request( $storage ) {
$o = Dispatcher::component( 'Extension_FragmentCache_WpObjectCache' );
$o->w3tc_usage_statistics_of_request( $storage );
}
public function w3tc_usage_statistics_metrics( $metrics ) {
return array_merge( $metrics, array(
'fragmentcache_calls_total', 'fragmentcache_calls_hits' ) );
}
}
$p = new Extension_FragmentCache_Plugin();
$p->run();
if ( is_admin() ) {
$p = new Extension_FragmentCache_Plugin_Admin();
$p->run();
}
include W3TC_DIR . '/Extension_FragmentCache_Api.php';